IIS 環境下配置PHP5+MySql+PHPMyAdmin

來源:互聯網
上載者:User

首先說明一下配置環境:
作業系統:windows 2003 standard sp2
PHP版本:5.2.5
MySql版本:5
PHPMyAdmin:2.11.6
一、首先配置IIS,添加新的伺服器擴充

輸入phpisapi.dll檔案的路徑,設定擴充狀態為允許:

二、設定網站屬性,主目錄為php網站所在的檔案夾


輸入phpisapi.dll檔案的路徑,注意有些php網站需要把“確認檔案是否存在”這個選項去掉的,副檔名寫.php:

現在php已經可以在iis中運行了。寫一個php測試檔案1.php,內容如下:
<?
phpinfo();
?>
在瀏覽器中開啟這個頁面,

三、配置MySql,首先寫一個mysql的設定檔,在這裡我的設定檔為my.ini,檔案中的注釋已經很清楚了,在這裡就不多說了。

四、安裝mysql服務,切換到mysql\bin目錄,執行如下命令,安裝並啟動mysql服務,注意my.ini設定檔的路徑要寫準確

五、接下來,配置php5支援mysql,首先修改php檔案夾下的php.ini-dist檔案,修改為php.ini,用記事本開啟,找到mysql選項,把前面的;去掉

然後複製php\ext檔案夾下的php_mysql.dll和php檔案夾下的libmysql.dll複製到c:\windows\system32檔案夾:

再開啟我們的測試頁面,這個時候,應該能看到如下所示,表示已經啟用mysql:

六、最後配置phpmyadmin,複製phpmyadmin到網站根目錄,修改phpmyadmin的config.inc.php檔案,注意紅色注釋的內容
$cfg['Servers'][$i]['host'] = 'localhost'; // Mysql伺服器名或ip地址
$cfg['Servers'][$i]['port'] = ''; // MySQL 服務連接埠,這裡留空表示使用預設連接埠
$cfg['Servers'][$i]['socket'] = ''; // Path to the socket - leave blank for default socket
$cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfg['Servers'][$i]['extension'] = 'mysql'; // mysql擴充
$cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection
$cfg['Servers'][$i]['controluser'] = ''; // MySQL control user settings
// (this user must have read-only
$cfg['Servers'][$i]['controlpass'] = ''; // access to the "mysql/user"
// and "mysql/db" tables).
// The controluser is also
// used for all relational
// features (pmadb)
$cfg['Servers'][$i]['auth_type'] = 'config'; // 身分識別驗證方式(config, http or cookie based)
$cfg['Servers'][$i]['user'] = 'root'; // 使用者名稱,這裡使用root
$cfg['Servers'][$i]['password'] = ''; // 密碼,第一次使用,也留空,以後更改mysql的root密碼以後,再修改

儲存以後,如果能夠用瀏覽器開啟下面的頁面,就可以使用phpmyadmin管理mysql了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.