Typo3 Installation
Aus Vosp.info
Version vom 11. Dezember 2019, 06:45 Uhr von F (Diskussion | Beiträge)
Inhaltsverzeichnis
conditions
#apt-get install graphicsmagick
apt-get install imagemagick
siehe auch ImageMagick
typo3 Version 9
mit composer
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';