Typo3 Installation: Unterschied zwischen den Versionen

Aus Vosp.info
Wechseln zu:Navigation, Suche
(installation)
 
(17 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
 
[[typo3]]
 
[[typo3]]
= typo3 Version 6 =
 
  
  
== conditions ==
+
wget get.typo3.org/6.2 -O typo3_src-6.2.6.tar.gz
apt-get install graphicsmagick
+
wget get.typo3.org/8.7 -O typo3_src-8.7.tar.gz
 +
 
 +
= conditions =
 +
<source lang=bash>
 +
#apt-get install graphicsmagick
 +
apt-get install imagemagick
 +
 
 +
</source>
 +
siehe auch [[ImageMagick]]
 +
 
 +
 
 +
= typo3 Version 9 =
 +
 
 +
* https://get.typo3.org/version/9
 +
 
 +
== mit composer ==
 +
<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>
 +
 
 +
* https://docs.typo3.org/p/helhum/typo3-console/master/en-us/CommandReference/Index.html
 +
 
 +
* Probleme
 +
** die Dateirechte müssen hinterher richtig gesetzt werden, falls es nicht mit dem apache user ausgeführt wurde
 +
** Admin erstellen s.u.
  
== installation ==
+
<source lang=bash>
 +
php vendor/bin/typo3cms list
 +
php vendor/bin/typo3cms backend:createadmin
 +
</source>
  
* download [http://typo3.org/download/ neuste Version]
+
= typo3 Version 6 =
** es gibt verschiedene Pakete ... wir nehmen hier mal Government Package, da gibts dann schon schön viele Beispiele
 
auf dem Server
 
  
 +
== installation ==
  
 +
'''Konsolenteil'''
 
<source lang=bash>
 
<source lang=bash>
 
git clone https://git.typo3.org/Packages/TYPO3.CMS.git
 
git clone https://git.typo3.org/Packages/TYPO3.CMS.git
Zeile 19: Zeile 47:
 
git checkout --track origin/TYPO3_6-2
 
git checkout --track origin/TYPO3_6-2
 
cd ..
 
cd ..
 
+
ln -s TYPO3.CMS typo3_src
</source>
+
ln -s typo3_src/index.php
 
+
ln -s typo3_src/typo3
== Code Installation ==
+
touch  FIRST_INSTALL
<source lang="bash">
+
chown -R www-data:www-data ./
cd /var/www/
+
chmod -R ug+rw  ./
wget http://switch.dl.sourceforge.net/project/typo3/TYPO3%20Source%20and%20Dummy
+
chmod 2775 ./
/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>
 
 
 
==Apache Konfiguration==
 
<source lang="bash">
 
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
 
 
 
 
</source>
 
</source>
  
 
+
'''Browserteil'''
```t3v6.domain.tld aufrufen``` (sollte automatisch auf https://t3v6.domain.tld umgeleitet werden) und die 1-2-3-4 Schritte durchgehen
+
* im Browser die Url aufrufen und die installationsschritte durch laufen
 +
* nach erfolgreicher Installation einloggen
 +
** SYSTEM > Install > Configuration Presets
 +
** SYSTEM > Install > Folder structure
 +
*** [[Typo3_LTS_Upgrade#Dateirechte_setzen]]
 +
** SYSTEM > Install > Test setup
  
 
= Probleme =
 
= Probleme =

Aktuelle Version vom 21. März 2024, 22:14 Uhr

typo3


wget get.typo3.org/6.2 -O typo3_src-6.2.6.tar.gz
wget get.typo3.org/8.7 -O typo3_src-8.7.tar.gz

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
  • Probleme
    • die Dateirechte müssen hinterher richtig gesetzt werden, falls es nicht mit dem apache user ausgeführt wurde
    • Admin erstellen s.u.
php vendor/bin/typo3cms list
php vendor/bin/typo3cms backend:createadmin

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

Probleme

admin Passwort vergessen

UPDATE be_users SET password=md5('your_new_password') WHERE username = 'admin';