Posts Tagged ‘php’

    howto Solve Magento with php eAcellerator 0.9.6.1 issue

    Friday, August 20th, 2010

    Running magento commerce 1.3.x in combination with eAccelerator 0.9.6.x gives Strict Notices error Report

    Have you seen this Magento Error Report:

    Magento Frontend symptoms:

    Strict Notice: Only variables should be passed by reference  in /var/www/vhosts/khodtech.com/public/app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php

    It is most likely related directly to running the php opcode caching mechanism implemented by eAccelerator 0.9.6.1.

    Magento Frontend Quick fix is to:

    in app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php on line 373:

    return current(array_keys($this->_availableMode));

    replace to:

    $arrayKeys = array_keys($this->_availableMode);
    return current($arrayKeys);

    Magento Backend Quick fix is to:

    In lib/Zend/Db/Select.php on line 216 find:

    $correlationName = current(array_keys($this->_parts[self::FROM]));

    replace to:

    $arrayKeys = array_keys($this->_parts[self::FROM]);
    $correlationName = current($arrayKeys);

    The solution is provided by the fantastic Magento Community

    How to optimize Magento Performance

    Monday, May 17th, 2010

    Magento Performance hosting Optimization suggestions

    There are an wide range of options one can use for optimizing the performance of the magento application. It ranges from OS performance tweaks which are different from both Linux type or if it is running on either Windows or Unix/Linux. And to the way that webserver and browsers communicates caching implementations.In this post i will try and address some of the options for magento performance optimization. These optimizations can also change from either running and old version of magento ecommerce. < 1.2.x or latest version 1.4.x. And even change when running Magento enterprise edition with Full Page caching enabled.(more...)
    SSL Certificate Provider