Magento 安装错误:
Exception printing is disabled by default for security reasons. Error log record number: xxxxxx解决方法:
第1步.进入 Magento文档根目录 /errors/ 文件夹中。 第2步:复制local.xml.sample 为 local.xml 文件# cp local.xml.sample local.xml第3步:编辑 magento/lib/Zend/Cache/Backend/File.php 文件,查找和更改cache_dir 的设置。 从:
protected $_options = array( 'cache_dir' => 'null',改为如下:
protected $_options = array( 'cache_dir' => 'tmp/',第4步:最后,创建在Magento文档根临时文件夹
# mkdir tmp/完成