yes i just solved this problem yesterday...
first, comment out the old extension line in php.ini
turn off you zend stuff.. (this may or may not be totally necessary)
[Zend]
;zend_extension_ts = "\xampplite\php\zendOptimizer\lib\ZendExtensionManager.dll"
;zend_extension_manager.optimizer_ts = "\xampplite\php\zendOptimizer\lib\Optimizer"
;zend_optimizer.enable_loader = 0
;zend_optimizer.optimization_level=15
;zend_optimizer.license_path = |
then, add the following code IN THIS ORDER.
zend_extension_ts = "C:\xampplite\htdocs\brevauto\ioncube\ioncube_loader_win_5.2.dll"
[debugger]
zend_extension_ts="C:\xampplite\php\ext\php_dbg.dll"
debugger.enabled=on
debugger.JIT_enabled=On
debugger.profiler_enabled=on
debugger.enable_session_cookie=On |
make sure that you load the ioncube dll before loading the debugger dll. that should do it.
i just noticed that you are using *NIX, so just chage the .DLLs with .SOs
- mark