Phpjavassexdebugdevelopment environment build 1.download javasse-php-helios-sr2-win32-x86_64.zip 3. download php5.34. download xdebug5. download apache26. configure php. ini php eclipse xdebug development environment build
1. download jdk
2. download eclipse-php-helios-SR2-win32-x86_64.zip
3. download php5.3
4. download xdebug
5. download apache2
6. configure php. ini
Add the following section
; Load Xdebugzend_extension = "D:/php-5.3.16-Win32-VC9-x86/ext/php_xdebug-2.2.1-5.3-vc9.dll"; xdebug configuration [Xdebug]; enable automatic tracking xdebug. auto_trace = On; enable exception tracking xdebug. show_exception_trace = On; enable remote debugging to automatically start xdebug. remote_autostart = On; enable remote debugging xdebug. remote_enable = true; collect the variable xdebug. collect_vars = On; collect the returned value xdebug. collect_return = On; collect the xdebug parameter. collect_params = On
7. configure apache
LoadModule php5_module "D:/php-5.3.16-Win32-VC9-x86/php5apache2_2.dll"AddType application/x-httpd-php .phpPHPIniDir "D:/php-5.3.2-Win32-VC9-x86"
?
Change the 8 root directory to a workspace or add a virtual directory.
#DocumentRoot "D:/Program Files/Apache Software Foundation/Apache2.2/htdocs"DocumentRoot "E:/workspace/php/demo"
? Or configure
# Virtual directory node
# Set DirectoryIndex on the welcome page. php index.html index.htm Alias/php "E:/workspace/php/demo" # "/php" is a virtual path, "E: /workspace/php/demo "is the physical path of your project;
# Set Order allow and deny Allow from all for access permissions
?
So far.
?
?