Download xampp and follow its installation instructions for installation: http://www.apachefriends.org/zh_cn/xampp-windows.html, (current version 1.7.7 ).
Download the latest version of Drupal,: http://drupal.org/download, (current version 7.12 ).
Download the Eclipse classic edition: http://www.eclipse.org/downloads/ (current version of Indigo 3.7 ). In the classic version, there is no built-in Marketplace, and you need to add it yourself (the add method will be added next time ).
Decompress drupal to D: \ xampp \ htdocs \ drupal.
Add the apache Host Header, modify the D: \ xampp \ apache \ conf \ extra \ httpd-vhosts.conf file, and add the following lines of code:
<VirtualHost *: 80>
DocumentRoot "D:/xampp/htdocs/drupal"
ServerName drupal
</VirtualHost>
Access http: // drupal to install drupal. Create a database before installation.
Enable the xdebug debugger and modify php. ini. Restart apache after modification:
Zend_extension = "\ xampp \ php \ ext \ php_xdebug.dll"
Xdebug. remote_enable = 1
Set the php debugger of eclipse to xdebug.
Open preference of eclipse, find php content type in content type, and add *. info, *. module, *. install.
Author: ChenHaiping's blog