Typo3 Version 7.6: Unterschied zwischen den Versionen

Aus Doku-Wiki
Zur Navigation springenZur Suche springen
Zeile 1: Zeile 1:
 +
=Systemangaben=
 +
* Die Installation von Typo3 erfolgt auf folgendem System:
 +
** Ubuntu 16.4 LTS
 
=Links=
 
=Links=
 
=Installation=
 
=Installation=
 +
==Servervorausstezungen==
 +
https://github.com/TYPO3/TYPO3.CMS/blob/TYPO3_7-6/INSTALL.md 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)
 +
  
  
  
 
[[Kategorie:Typo3]]
 
[[Kategorie:Typo3]]

Version vom 13. Mai 2016, 12:23 Uhr

Systemangaben

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

Links

Installation

Servervorausstezungen

https://github.com/TYPO3/TYPO3.CMS/blob/TYPO3_7-6/INSTALL.md 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)