Typo3 Installation: Unterschied zwischen den Versionen
Aus Vosp.info
F (Diskussion | Beiträge) (→Apache Konfiguration) |
F (Diskussion | Beiträge) (→typo3 Version 6) |
||
Zeile 18: | Zeile 18: | ||
ln -s typo3_src/typo3 | ln -s typo3_src/typo3 | ||
touch FIRST_INSTALL | touch FIRST_INSTALL | ||
− | chown -R www-data:www-data | + | chown -R www-data:www-data ./ |
− | chmod -R ug+rw .. | + | chmod -R ug+rw ./ |
+ | chmod 2775 ./ | ||
</source> | </source> | ||
− | * | + | * im Browser die Url aufrufen und die installationsschritte durch laufen |
+ | * nach erfolgreicher Installation einloggen | ||
+ | ** SYSTEM > Install > Folder structure | ||
+ | ** [[Typo3_LTS_Upgrade#Dateirechte_setzen]] | ||
= Probleme = | = Probleme = |
Version vom 13. Oktober 2015, 18:27 Uhr
Inhaltsverzeichnis
typo3 Version 6
conditions
apt-get install graphicsmagick
installation
git clone https://git.typo3.org/Packages/TYPO3.CMS.git
cd TYPO3.CMS
# git checkout --track origin/****
git checkout --track origin/TYPO3_6-2
cd ..
ln -s TYPO3.CMS typo3_src
ln -s typo3_src/index.php
ln -s typo3_src/typo3
touch FIRST_INSTALL
chown -R www-data:www-data ./
chmod -R ug+rw ./
chmod 2775 ./
- im Browser die Url aufrufen und die installationsschritte durch laufen
- nach erfolgreicher Installation einloggen
- SYSTEM > Install > Folder structure
- Typo3_LTS_Upgrade#Dateirechte_setzen
Probleme
admin Passwort vergessen
UPDATE be_users SET password=md5('your_new_password') WHERE username = 'admin';