Typo3 Installation
Aus Vosp.info
Inhaltsverzeichnis
typo3 Version 6
conditions
apt-get install graphicsmagick
installation
- download neuste Version
- es gibt verschiedene Pakete ... wir nehmen hier mal Government Package, da gibts dann schon schön viele Beispiele
auf dem Server
Code Installation
cd /var/www/
wget http://switch.dl.sourceforge.net/project/typo3/TYPO3%20Source%20and%20Dummy
/TYPO3%206.1.1/introductionpackage-6.1.1.zip
unzip introductionpackage-6.1.1.zip
mv introductionpackage-6.1.1 t3V6
chown -R www-data:www-data t3V6/
chmod ugo-w t3V6/t3lib -R
chmod ugo-w t3V6/typo3 -R
cd t3V6
echo '' > typo3conf/ENABLE_INSTALL_TOOL
Apache Konfiguration
echo "
<VirtualHost *:80>
ServerName t3v6.domain.tld
ServerAlias www.t3v6.domain.tld
ServerAdmin kontakt@t3v6.domain.tld
RewriteEngine on
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^(.*)$ https://t3v6.domain.tld/$1 [R=301,L]
</VirtualHost>
<VirtualHost *:443>
ServerAdmin kontakt@t3v6.domain.tld
DocumentRoot /var/www/t3V6
ServerName t3v6.domain.tld
ServerAlias www.t3v6.domain.tld
RewriteEngine on
<Directory /var/www/t3V6 >
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
</Directory>
SSLEngine On
SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP
SSLCertificateFile /etc/apache2/ssl/multidomain.crt
SSLCertificateKeyFile /etc/apache2/ssl/multidomain-private.key
</VirtualHost>
" > /etc/apache2/sites-available/t3v6.domain.tld
a2ensite t3v6.domain.tld
/etc/init.d/apache2 reload
```t3v6.domain.tld aufrufen``` (sollte automatisch auf https://t3v6.domain.tld umgeleitet werden) und die 1-2-3-4 Schritte durchgehen
Probleme
admin Passwort vergessen
UPDATE be_users SET password=md5('your_new_password') WHERE username = 'admin';