zend studio 5.5.1 debug 无法建立连接 问题的解决方案
时间:2011-04-04 来源:赶时间
1.首先,我系统是win7,win7安装完zs无法运行,请在属性里参照下图修改设置:
2.调试如果出现,类似于下图。无法建立连接的问题:
那么请检查如下设置:
首先是确保安装了ZendDebugger,并且配置了php.ini:
其次请检查IDE中首选项设置,如图:
再者,请检查[项目属性],这里的设置和首选项设置里的要一致!如图:
最后,再检查htdocs站点虚拟目录,根目录下是否有假文件dummy.php。如果没有请手动创建,内容复制如下:
<?php
@ini_set('zend_monitor.enable', 0);
if(@function_exists('output_cache_disable')) {
@output_cache_disable();
}
if(isset($_GET['debugger_connect']) && $_GET['debugger_connect'] == 1) {
if(function_exists('debugger_connect')) {
debugger_connect();
exit();
} else {
echo "No connector is installed.";
}
}
?>
相关阅读 更多 +