您好,登錄后才能下訂單哦!
從php5.4升級到5.6遇到的問題
安裝 php5.6.33 和Apache2.4 都是window 64位
php直接取官網下載
這是apache2.4的下載
http://www.apachelounge.com/download/
升級中遇到的問題 如下:
安裝Apache 時 在Apache 的bin目錄下 shift+鼠標右鍵 “在此處打開命令窗口”
運行 “httpd -t” 用于檢查Apache 配置是否有錯誤 結果出現了如下錯誤:
“Could not reliably determine the server's fully qualified domain ”
這是沒有設置服務器名稱 解決方法:
在httpd.conf 添加
ServerName localhost:80
基于多域名的主機配置
首先在httpd.conf 開啟 virtual host
<VirtualHost *:80>
ServerName www.blog.com
DocumentRoot "G:/WebSite/Blog"
<Directory "G:/WebSite/Blog/">
#Options FollowSymLinks (不顯示目錄列表)
#顯示目錄列表
Options Indexes FollowSymLinks
AllowOverride None
#允許自動加載的文件
DirectoryIndex index.html index.php index.htm index.jsp
#請求權限設置
Require all granted
</Directory>
</VirtualHost>
當開啟了pdo_mysqli擴展時 php無法加載擴展 找了半天 結果是:
extension_dir 目錄寫錯(英文引號寫成中文)
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。