Typo3 Installation: Unterschied zwischen den Versionen

Aus Vosp.info
Wechseln zu:Navigation, Suche
(typo3 Version 4)
 
(21 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
= typo3 Version 6 =
+
[[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 =
 +
<source lang=bash>
 +
#apt-get install graphicsmagick
 +
apt-get install imagemagick
 +
 
 +
</source>
 +
siehe auch [[ImageMagick]]
 +
 
  
== conditions ==
+
= typo3 Version 9 =
apt-get install graphicsmagick
 
  
== installation ==
+
* https://get.typo3.org/version/9
  
* download [http://typo3.org/download/ neuste Version]
+
== mit composer ==
** es gibt verschiedene Pakete ... wir nehmen hier mal Government Package, da gibts dann schon schön viele Beispiele
+
<source lang=bash>
auf dem Server
+
composer create-project typo3/cms-base-distribution my-new-project ^9.5
== Code Installation ==
+
cd my-new-project
<source lang="bash">
+
php vendor/bin/typo3cms install:setup
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>
  
==Apache Konfiguration==
+
* https://docs.typo3.org/p/helhum/typo3-console/master/en-us/CommandReference/Index.html
<source lang="bash">
+
 
echo "
+
* Probleme
<VirtualHost *:80>
+
** die Dateirechte müssen hinterher richtig gesetzt werden, falls es nicht mit dem apache user ausgeführt wurde
        ServerName t3v6.domain.tld
+
** Admin erstellen s.u.
        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 lang=bash>
 +
php vendor/bin/typo3cms list
 +
php vendor/bin/typo3cms backend:createadmin
 
</source>
 
</source>
  
 +
= typo3 Version 6 =
 +
 +
== installation ==
 +
 +
'''Konsolenteil'''
 +
<source lang=bash>
 +
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 ./
 +
</source>
  
```t3v6.domain.tld aufrufen``` (sollte automatisch auf https://t3v6.domain.tld umgeleitet werden) und die 1-2-3-4 Schritte durchgehen
+
'''Browserteil'''
 +
* 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';