0

I have installed latest Zend Server CE in my notebook (it has Win 7 installed) and then I installed it on my desktop machine. But when you start server controller there is an alert saying Connection refused (or timed out)

What's the problem? When I start server http://localhost:10081/ZendServer/

the following message appears

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, admin@example.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

and apache works well in the following address http://localhost:81

when i telnet localhost 10081 there is a reply !!!

I found from the inet http://forums.zend.com/viewtopic.php?f=8&t=7518 that it's because of not having ipv6 support, I am running windows xp3 on my desktop how to disable default ipv6 support in Zend conf?

how to fix this problem or should I switch to win 7 (my desktop)? Thanks in advance!

4

2 回答 2

2

在从 zend apt repo [deb http://repos.zend.com/zend-server/deb server non-free]升级到当前最新版本的 Zend 后,我在 Debian Squeeze 上遇到了类似的问题。Zend gui 失败。

zend-server-ce-php-5.3 5.5.0+b63

登录 /usr/local/zend/gui/lighttpd/logs/php.log 会抛出这个异常。

[10-Jan-2012 11:20:03] PHP Fatal error:  Uncaught exception 'Exception' with message 'Unknown application version' in /usr/local/zend/gui/application/CheckDependencies.php:28
 Stack trace:
#0 /usr/local/zend/gui/html/index.php(16): CheckDependencies::getChecker('INSTALLATION_PL...')
#1 {main}
 thrown in /usr/local/zend/gui/application/CheckDependencies.php on line 28

问题是 /usr/local/zend/gui/application/data/zend-server.ini 中的 zend-server.ini 文件但是在进行了如下所示的更改后,它似乎又可以正常工作了。

--- zend-server.ini 2012-01-05 16:45:29.000000000 +0100
+++ zend-server.ini 2012-01-10 12:01:37.000000000 +0100
@@ -3,7 +3,7 @@

[zendServer]
version = 5.6.0
-edition = INSTALLATION_PLACEHOLDER_GUI_EDITION
+edition = CE
devEnv=0
于 2012-01-10T10:03:01.103 回答
0

这是 Zend 的默认错误消息,这意味着您正在运行的 php 脚本中有一些错误。默认情况下,Zend 中的 php.ini 文件配置为报告错误,但没有具体说明发生了什么错误,这使得这种情况难以诊断。我的建议是,如果您将此服务器用于调试目的,请转到 Zend php.ini 文件(通常为 C:\Program Files\Zend\ZendServer\etc)并搜索“display_errors”并将其默认值从“Off”更改为”到“开”。这将允许您查看 PHP 遇到的特定错误,而不是获取一般的 Zend 错误消息。

于 2011-07-29T00:35:44.603 回答