Typo3 Installation

Aus Vosp.info
Wechseln zu:Navigation, Suche

typo3

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 ../t3demo_netz_coop/
chmod  -R  ug+rw  ../t3demo_netz_coop/

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';