Typo3 Installation: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
F (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
F (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
[[typo3]] | [[typo3]] | ||
= conditions = | |||
<source lang=bash> | <source lang=bash> | ||
#apt-get install graphicsmagick | #apt-get install graphicsmagick | ||
| Zeile 11: | Zeile 11: | ||
siehe auch [[ImageMagick]] | siehe auch [[ImageMagick]] | ||
= typo3 Version 9 = | |||
<source lang=bash> | |||
composer create-project typo3/cms-base-distribution my-new-project ^9.5 | |||
cd my-new-project | |||
php vendor/bin/typo3cms install:setup | |||
</source> | |||
= typo3 Version 6 = | |||
== installation == | == installation == | ||
Version vom 10. Dezember 2019, 20:54 Uhr
conditions
#apt-get install graphicsmagick
apt-get install imagemagick
siehe auch ImageMagick
typo3 Version 9
composer create-project typo3/cms-base-distribution my-new-project ^9.5
cd my-new-project
php vendor/bin/typo3cms install:setup
typo3 Version 6
installation
Konsolenteil
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 ./
Browserteil
- im Browser die Url aufrufen und die installationsschritte durch laufen
- nach erfolgreicher Installation einloggen
- SYSTEM > Install > Configuration Presets
- SYSTEM > Install > Folder structure
- SYSTEM > Install > Test setup
Probleme
admin Passwort vergessen
UPDATE be_users SET password=md5('your_new_password') WHERE username = 'admin';