I am using a PHP shopping cart which requires me to use Zend Optimizer.

I am using Netbeans as the IDE, and it requires Xdebug, but that's incompatible with Zend.

These are the lines in my php.ini

zend_extension_ts =
"D:\xampp\php\zendOptimizer\lib\ZendExtensionManager.dll"
zend_extension_manager.optimizer_ts =
"D:\xampp\php\zendOptimizer\lib\Optimizer"

;zend_extension_ts="./php/ext/php_xdebug-2.0.5-5.2.dll"   **<< Xdebug**

Whenever I enable Xdebug, my shopping cart gives an error and it does not work.

Is there a way to solve this issue or use another Debugger with Netbeans?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

AFAIK you cannot use them side by side. You can choose not to specify the debugger in NetBeans and do the old-fashion print_r-style debugging.

link|improve this answer
This is my understanding as well. I don't really see why one would need Zend Optimizer for a shopping cart, esp. when there are many alternatives I imagine – Jani Hartikainen Jul 11 '09 at 13:16
I think he's using ViArt: viart.com/… – KahWee Teng Jul 11 '09 at 13:23
I have switched my IDE. Not using Netbeans anymore , sadly :( – Ibn Saeed Jul 11 '09 at 14:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.