0

这里正在发生一些非常愚蠢的事情。我有几个 magento 项目,直到现在它们都很好。我在每个 Magento 项目上都得到一个空白页;

此外,如果我想创建一个新的 magento 项目,在第二个安装步骤中,它会给出一个空白页。

XAMPP 给了我几个错误(error_log)

[Fri Oct 25 10:05:50 2013] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
[Fri Oct 25 10:05:52 2013] [notice] Digest: generating secret for digest authentication ...
[Fri Oct 25 10:05:52 2013] [notice] Digest: done
[Fri Oct 25 10:05:53 2013] [notice] Apache/2.2.14 (Unix) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l PHP/5.3.1 mod_perl/2.0.4 Perl/v5.10.1 configured -- resuming normal operations
[Fri Oct 25 10:16:03 2013] [notice] child pid 3039 exit signal Bus error (10)
[Fri Oct 25 10:16:04 2013] [notice] child pid 3041 exit signal Bus error (10)
[Fri Oct 25 10:25:57 2013] [notice] child pid 2787 exit signal Bus error (10)
[Fri Oct 25 10:25:58 2013] [notice] child pid 2715 exit signal Bus error (10)

我确实重新安装了 XAMPP,但仍然出现同样的错误。

有谁能够帮我?

4

2 回答 2

0

好的,我对 Magento 有同样的问题,我发现这是因为我将 Mac OS X 升级到 10.9。

我正在使用 XAMPP 1.7.3 。

要解决这个问题,您需要将 XAMPP 升级到 1.8.3。

现在一切对我来说都很好。

于 2013-11-06T16:47:51.727 回答
0

尝试以下:

摆脱 XAMPP 中的 SSLSessionCache 消息

1) 打开文件\xampp\apache\conf\httpd.conf

2) 在 LoadModule 区域的某处添加以下行:

LoadModule socache_shmcb_module modules/mod_socache_shmcb.so

3) 保存文件

4) 现在打开文件 \xampp\apache\conf\extra\httpd-ssl.conf

5) 在第 70 行添加该行

SSLSessionCache "shmcb:logs/ssl_scache(512000)"

6) 保存文件

7)重启阿帕奇

参考:XAMPP - 会话缓存未配置 [提示:SSLSessionCache]

于 2013-10-25T08:35:28.910 回答