xampp for linux 和 joomla 出现错误 500
我在 Linux 上使用 ubuntu 和 XAMPP,当我尝试在 Joomla 中上传大于 500kb 的扩展时遇到问题,收到“HTTP 错误 500”
http://s4.postimage.org/7wgxcfveq/error500.jpg
我的 php.ini 文件是按照 joomla 的建议配置的:
“display_errors=Off”.... ..
这是我的错误日志
[2011 年 6 月 6 日星期一 14:12:45] [通知] 启用 suEXEC 机制(包装器: /opt/lampp/bin/suexec) [6 月 6 日星期一 14:12:45 2011] [警告] RSA 服务器 证书是CA证书 (基本约束:CA == TRUE!?) [周一 2011 年 6 月 6 日 14:12:45] [警告] RSA 服务器证书 CommonName (CN)
localhost' 与服务器不匹配 姓名!? [2011 年 6 月 6 日星期一 14:12:46] [注意]摘要:生成秘密 摘要身份验证... [6 月 6 日星期一 14:12:46 2011] [通知]摘要:完成 [2011 年 6 月 6 日星期一 14:12:47] [警告] RSA 服务器证书是CA证书 (基本约束:CA == TRUE!?) [周一 2011 年 6 月 6 日 14:12:47] [警告] RSA 服务器证书 CommonName (CN)
localhost' 与服务器不匹配 姓名!? [2011 年 6 月 6 日星期一 14:12:48] [通知] Apache/2.2.17 (Unix) DAV/2 mod_ssl/2.2.17 OpenSSL/1.0.0c PHP/5.3.5 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1 配置 -- 恢复正常操作 [Mon Jun 06 14:15:34 2011] [错误] [客户端 192.168.56.1] PHP 致命错误:最长执行时间为 30 秒 超过了 /opt/lampp/htdocs/csu/libraries/joomla/filesystem/archive/tar.php 第 154 行,参考: http://192.168.56.101/csu/administrator/index.php ?option=com_installer&view=install
Im using ubuntu and XAMPP for linux and I have a problem when I try to upload an extension greater than 500kb in Joomla, I get an "HTTP Error 500"
http://s4.postimage.org/7wgxcfveq/error500.jpg
My php.ini file is configured following the joomla recomendations:
"display_errors=Off"......
here is my error log
[Mon Jun 06 14:12:45 2011] [notice]
suEXEC mechanism enabled (wrapper:
/opt/lampp/bin/suexec) [Mon Jun 06
14:12:45 2011] [warn] RSA server
certificate is a CA certificate
(BasicConstraints: CA == TRUE !?) [Mon
Jun 06 14:12:45 2011] [warn] RSA
server certificate CommonName (CN)localhost' does NOT match server
localhost' does NOT match server
name!? [Mon Jun 06 14:12:46 2011]
[notice] Digest: generating secret for
digest authentication ... [Mon Jun 06
14:12:46 2011] [notice] Digest: done
[Mon Jun 06 14:12:47 2011] [warn] RSA
server certificate is a CA certificate
(BasicConstraints: CA == TRUE !?) [Mon
Jun 06 14:12:47 2011] [warn] RSA
server certificate CommonName (CN)
name!? [Mon Jun 06 14:12:48 2011]
[notice] Apache/2.2.17 (Unix) DAV/2
mod_ssl/2.2.17 OpenSSL/1.0.0c
PHP/5.3.5 mod_apreq2-20090110/2.7.1
mod_perl/2.0.4 Perl/v5.10.1 configured
-- resuming normal operations [Mon Jun 06 14:15:34 2011] [error] [client
192.168.56.1] PHP Fatal error: Maximum execution time of 30 seconds
exceeded in
/opt/lampp/htdocs/csu/libraries/joomla/filesystem/archive/tar.php
on line 154, referer:
http://192.168.56.101/csu/administrator/index.php?option=com_installer&view=install
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHP 致命错误是“超出最大执行时间 30 秒”。
您可以尝试通过更改 php.ini 文件中的 max_execution_time 来增加此值,或创建一个包含..
扩展的安装时间是否应该超过 30 秒?
可能存在脚本问题,例如无限循环,从而导致出现问题。
The PHP Fatal error is "Maximum execution time of 30 seconds exceeded".
You could try increasing this by altering the max_execution_time in the php.ini file or create a .htaccess file containing..
Should the installation of an extension take longer than 30 seconds?
There might be a script issue, such as an endless loop, that's causing problems.