I followed this site -> https://www.box.com/blog/how-to-debug-php-with-vim-and-xdebug-on-linux/
but I'm not having much luck. I followed the firections and my phpinfo() functions is showing that xdebug is up and running but I see don evidence of xdebug from within vim. I typed in my localhost url, localhost/mysite.php?XDEBUG_SESSION_START=1 and then wen to vim and pressed f5 but that didn't seem to have an effect at all. When I run cat /var/log/apache/error.log
I get no errors showing.
And here are my xdebug setting in my /etc/php5/apache/php.ini file
;My Modules
[bash][Zend] zend_extension = /usr/lib/php5/20121212/xdebug.so xdebug.remote_enable = 1
xdebug.remote_port = 9000 xdebug.remote_host = localhost [/bash]
Any ideas? Thanks.