[教學]前台登入時,會跳出SSL錯誤,解決方法
- 克里夫
- Topic Author
- Offline
- 新手上路
Less
More
2013-06-05 14:14 #24898
來自 克里夫
克里夫 created the topic: [教學]前台登入時,會跳出SSL錯誤,解決方法
我剛剛前台登入時,會一直跳出SSL錯誤。
在後台找了老半天,還是沒有辦法解決,也不知道是什麼時候開始發生。
後來去Google找一下資料。
已經解決問題。
資料夾:libraries/joomla/
檔案:methods.php
將原始碼:
換成:
就正常了!
在後台找了老半天,還是沒有辦法解決,也不知道是什麼時候開始發生。
後來去Google找一下資料。
已經解決問題。
資料夾:libraries/joomla/
檔案:methods.php
將原始碼:
$scheme = ((int) $ssl === 1) ? 'https' : 'http';
換成:
$scheme = ((int) $ssl === -1) ? 'https' : 'http';
就正常了!
Please 登入 to join the conversation.