phpstorm调试XDebug 超时问题
phpstorm+xdebug+apache 调试代码时,一分钟就超时处理:
修改配置文件:
1.php.ini 设置xdebug, 增加
xdebug.remote_cookie_expire_time = 3600
max_execution_time=3600
max_input_time=3600
default_socket_timeout = 3600
2.在apache配置文件httpd.conf增加
Timeout 3600
FcgidIOTimeout 3600
FcgidIdleTimeout 3600
IPCConnectTimeout 3600
IPCCommTimeout 3600