その中で、PHPのデバックがうまく行かなかったので、自分のメモとして残しておきます。
- xdebugの導入
- /opt/lampp/etc/php.ini に設定すべきこと
つまり、ローカルを127.0.0.1でアクセスする場合は127.0.0.1と、localhostでアクセスする場合はlocalhostを記述する。結局のところここが間違っていてデバックができなかった。
皆さん気をつけましょう。
[Xdebug]
zend_extension="/opt/lampp/lib/php/extensions/no-debug-non-zts-20090626/xdebug.so"
xdebug.remote_enable=true
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir="/tmp"
xdebug.remote_log="/opt/lampp/logs/xdebug.log"
xdebug.manual_url="http://jp2.php.net"
xdebug.collect_params=true
xdebug.dump.GET=*
xdebug.dump.POST=*
0 コメント:
コメントを投稿