How to install Zend Debugger 5.3.x on Fedora 13
- Download the latest Zend Debugger source files
- Visit the Zend Studio Downloads page
http://www.zend.com/en/products/studio/downloads
- Click the (TAR.GZ) 2.79MB link for the Studio Web Debugger v5.2.26 (64 bit)
- Login or Register for an account and the download should start imediately
- Extract the Zend Debugger download
- Copy the module file into the php modules directory
cp ZendDebugger-*-linux-glibc23-x86_64/5_3_x_comp/ZendDebugger.so /usr/lib64/php/modules
- Copy the dummy.php file to your http root
cp ZendDebugger-*-linux-glibc23-x86_64/dummy.php /var/www/html
- Create the /etc/php.d/ZendDebugger.ini PHP configuration file with the following content
; Enable Zend Debugger extension module
zend_extension=/usr/lib64/php/modules/ZendDebugger.so
[zend_debugger]
zend_debugger.allow_hosts = 127.0.0.1
zend_debugger.expose_remotely = always
- Restart Apache
service httpd restart
How to test the Zend Debugger 5.3.x on Fedora 13
- Visit localhost/phpinfo in your local web browser
- Search for the following text
with Zend Debugger
NOTE: If the text cannot be found, the Zend Debugger has not been installed correctly.
How to configure Zend Debugger 5.3.x in Eclipse PDT 2.2
- Open Eclipse
- Select the Window > Preferences menu option
- Select the PHP > Debug > Installed Debuggers left menu option
- Select the Zend Debugger debugger
- Click the Configure button
- Set the Client Host/IP field to 127.0.0.1
- Click the OK button
- Click the OK button