Форум больше не используется. Присоединяйтесь к каналу #community-ru в Slack for TYPO3 community |
03.03.2016, 12:50 | #1 |
Senior Member
Регистрация: 17.09.2012
Сообщений: 675
|
INSTALL.md
INSTALL.md
========== ### If SSH and symlinks are possible If you have SSH access to your webserver and are able to create symlinks, this is the recommended way of setting up TYPO3 so that it can easily be upgraded later through the Install Tool: * Uncompress the `typo3_src-7.6.x.tar.gz` file one level above the Document Root of your Web server: ``` /var/www/site/htdocs/ $ cd .. /var/www/site/ $ tar xzf typo3_src-7.6.x.tar.gz ``` * Important: If you use GIT to fetch the sources, don't forget to run the following commands, otherwise your installation won't work! ``` cd typo3_src composer install --no-dev cd .. ``` * Create the symlinks in your Document Root: ``` cd htdocs ln -s ../typo3_src-7.6.x typo3_src ln -s typo3_src/index.php ln -s typo3_src/typo3 ``` * In case you use Apache, copy the .htaccess to your Document Root: ``` cp typo3_src/_.htaccess .htaccess ``` You end up with the follow structure of files: ``` typo3_src-7.6.x/ htdocs/typo3_src -> ../typo3_src-7.6.x/ htdocs/typo3 -> typo3_src/typo3/ htdocs/index.php -> typo3_src/index.php htdocs/.htaccess ``` This allows you to upgrade TYPO3 later by simply replacing the symlink with a newer version, or by using the integrated "Core Updater" which can be found in the Install Tool. ======= "Это позволяет обновить TYPO3 позже, просто заменив символическую ссылку с более новой версией, либо с помощью встроенного "Core Updater", который можно найти в Install Tool" Теперь "Core" обновляют "с помощью встроенного "Core Updater" Вопрос: есть ли смысл оставлять название typo3_src-7.6.x? Или удобней сразу переименовать пакет в typo3_src? http://forum.typo3.biz/showthread.php?t=11723 |