0

I recently installed Xdebug on my server with the intention of using it for code profiling. It seems to be installed correctly, and phpinfo lists the following:

xdebug.profiler_enable       On                       On  
xdebug.profiler_enable_trigger Off                    Off  
xdebug.profiler_output_dir   /var/www/vhosts/xdebug   /var/www/vhosts/xdebug  
xdebug.profiler_output_name cachegrind.out.%p        cachegrind.out.%p

However, I can't figure out for the life of me why no cachgrinds are being created when I run the PHP scripts.

Is there something I'm missing, or understanding incorrectly?

2 Answers2

1

i think is too late to give an answer.

I installed xdebug using pecl, i had just activated it in /etc/php5/apache2/php.ini by adding

extension=xdebug.so
xdebug.default_enable=1; in my setting, i set this parameter to 0
xdebug.scream=1
xdebug.profiler_enable=1 ; this activate the profiler by default. 
;You can put it off (0), but should activate it by triggring.
xdebug.profiler_enable_trigger=1
; if you do like this, you need to call your script by adding XDEBUG_PROFILE=1 
;to your url for example: http://mytest/test.php?XDEBUG_PROFILE=1

you should restart your webserver and call a php page from you navigator. The output by default will be created in /tmp.

Hope this help.

LotfiK
  • 41
  • 7
1

Try removing the options

xdebug.profiler_enable_trigger Off                    Off  
xdebug.profiler_output_dir   /var/www/vhosts/xdebug   /var/www/vhosts/xdebug  
xdebug.profiler_output_name cachegrind.out.%p        cachegrind.out.%p

The first is a default anyway, so it's redundant. Removing the other 2 will allow you to figure out it the problem is with those options, or something else.

Restart Apache, hit a php page and see if any output is generated in /tmp. this is the default location for output logs.

If there is something generated, then you can be fairly certain it is a permissions issue with your output directory.

Check the owner of the file generated in /tmp and be sure that user has write permissions on /var/www/vhosts/xdebug (from your original config) and re-add the options you had initially.

LukeR
  • 3,126
  • 2
  • 30
  • 25