Jan 15, 2015 Tag: TYPO3

Looking for Wisdom about TYPO3

Ongoing attempt to collect links and documentation about TYPO3. New links will go here first and may later be outsourced into a separate post. Will be updated as needed.

Updated on Apr 17, 2016

See also: About TYPO3

Navigate this page:

About Upgrading

Check the release notes.

Steps

  • copy website
  • check extensions: what can be removed?
  • neue extensionlist: Erhalte PREG_BACKTRACK_LIMIT_ERROR
  • löschen: alle nicht aktivierten Extensions löschen
  • updatebare aktualisieren
# Verwendung der Kommandozeile

# Sie können die Prüfung auch in einem Shell-Script mit dem Command Line Interface (CLI)
# durchführen, wenn die Verarbeitung länger braucht, als die max_execution_time in PHP erlaubt.
# Um den Referenz-Index zu prüfen, führen Sie folgenden Befehl aus:
php /home/USER/public_html/typo3/cli_dispatch.phpsh lowlevel_refindex -c

# Um den Referenz-Index zu aktualisieren, führen Sie folgenden Befehl aus:
php /home/USER/public_html/typo3/cli_dispatch.phpsh lowlevel_refindex -e

CLI Steps

Set go to home directory and set variable TYPO3_site:

cd
TYPO3_site=$(pwd)/public_html/

Examples:

cd $TYPO3_site
php typo3/cli_dispatch.phpsh
php typo3/cli_dispatch.phpsh extbase help
php typo3/cli_dispatch.phpsh lowlevel_admin
php typo3/cli_dispatch.phpsh lowlevel_cleaner
php typo3/cli_dispatch.phpsh lowlevel_refindex
php typo3/cli_dispatch.phpsh scheduler

Repair refindex:

php typo3/cli_dispatch.phpsh  lowlevel_refindex
# Options:
#  -c = Check refindex
#  -e = Update refindex
#  -s = Silent
php typo3/cli_dispatch.phpsh lowlevel_refindex -e

Find out about Smoothmigration:

php typo3/cli_dispatch.phpsh extbase help

Get this:

EXTENSION "SMOOTHMIGRATION":
--------------------------------------------------------------------
  smoothmigration:check         Display available checks
  smoothmigration:checkall      Run all checks on all- or on a
                                single extension
  smoothmigration:interactive   Run in interactive mode
  smoothmigration:migration     Display available migrations
  smoothmigration:report        Display report for all issues or for
                                a single extension

Site Packages

Snippets

RSA authentication for TYPO3

To test whether OpenSSL is available:

<?php
   $privateKey = openssl_pkey_new();
   var_dump($privateKey);
?>

Shop

  • wt_cart, aimeos, multishop
  • Oxid

typo3conf

AdditionalConfiguration.php:

<?php
if (1 && file_exists(PATH_site . 'typo3conf/AdditionalConfiguration.php.NOT_VERSIONED.php')) {
   include(PATH_site . 'typo3conf/AdditionalConfiguration.php.NOT_VERSIONED.php');
}
?>

Development Presets

$settings = array(
   'BE/debug' => '1',
   'FE/debug' => '1',
   'SYS/devIPmask' => '*',
   'SYS/displayErrors' => '1',
   'SYS/enableDeprecationLog' => 'file',
   'SYS/sqlDebug' => '1',
   'SYS/systemLogLevel' => '0',
   'SYS/exceptionalErrors' => '28674',
   'SYS/clearCacheSystem' => '1',
   'GFX/image_processing' => '1',
   'GFX/im' => '1',
   'GFX/im_path' => '/usr/bin/',
   'GFX/im_path_lzw' => '/usr/bin/',
   'GFX/im_version_5' => 'im6',
   'GFX/im_v5effects' => '0',
   'GFX/im_mask_temp_ext_gif' => '1',
   'GFX/colorspace' => 'RGB'
   )

About The API

Previous topic

Looking for Wisdom about Ruby

Next topic

Looking for Wisdom about Twitter Bootstrap

Tags

Archives

Languages

Recent Posts

This Page