magento提示Exception printing is disabled by default for security reasons.

来源:互联网 发布:淘宝权重是什么意思 编辑:程序博客网 时间:2024/05/21 16:22

magento提示Exception printing is disabled by default for security reasons.

解决方法:

改变magento根目录下 /errors/local.xml.sample 为/errors/local.xml
改变magento根目录下/lib/Zend/Cache/Backend/File.php文件里面
protected $_options = array(
        'cache_dir' => NULL,
        'file_locking' => true,

protected $_options = array(
        'cache_dir' => 'tmp/',
        'file_locking' => true,

然后在根目录下创建tmp文件夹.

#Php
0 0
原创粉丝点击