Comments on Installing PHP5 Debugger On OpenSUSE 11.3

Installing PHP5 Debugger On OpenSUSE 11.3 This tutorial shows how to install php5 debugger (xdebug) on OpenSUSE 11.3.The reason I use xdebug is, as far as I know now, xdebug supports php 5.3 or above.

3 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: Luis Dillon

You might need to install autoconf in case you get this error message when you run phpize:

PHP Api Version:         20041225
Zend Module Api No:      20060613
Zend Extension Api No:   220060519
Cannot find autoconf. Please check your autoconf installation and the
$PHP_AUTOCONF environment variable. Then, rerun this script.

To install it just  "zypper install autoconf"

By: Anonymous

Alternatively you can install xdebug from the openSUSE repositories to avoid having to build it yourself, and to allow updating it when a new version is available.

1. Add the PHP extensions repo

zypper ar http://download.opensuse.org/repositories/server:/php:/extensions/openSUSE_11.3/ PHP_extensions

2. Refresh the repo cache, and accept the repo signing key

zypper ref

3. Install xdebug

zypper in php5-xdebug

By: kajal

Thanks for this great tips... I did the same installation procedure in opensuse11.1 with php5.2 . I have netbeans installed and  xdebug is working good. Thanks.