二:啟動服務:
1.確定 apache中的service與mysql是否啟動了;預設埠為80
2.改apache埠:在apache中選中httpd.conf,修改listen與servername附近的80前面在加乙個80
修改成
options followsymlinks還有allowoverride none
order deny,allow
# deny fromall
allow fromall
#允許所有訪問
satisfy all
"d:/wamp5/www">#修改成# possible values for the options directive are "none", "all",
# or any combination of:
# indexes includes followsymlinks symlinksifownermatch execcgi multiviews
## note that "multiviews" must be named *explicitly* --- "options all"# doesn't give it to you.
# # the options directive isboth complicated and important. please see
# # formore information.
#options indexes followsymlinks
## allowoverride controls what directives may be placed in.htaccess files.
# it can be "all", "none", or any combination of the keywords:
# options fileinfo authconfig limit
#allowoverride all
## controls who can get stuff from thisserver.
## onlineoffline tag - don't remove
order deny,allow
deny fromall
allow from 127.0.0.1
"d:/wamp5/www">#然後儲存,重啟服務,在訪問就解決了這個問題。# possible values for the options directive are "none", "all",
# or any combination of:
# indexes includes followsymlinks symlinksifownermatch execcgi multiviews
## note that "multiviews" must be named *explicitly* --- "options all"# doesn't give it to you.
# # the options directive isboth complicated and important. please see
# # formore information.
#options indexes followsymlinks
## allowoverride controls what directives may be placed in.htaccess files.
# it can be "all", "none", or any combination of the keywords:
# options fileinfo authconfig limit
#allowoverride all
## controls who can get stuff from thisserver.
## onlineoffline tag - don't remove
order deny,allow
# deny fromall
# allow from 127.0.0.1allow fromall
3.點選restart all services重新啟動一下伺服器圖示變為綠色為登入伺服器成功
三:判斷服務是否可用:
1.找到根目錄下的安裝環境進入www資料夾,進入index.php,執行在瀏覽器中檢視localhost後面加:8080如果出現以下介面說明登入成功
2.如果不可用點選設定來設定站點與伺服器
四:裝介面:
1.登入到sql命令列
點選mysql裡面的mysql console
2.進入mysql console裡面按回車
3.用sql來修改密碼:在一行上寫use mysql然後回車,出現database changed說明登入成功了
4.在寫入update mysql.user set password=password(123) where user='root';然後回車出現ok後關閉
5.重新開啟mysql console輸入括號裡面的密碼123就可以了
6.開啟sql資料庫建立連線重新啟動restart all services完成。
php建立Ftp連線的方法
今天看了下ftp函式,總結一下 ftp相關函式 ftp connect host,part,timeout 建立新的ftp連線,host是要連線的伺服器,part是埠,預設21,timeout是網路連線超時時間 ftp login con,user,password 登陸ftp,con是上行建立的f...
php建立陣列的幾種方法
第1種格式 陣列名稱 array 值 值 值 此種格式沒有指定陣列內元素的鍵,php 會自動以數字的形式建立鍵,從 0 開始,依次累加。呼叫陣列的格式 陣列名稱 數字型鍵 arr array a b c echo arr 1 輸出 第2種格式 陣列名稱 值 陣列名稱 值 陣列名稱 值 此種格式同樣沒...
php學習記錄五 原生php建立公用方法
對於一些多個頁面都會用到的方法,可以單獨分離出來,使用require 引入,php會根據先後順序執行 例如,我要分離乙個獲取引數的方法 1 新建乙個存放公共文方法的檔案 2 寫入乙個獲取引數的方法 判斷引數是否為空2 function var is null2 method,n,able 1 if ...