Home  >  Article  >  Backend Development  >  来源科技qeephp的apmxe集成环境中xdebug的安装

来源科技qeephp的apmxe集成环境中xdebug的安装

WBOY
WBOYOriginal
2016-06-13 11:01:351085browse

起源科技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 = Onxcache.admin.user = "root"; xcache.admin.pass = md5($您的密码)xcache.admin.pass = "30e894a25962c63f926a1a4cfa2cb8d5"[xcache]xcache.shm_scheme =        "mmap"xcache.size  =               64Mxcache.count =                 1xcache.slots =                8Kxcache.ttl   =                 0xcache.gc_interval =           0xcache.var_size  =           32Mxcache.var_count =             1xcache.var_slots =            8Kxcache.var_ttl   =             0xcache.var_maxttl   =          0xcache.var_gc_interval =     300xcache.cacher =               Onxcache.stat   =               Onxcache.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

?

?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn