TYPO3 LTS 9: Unterschied zwischen den Versionen
Aus Vosp.info
F (Diskussion | Beiträge) |
F (Diskussion | Beiträge) (→Extensions) |
||
Zeile 61: | Zeile 61: | ||
=== scheduler === | === scheduler === | ||
− | + | über EM Local | |
=== vhs === | === vhs === | ||
− | + | über EM Repository | |
=== includekrexx=== | === includekrexx=== | ||
− | + | über EM Repository | |
=== ws_scss=== | === ws_scss=== | ||
− | + | git clone https://github.com/svewap/ws_scss.git | |
=== gridelements === | === gridelements === | ||
− | git | + | git clone https://github.com/TYPO3-extensions/gridelements.git |
=== t3sbootstrap=== | === t3sbootstrap=== | ||
− | * https://www.t3sbootstrap.de/typo3-95/ | + | * über https://www.t3sbootstrap.de/typo3-95/ |
− | + | ** hier https://www.t3sbootstrap.de/fileadmin/user_upload/t3sbootstrap_4.1.96-dev.zip | |
− | + | * Konfiguration | |
+ | ** Einstellungen > Extension Configuration > t3sbootstrap > Custom SCSS | ||
+ | *** Custom SCSS activate (clear cache and run Scheduler). | ||
=== lang (Sprache) === | === lang (Sprache) === | ||
Zeile 86: | Zeile 88: | ||
@ignorevalidation => @TYPO3\CMS\Extbase\Annotation\IgnoreValidation | @ignorevalidation => @TYPO3\CMS\Extbase\Annotation\IgnoreValidation | ||
</source> | </source> | ||
− | |||
== netz.coop Extensions == | == netz.coop Extensions == |
Version vom 22. November 2018, 16:31 Uhr
Inhaltsverzeichnis
Benötigte Software & Konfiguration
apt-get install imagemagick wget bash-completion zip unzip apache2 libapache2-mod-php7.2 php7.2-cli php7.2 php7.2-common php7.2-imap php7.2-intl php7.2-mysql php7.2-readline php7.2-soap php7.2-zip php7.2-zip php7.2-gd php7.2-xml php7.2-gd php7.2-json php7.2-opcache php-imagick php7.2-curl php7.2-mbstring php7.2-bcmath php7.2-gmp php7.2-zip mysql-server composer
a2enmod deflate rewrite headers mime expires ssl
mysql_secure_installation
USE mysql;
UPDATE user SET plugin='mysql_native_password' WHERE User='root';
FLUSH PRIVILEGES;
exit;
#Falls Die Sicherheit für Passwörte nachträglich geändert werden muss.
mysql$ SHOW VARIABLES LIKE 'validate_password%';
mysql$ SET GLOBAL validate_password_policy=LOW;
vim /etc/mysql/mysql.conf.d/mysqld.cnf
#add
[mysqld]
validate_password_policy=LOW
Typo3 Grundinstallation
cd in /var/www/domain
git clone https://github.com/TYPO3/TYPO3.CMS.git
cd TYPO3.CMS/
git fetch --tags
git tag --list
git checkout tags/v.9.5.1
#Externe Bibliotheken installieren
composer install
cd ..
ln -s TYPO3.CMS typo3_src
ln -s typo3_src/typo3 typo3
ln -s typo3_src/index.php .
touch FIRST_INSTALL
# /etc/php/7.2/apache2/php.ini
max_execution_time = 240
max_input_vars = 1500
Extensions
scheduler
über EM Local
vhs
über EM Repository
includekrexx
über EM Repository
ws_scss
git clone https://github.com/svewap/ws_scss.git
gridelements
git clone https://github.com/TYPO3-extensions/gridelements.git
t3sbootstrap
- über https://www.t3sbootstrap.de/typo3-95/
- Konfiguration
- Einstellungen > Extension Configuration > t3sbootstrap > Custom SCSS
- Custom SCSS activate (clear cache and run Scheduler).
- Einstellungen > Extension Configuration > t3sbootstrap > Custom SCSS
lang (Sprache)
Die Sprachkonfiguration wurde in das installtool verlegt
alte Extension Anpassungen
@inject => @TYPO3\CMS\Extbase\Annotation\Inject
@ignorevalidation => @TYPO3\CMS\Extbase\Annotation\IgnoreValidation