Typo3 Version 7.6: Unterschied zwischen den Versionen

Aus Doku-Wiki
Zur Navigation springenZur Suche springen
Zeile 50: Zeile 50:
 
=Installation=
 
=Installation=
 
Typo3 Sourcen entpacken
 
Typo3 Sourcen entpacken
 
 
  cd /var/www/SITE/
 
  cd /var/www/SITE/
 
  tar xzf typo3_src-7.6.x.tar.gz
 
  tar xzf typo3_src-7.6.x.tar.gz
+
Wichtig: Wenn Sie GIT verwenden, um die Quellen zu holen, vergessen Sie nicht, die folgenden Befehle ausgeführt werden, sonst wird Ihre Installation wird nicht funktionieren!
 
  cd typo3_src
 
  cd typo3_src
 
  composer install --no-dev
 
  composer install --no-dev
 
  cd ..
 
  cd ..
 
+
Sym-Links anlegen
 +
cd htdocs
 +
ln -s ../typo3_src-7.6.x typo3_src
 +
ln -s typo3_src/index.php
 +
ln -s typo3_src/typo3
  
  
 
[[Kategorie:Typo3]]
 
[[Kategorie:Typo3]]

Version vom 13. Mai 2016, 11:33 Uhr

Systemangaben

  • Die Installation von Typo3 erfolgt auf folgendem System:
    • Ubuntu 16.4 LTS

Links

Vorbereitung der Installation

Servervorausstezungen

Original Doku

  • Webserver (Apache, Nginx, IIS or other)
  • PHP 5.5 - 7
  • MySQL 5.5 - 5.7

MySQL Rechte

Der MySQL benötigt folgende Rechte auf die Typo3 Datenbank;

   SELECT, INSERT, UPDATE, DELETE
   CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES

Es wird empfohlen, auch folgende Berechtigungen zu erteilen:

   CREATE VIEW, SHOW VIEW
   EXECUTE, CREATE ROUTINE, ALTER ROUTINE

PHP

Anforderungen

   filter
   hash
   openssl
   pcre >= 8.30
   session
   soap
   SPL
   standard
   xml
   zip
   zlib
   gd
   json
   mysqli

Zusätliche PHP Erweiterungen

aptitude install hp-apcu php-curl php7.0-mbstring php7.0-bcmath composer
# apcu caching (with at least 100 MB of memory available)
# curl
# mbstring
# FreeType 2 (usually included within the PHP distribution)
# bcmath or gmp (needed if you'd like to use the openid system extension)

PHP Einstellungen (php.ini)

  • memory_limit set to at least 128M
  • max_execution_time set to at least 240s
  • max_input_vars set to at least 1500
  • register_globals disabled
  • always_populate_raw_post_data set to -1 (PHP version >= 5.6, <7.0)

Installation

Typo3 Sourcen entpacken

cd /var/www/SITE/
tar xzf typo3_src-7.6.x.tar.gz

Wichtig: Wenn Sie GIT verwenden, um die Quellen zu holen, vergessen Sie nicht, die folgenden Befehle ausgeführt werden, sonst wird Ihre Installation wird nicht funktionieren!

cd typo3_src
composer install --no-dev
cd ..

Sym-Links anlegen

cd htdocs
ln -s ../typo3_src-7.6.x typo3_src
ln -s typo3_src/index.php
ln -s typo3_src/typo3