0

I am New to phpdbg. I am trying to install phpdbg using following steps: which is mentioned on site phpdbg

cd /usr/src/php-src/sapi
git clone https://github.com/krakjoe/phpdbg
cd ../
./buildconf --force
./config.nice
make -j8
make install-phpdbg

on the fourth steps i.e. when I try to do :

bash: ./buildconf: No such file or directory

From where I have to run this command.

Ganesh Patil
  • 670
  • 1
  • 5
  • 22

1 Answers1

0

If you're using PHP 5.5 and homebrew, do this...

brew install php55 --with-phpdbg

I think it's also supposed to work for PHP 5.4 and PHP 5.6 (may be on by default).

Kevin G.
  • 585
  • 3
  • 5