[ Lacke @ 06.10.2014. 16:04 ] @
Instalirao sam XDebug za symfony2.

Sledece sto sam uradio je bilo edit php->php.ini sa:

Code:
zend_extension = "c:/wamp/bin/php/php5.5.12/ext/php_xdebug-2.2.5-5.5-vc11-x86_64.dll"
;
[xdebug]
xdebug.remote_enable = off
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.ou


Kao i edit apache->php.ini:

Code:
zend_extension = "c:/wamp/bin/php/php5.5.12/ext/php_xdebug-2.2.5-5.5-vc11-x86_64.dll"
;
[xdebug]
xdebug.remote_enable = on
xdebug.remote_handler = dbgp
xdebug.remote_host = 127.0.0.1
xdebug.remote_port = 9000
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "c:/wamp/tmp"
xdebug.max_nesting_level = 10000


Moja run configuration je:
Project URL: http://localhost/testing/web/app_dev.php
Debug URL: Ask Every Time

Path mapping:
Server path: C:/wamp/www/testing
Project path: C:\wamp\www\Testing\src\Acme\LogInSystemBundle

Moj problem je kada ja pokrenem debug, on se zaustavi na breakpoint i dalje klikom na debug dugmad se nista ne desava iako su ona dostupna. Kako da resim taj problem? Hvala unapred!
[ duskooo @ 09.10.2014. 12:04 ] @
Nastavak izvrsavanja skripte se zadaje komandama Continue ili Step.
Nisi naveo koji IDE (editor) koristis.
[ Lacke @ 09.10.2014. 12:28 ] @
Koristim NetBeans, Wamp server na Windows 7 operativnom sistemu. Mozda je najveci problem upravo to sto koristim Windows 7...
[ duskooo @ 09.10.2014. 15:01 ] @
Obrati paznju da li koristis odgovarajucu kombinaciju PHP-a i xdebug-a: verziju xdebug biblioteke biras prema verziji PHP interpretera koju koristis.
Citat:
The Windows binaries generally work for every mini release for the mentioned PHP version, although the extension is built against the most current PHP version at that time. The VCx marker tells with which compiler the extension was built, and Non-thread-safe whether ZTS was disabled. Those qualifiers need to match the PHP version you're using. If you don't know which one you need, please refer to the custom installation instructions.


[ Lacke @ 09.10.2014. 16:47 ] @
Koristio sam to, ubacio u njega sve iz phpinfO() i vratio rezultate za koracima koje trebam uraditi kako bih pravilno instalirao i podesio XDebug... Hvala u svakom slucaju!
[ Lacke @ 10.11.2014. 15:42 ] @
Any suggestion? :)