You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
執行 xampp 的安裝檔,依預設值安裝,一路 OK 或 NEXT. 唯有安裝路徑,如因C槽太小,可改至其他槽。
如 XAMPP, Apache, MySQL 要求通過防火牆,請允許。
啟動XAMPP Control Panel
安裝完XAMPP, 會自動啟動 XAMPP Control Panel, 如果沒有,請手動啟動 C:\xampp\xampp-control.exe
XAMPP Control Panel 正確啟動如上圖,若出現紅字,表示有錯誤,我們需要解決它。例如,下圖的紅字訊息顯示:Skype.exe占用了80和443port。Apache需要80和443port。MySQL需要3306port。請不要讓其他程式占用這些port。
設定與啟動 Apache
XAMPP Control Panel 正確啟動後,我們接著設定Apache。
在 XAMPP Control Panel 上,按下Apache對應的Config按鈕,選擇 httpd.conf ( 或者用你喜歡的文字編輯器修改C:\xampp\apache\conf\httpd.conf ),加入字串ServerName <IP or DNS name>:80,如下圖。(請自行取得網域或固定IP)
在 XAMPP Control Panel 上,按下Apache對應的Start按鈕,啟動Apache。
在 XAMPP Control Panel 上,按下Apache對應的Admin按鈕,會啟動瀏覽器顯示XAMPP的首頁或者可以在瀏覽器輸入http://localhost/index.php。如下圖。(可將網址列中的localhost改為並瀏覽,以確認httpd.conf有正確設定。)
啟動 MySQL,並用phpMyAdmin設定之
在XAMPP Control Panel 上,按下MySQL對應的Start按鈕,啟動MySQL。
在XAMPP Control Panel 上,按下MySQL對應的Admin按鈕,會啟動瀏覽器顯示phpMyAdmin的管理頁。(或輸入網址http://localhost/phpmyadmin/ ) 如下圖。
本文使用 XAMPP 7.2.6 安裝,下文提到的 MySQL 資料庫,皆指 MariaDB.
下載與安裝
啟動XAMPP Control Panel
C:\xampp\xampp-control.exe
設定與啟動 Apache
C:\xampp\apache\conf\httpd.conf
),加入字串ServerName <IP or DNS name>:80
,如下圖。(請自行取得網域或固定IP)http://localhost/index.php
。如下圖。(可將網址列中的localhost改為並瀏覽,以確認httpd.conf
有正確設定。)啟動 MySQL,並用phpMyAdmin設定之
http://localhost/phpmyadmin/
) 如下圖。root
設定密碼。 選擇 [使用者帳號] 分頁 > 帳號 root 主機名稱 localhost > [編輯權限]。如下圖。C:\xampp\phpMyAdmin\config.inc.php
依下述步驟修改。參見下圖。$cfg['Servers'][$i]['auth_type'] = 'config';
改為$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['password'] = '';
刪去。$cfg['Servers'][$i]['AllowNoPassword'] = true;
改為$cfg['Servers'][$i]['AllowNoPassword'] = false;
http://localhost/phpmyadmin/
)。輸入 root 的帳密,登入。(root 的密碼是先前我們[修改密碼]那步驟所設定的)The text was updated successfully, but these errors were encountered: