Привет. Локальный, найтивный apache, php56 (via brew installed), iMac.
Xdebug не хочет работать.
php.ini[xdebug]
zend_extension="/usr/local/Cellar/php56-xdebug/2.4.0/xdebug.so"
xdebug.default_enable = 1
xdebug.remote_autostart = 0
xdebug.remote_enable=1
xdebug.remote_handler="dbgp"
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9001
xdebug.remote_mode=req
xdebug.idekey="PHPSTORM"
xdebug.coverage_enable=1
xdebug.profiler_enable=1
xdebug.profiler_output_dir = "/tmp/xdebug/"
phpinfo() говорит что он есть
vhosts config
<VirtualHost *:80>
DocumentRoot "/Users/greg/Sites"
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
ServerName technostar.dev
ServerAlias www.technostar.dev
DocumentRoot "/Users/greg/Sites/technostar/"
ErrorLog "/private/var/log/apache2/technostar.dev-error_log"
CustomLog "/private/var/log/apache2/technostar.dev-access_log" common
<Directory "/Users/greg/Sites/technostar/">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Настройки на PhpStorm:
Отвечает после попытки остановить на брейкпоинте:
Объясните мне, идиоту, что здесь я сделал не так? Заранее спасибо.