安裝xampp過程

2021-06-21 13:41:49 字數 985 閱讀 4276

安裝完畢後,要對檔案進行配置,配置如下:

1、在php.ini檔案中,寫入:

; windows: "\path1;\path2"

include_path = "\xampp\php\includes"

warning: mysqli_connect(): (hy000/1045): access denied for user 'root'@'localhost' (using password: yes) in d:\xampp\php\includes\myfun2.php on line 17

error access denied for user 'root'@'localhost' (using password: yes)

上面的錯誤是因為在資料庫中,沒有配置root密碼,所以沒有許可權讀取資料庫

3、在d:\xampp\phpmyadmin下,配置config.inc.php檔案

$cfg['servers'][$i]['auth_type'] = 'config';把這句中的config改為cookie
$cfg['servers'][$i]['password'] = '這裡是你的密碼';

$cfg['servers'][$i]['allownopassword'] = true;把這裡的true換成false這樣在進入資料庫的時候,必須要有密碼才行

4、

fatal error: call to undefined function oci_connect() in d:\xampp\php\includes\myfun2.php on line 19
extension=php_oci8_11g.dll  ; use with oracle 11gr2 instant client把前面的#號去掉

XAMPP安裝過程

方法 a 使用安裝包進行安裝 使用安裝包來安裝 xampp 是最簡單的方法。xampp win32 的安裝嚮導 安裝過程結束後,您會在 開始 程式 xampp 選單下找到 xampp。您可以使用 xampp 控制面板來啟動 停止所有服務或安裝 解除安裝所有服務。xampp 控制面板能啟動 停止 ap...

xampp安裝事項

xampp中apache啟動失效問題 在windows上使用xampp搭建php的開發環境,後來又安裝了oracle 10g。你會發現,由於oracle 10g 建立了 perl5lib 的環境變數路徑,從而導致xampp啟動apache的時候報錯 thu oct 22 08 56 27 2009 ...

XAMPP安裝指南

按照預設選項,依次安裝 去掉不必要的選項 選擇安裝路徑 顯示下圖說明已經成功安裝完成了。開啟xampp,啟動 apache 服務 如果顯示apache服務無法啟動,有如下錯誤 這是由於埠占用造成的,本機在啟動apache服務的時候出現 443埠被占用的問題 解決方法 點選config按鈕,選擇如圖藍...