便宜VPS网为回馈新老顾客,香港vps免费送,数量有限,先到先得!手慢无!

安装Magento后 后台报错的解决办法

Magento知识 便宜vps网 3978℃

今天初次安装Magento, 开始装的是英文版,后来又找到中文版安装后在后台都有同一个错误,就是登陆后台,随便点击一个链接,都有报错

There has been an error processing your request
Exception printing is disabled by default for security reasons.

Error log record number: xxxxxxxxxx(这是一串数字)

在var/report下能找到一上面数组明明的文件。

打开即可看到错误信息:

a:5:{i:0;s:71:”Could not determine temp directory, please specify a cache_dir manually”;i:1;s:4558:”#0 /lib/Zend/Cache/Backend.php(197): Zend_Cache::throwException(‘Could not deter…’)

此错误说明是没有找到缓存文件目录,缓存目录需要手动设置

这里我们需要修改文件 lib\Zend\Cache\Backend\File.php  在第90行的位置

  1. protected $_options = array(
  2.         ‘cache_dir’ => null,
  3.         ‘file_locking’ => true,
  4.         ‘read_control’ => true,
  5.         ‘read_control_type’ => ‘crc32’,
  6.         ‘hashed_directory_level’ => 0,
  7.         ‘hashed_directory_umask’ => 0700,
  8.         ‘file_name_prefix’ => ‘zend_cache’,
  9.         ‘cache_file_umask’ => 0600,
  10.         ‘metadatas_array_max_size’ => 100
  11.     );

  1. protected $_options = array(
  2.         ‘cache_dir’ => ‘var/cache’,
  3.         ‘file_locking’ => true,
  4.         ‘read_control’ => true,
  5.         ‘read_control_type’ => ‘crc32’,
  6.         ‘hashed_directory_level’ => 0,
  7.         ‘hashed_directory_umask’ => 0700,
  8.         ‘file_name_prefix’ => ‘zend_cache’,
  9.         ‘cache_file_umask’ => 0600,
  10.         ‘metadatas_array_max_size’ => 100
  11.     );

原创文章,转载请注明: 转载自VPS面板知识

本文链接地址: 安装Magento后 后台报错的解决办法

VPS面板知识: 便宜VPS网–便宜技术|Windows VPS面板知识 | Linux VPS面板知识

友情链接:便宜vps网 真诚为您推荐最合适的vps服务器,详情咨询860001083


在线咨询

文章的脚注信息由WordPress的wp-posturl插件自动生成

转载请注明:VPS面板知识 » 安装Magento后 后台报错的解决办法

喜欢 (0)or分享 (0)