在Windows 7中安裝Drupal 7的開發環境

  1. 下載xampp並參照其安裝說明進行安裝,下載地址:http://www.apachefriends.org/zh_cn/xampp-windows.html, (目前版本1.7.7)。
  2. 下載最新版的Drupal,下載地址:http://drupal.org/download ,(目前版本7.12)。
  3. 下載Eclipse經典版本,下載地址:http://www.eclipse.org/downloads/,(目前版本Indigo 3.7.2)。安裝PDT SDK。打開Preference->General->Workspace->Text file encoding改成UTF-8。
  4. 解壓drupal到D:\xampp\htdocs\drupal。
  5. 增長apache主機頭,修改D:\xampp\apache\conf\extra\httpd-vhosts.conf文件,增長如下幾行代碼:
    1. <VirtualHost *:80>
    2.    DocumentRoot "D:/xampp/htdocs/drupal"
    3.    ServerName drupal
    4. </VirtualHost>
  6. 訪問http://drupal安裝drupal,安裝以前先建一個數據庫。
  7. 啓用xdebug調試器,修改php.ini,改完以後須要重啓apache:
    1. zend_extension = "\xampp\php\ext\php_xdebug.dll"
    2. xdebug.remote_enable = 1
  8. 設置eclipse的php調試器爲xdebug。
  9. 打開eclipse的preference,找到content type裏的php content type,增長*.info,*.module,*.install。
相關文章
相關標籤/搜索