Debian squeeze typo3

Aus Vosp.info
Wechseln zu:Navigation, Suche

Apache vorbereiten

vim /etc/php5/apache/php.ini
memory_limit = 80M 
upload_max_filesize = 10M
post_max_size = 10M
apt-get install php5-curl php5-gd php5-mysql

typo3 runterladen

  • Der SourceCode:
wget  http://prdownloads.sourceforge.net/typo3/typo3_src-4.7.4.tar.gz
  • das Dummy Packet:
wget http://prdownloads.sourceforge.net/typo3/dummy-4.7.4.tar.gz
  • beide nach /var/www/typo3 entpacken und rechte anpassen
mkdir /var/www/typo3
tar -xzf typo3_src-4.7.4.tar.gz -C /var/www/typo3/
chown www-data:www-data -R /var/www/typo3/typo3_src-4.7.4/
tar -xzf dummy-4.7.4.tar.gz -C /var/www/typo3/
chown www-data:www-data -R /var/www/typo3/dummy-4.7.4/


Installationsschritte auf dem Server

Datenbank vorbereiten:

mysql -u root -p

create user 'typo3'@localhost identified by 'XXXXXXXXX';
create DATABASE t3;
grant all privileges on t3.* to typo3@localhost;
flush privileges;

Install Tool vorbereiten

cd /var/www/typo3/dummy-4.7.4/
touch typo3conf/ENABLE_INSTALL_TOOL
  • domain.tld => Führt zu einer Fehlermeldung, da es noch keinen anzeigbaren Inhalt gibt.

Abschließende Installation mit dem Install Tool

Nach dem Anlegen der Datei ENABLE_INSTALL_TOOL ruft mensch die Seite

  • domain.tld/typo3/install/

auf.

Gegebenenfalls imagemagik auf der CLI nachinstallieren.

WICHTIGE Module

  • Menupunkt UPGRADE wizard: Install fluid and extbase to satisfy dependencies of system extensions

Der erste Benutzer

  • Menupunkt Database Analyser: Der erste Benutzer für das Backend wird eingerichtet. Dieser ist automatisch ein Admin.

Benutzen der Installation

Mit <domain>/typo3 ruft mensch das Beackend auf.

Neu angelegte Domains müssen dem Webserver bekannt gemacht werden.
Das bedeutet für den apache2, dass jede Domain

  • vhost
  • DocumentRoot ist die Typo3-Installation (dummy bzw. die Kopien davon, NICHT typo3_src-X.X.X)