来源科技qeephp的apmxe集成环境中xdebug的安装
程序员文章站
2022-04-19 20:46:37
...
起源科技qeephp的apmxe集成环境中xdebug的安装
经过一个上午的折腾,发现xdebug和xcache冲突。(具体xdebug参见网上教程)
修改php.ini和php.template
把debug配置放到xcache下面就可以了。
比如:
[xcache] zend_extension_ts = %APMXE%\php5\ext\php_xcache.dll [xcache.admin] xcache.admin.enable_auth = On xcache.admin.user = "root" ; xcache.admin.pass = md5($您的密码) xcache.admin.pass = "30e894a25962c63f926a1a4cfa2cb8d5" [xcache] xcache.shm_scheme = "mmap" xcache.size = 64M xcache.count = 1 xcache.slots = 8K xcache.ttl = 0 xcache.gc_interval = 0 xcache.var_size = 32M xcache.var_count = 1 xcache.var_slots = 8K xcache.var_ttl = 0 xcache.var_maxttl = 0 xcache.var_gc_interval = 300 xcache.cacher = On xcache.stat = On xcache.optimizer = Off [xdebug] zend_extension_ts= %APMXE%\php5\ext\php_xdebug-2.0.4-5.2.8.dll xdebug.auto_trace=1 xdebug.collect_params=1 xdebug.collect_return=1 xdebug.trace_output_dir="%APMXE%\htdocs\xdebug\trace" xdebug.profiler_enable=1 xdebug.profiler_output_dir="%APMXE%\htdocs\xdebug\profiler" xdebug.remote_enable=1
?
?
相关文章
相关视频
- 详解win10下PHP的安装配置(以php5.6为...
- php Swoole实现毫秒定时计划任务(详解)
- 一文详解Windows和Linux环境下怎么安装配...
- 【DTM】PHP协程客户端v0.1 beta版本发...
- 来源科技qeephp的apmxe集成环境中xde...
上一篇: c#读取文件写文件