| 
       每当您看到此错误: 
 
		There has been an error processing your request 
	
		Exception printing is disabled by default for security reasons. 
	
		Error log record number: XXXXXXXXXXXXXXX 
你可以做如下: 1.找到你的Magento的安装位置的根目录。搜索"错误"目录。 2将local.xml.sample的文件名更改为local.xml 。 3.重新加载它显示错误消息,您将看到错误消息 — — 的目的重命名local.xml的完整列表的页是允许要显示的完整的错误消息。 4现在,找到magento_directory/lib/Zend/Cache/Backend/File.php并查找:。 
		protected $_options = array( 
	
		'cache_dir' => 'null', 
替换为: 
		protected $_options = array( 
	
		'cache_dir' => 'tmp/', 
并保存该文件。  | 
    
