Typo3 Version 7.6: Unterschied zwischen den Versionen

Aus Doku-Wiki
Zur Navigation springenZur Suche springen
Zeile 3: Zeile 3:
 
** Ubuntu 16.4 LTS
 
** Ubuntu 16.4 LTS
 
=Links=
 
=Links=
=Installation=
+
=Vorbereitung der Installation=
 
==Servervorausstezungen==
 
==Servervorausstezungen==
 
[https://github.com/TYPO3/TYPO3.CMS/blob/TYPO3_7-6/INSTALL.md Original Doku]
 
[https://github.com/TYPO3/TYPO3.CMS/blob/TYPO3_7-6/INSTALL.md Original Doku]
Zeile 41: Zeile 41:
 
  # bcmath or gmp (needed if you'd like to use the openid system extension)
 
  # bcmath or gmp (needed if you'd like to use the openid system extension)
  
 +
=Installation=
 +
Typo3 Sourcen entpacken
 +
 +
cd /var/www/SITE/
 +
tar xzf typo3_src-7.6.x.tar.gz
 +
 +
cd typo3_src
 +
composer install --no-dev
 +
cd ..
  
  
  
 
[[Kategorie:Typo3]]
 
[[Kategorie:Typo3]]

Version vom 13. Mai 2016, 11:26 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)

Installation

Typo3 Sourcen entpacken

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

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