64位Apache+PHP+MySQL配置

來源:互聯網
上載者:User
文章目錄
  • 軟體下載
  • 安裝Apache 64位
  • 安裝PHP 64位

簡介:這是64位Apache+PHP+MySQL配置的詳細頁面,介紹了和php,有關的知識、技巧、經驗,和一些php源碼等。

class='pingjiaF' frameborder='0' src='http://biancheng.dnbcw.info/pingjia.php?id=330427' scrolling='no'>

軟體下載

目前,Apache和PHP均未出現官方的64位版本。

Apache 64位:

http://www.blackdot.be/?inc=apache/binaries

PHP 64位:

http://www.ubv.cn/custom/file_download/php-5.2.5-x64-2007-11-12.zip

MySQL 64位:

http://dev.mysql.com/downloads/mysql/

安裝Apache 64位

1. 解壓

將下載的httpd-2.2.17-win64.rar壓縮包解壓到某一目錄下,如D:\Apache2.2

2. 編輯設定檔D:\Apache2.2\conf\httpd.conf作如下修改【注意路徑中必須使用左斜杠】:

ServerRoot "/httpd-2.2-x64" 改為

ServerRoot "D:/Apache2.2"

Listen 80 改為

Listen 8080 # 連接埠,若已開啟IIS,則80連接埠就不能使用了

DocumentRoot "/httpd-2.2-x64/htdocs" 改為

DocumentRoot "D:/Apache2.2/htdocs" # 放置網站檔案的路徑

DirectoryIndex index.html 改為

DirectoryIndex index.html index.htm index.php # 加入index.php,PHP的預設頁

ScriptAlias /cgi-bin/ "/httpd-2.2-x64/cgi-bin/" 改為

ScriptAlias /cgi-bin/ "D:/Apache2.2/cgi-bin/"

<Directory "/httpd-2.2-x64/htdocs">改為

<Directory "D:/Apache2.2/htdocs">

<Directory "/httpd-2.2-x64/cgi-bin">改為

<Directory "D:/Apache2.2/cgi-bin">

將LoadModule rewrite_module modules/mod_rewrite.so前的#去掉

將include /_httpd/test.conf一行去掉

3. 執行安裝命令:

進入D:\Apache2.2\bin

執行命令:httpd.exe -k install(將apache加入系統服務,預設服務名是Apache2.2)

執行命令:httpd.exe -k start(運行服務)

以後可以使用D:\Apache2.2\bin\ApacheMonitor.exe進行服務的開啟、關閉、重啟與監控等操作

4. 測試安裝是否成功

開啟瀏覽器,輸入:http://localhost:8080,顯示 It Works! 說明成功!

安裝PHP 64位

1. 將下載的php安裝包php-5.2.5-x64-2007-11-12.zip中的php-5.2.5 (x64)檔案夾複製到某一路徑下,如D:\PHP

2. 修改設定檔D:\Apache2.2\conf\httpd.conf

在#LoadModule vhost_alias_module modules/mod_vhost_alias.so一行下加上:

LoadModule php5_module "D:/PHP/php5apache2_2.dll"

PHPIniDir "D:/PHP"

在AddType application/x-gzip .gz .tgz下加上:

AddType application/x-httpd-php .php

AddType application/x-httpd-php .html # .html, .php為可執行php語言的副檔名

3. 將如下檔案複製到C:\Windows\System32下

D:\PHP\php5ts.dll
D:\PHP\php5isapi.dll
D:\PHP\php5apache2_2.dll
D:\PHP\ext\php_mysql.dll
D:\PHP\ext\php_mysqli.dll
D:\PHP\libmysql.dll

4. 將D:\PHP\php.ini-recommended複製為D:\PHP\php.ini,並作如下修改

修改extension_dir = "./"為

extension_dir = "ext" # 指定動態串連庫的目錄

將extension=php_mysql.dll前的分號(注釋)去掉

5. 測試是否安裝成功

修改D:\Apache2.2\htdocs\index.html檔案,加入:<?php echo phpinfo(); ?>

重啟httpd服務輸入網址:http://loalhost:8080 ,看到php資訊,說明成功!

安裝MySQL64位

不再贅述

安裝PhpMyAdmin

<!--EndFragment-->

“64位Apache+PHP+MySQL配置”的更多相關文章 》

愛J2EE關注Java邁克爾傑克遜視頻站JSON線上工具

http://biancheng.dnbcw.info/php/330427.html pageNo:11

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.