Aptana Studio 3.4.0 + MAMP でPHPのxdebugを有効化する時の注意点

1.phpinfoでphp.iniのパスを確認する。
2.zend_extensionを有効化する。
3.以下を追加する。
xdebug.profiler_enable = On
xdebug.profiler_output_dir = “/Applications/MAMP/tmp”
xdebug.profiler_output_name = “cachegrind.out.%t-%s”
xdebug.remote_enable = On
xdebug.remote_handler = “dbgp”
xdebug.remote_host = “localhost”
xdebug.remote_port = 9000
4.Aptanaの設定でAptana Studio→エディター→PHP→デバッグのXDebugの構成を以下のように変更する。
デバッグ・ポート 9003→9000

Comments are closed.