Typo3 Installation: Unterschied zwischen den Versionen

Aus Vosp.info
Wechseln zu:Navigation, Suche
(installation)
(Code Installation)
Zeile 19: Zeile 19:
 
chown  -R  www-data:www-data ../t3demo_netz_coop/
 
chown  -R  www-data:www-data ../t3demo_netz_coop/
 
chmod  -R  ug+rw  ../t3demo_netz_coop/
 
chmod  -R  ug+rw  ../t3demo_netz_coop/
</source>
 
 
== Code Installation ==
 
<source lang="bash">
 
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
 
 
</source>
 
</source>
  

Version vom 13. Oktober 2015, 16:46 Uhr

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