Tag: typo3

  • typo3 CMS Installation

    Display Errors in Typo3

    Install typo3

    mkdir -p /var/www/domain.extn/html
    cd /var/www/domain.extn/
    wget --content-disposition get.typo3.org/9
    tar xvf typo3_src-9.5.1.tar.gz
    ln -s ../typo3_src-9.5.1 typo3_src
    ln -s typo3_src/index.php index.php
    ln -s typo3_src/typo3 typo3
    mkdir -p /var/www/domain.extn/html/typo3temp/var/log/
    chown -R apache:apache /var/www/domain.extn/html/
    touch /var/www/domain.extn/html/FIRST_INSTALL
    
  • Display Errors in Typo3

    To enable error reporting in Typo3 CMS, edit file

    vi typo3/sysext/core/Configuration/DefaultConfiguration.php
    

    Find

    'debug' => false,
    

    Replace with

    'debug' => true,
    

    Find

    'displayErrors' => -1,
    

    Replace with

    'displayErrors' => 1,
    

    Now typo3 will display errors on browser.