0

我的类别页面http://magento-36664-riki.vpsapps.net/ceiling-lights.html?___store=default是空白的。即使当我尝试搜索任何产品时,我都会得到空白页面。所以我认为整个目录都不起作用。

我也尝试从后台更改类别的布局,但结果相同

有什么办法可以看到错误吗?

我检查了服务器 error.log 文件并找到此消息“Options directive 禁止目录索引”

现在我再次检查了我的服务器错误日志。现在我收到此错误“现在我在服务器错误日志中收到此错误”PHP 致命错误:在 /var/www/kkemerce/htdocs/app/Mage.第 842 行的 php [Fri May 03 06:26:44 2013] [error] PHP 致命错误:在 /var/www/kkemerce/htdocs/app/code/core/Mage/Core/functions 中找不到类“法师”。第 0 行的 php"

4

6 回答 6

2

根据我的经验,关于服务器错误“PHP 致命错误:允许的内存大小为 268435456 字节 ...”,如果发生以下情况:

  • 我尝试浏览不属于任何类别的产品
  • 我尝试浏览属性“处于活动状态”设置为 NO 的类别

它会吃掉任何内存 [ini_set('memory_limit','2024M') 仍然不够]

也许这有帮助?

于 2014-03-09T09:05:41.493 回答
2

我认为由于 PHP 错误,您得到了空白页。要使 Magento 显示错误,您应该通过index.php如下编辑来启用开发者模式:

....
#if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
    Mage::setIsDeveloperMode(true);
#}

ini_set('display_errors', 1);
....
于 2013-05-02T20:52:48.580 回答
0

you can check log goto var->log directory then you can get exception and system log file otherwise you can goto magento admin panel Sysem->configuration and find Advance tab then select devloper and select debug-> profiler select "yes"

于 2013-05-03T05:35:13.087 回答
0

Directory index forbidden by Options directive表示您的虚拟主机设置不正确。检查 mod_rewrite 是否启用,同时检查默认的 .htaccess 是否存在。最后,检查您的虚拟主机设置并查看它是否具有 mod_rewrite 设置:

http://httpd.apache.org/docs/2.2/rewrite/vhosts.html

于 2013-05-03T05:03:52.647 回答
0

在网格视图中加载目录时缺少一个属性我把那个属性和问题解决了

于 2013-05-16T17:59:53.417 回答
0

对我来说禁用缓存有效,似乎是缓存问题。

于 2015-12-10T19:28:12.117 回答