- 積分
- 3569
- 金幣
- 351 個
- 社區(qū)幣
- 0 元
功行圓滿
- 貢獻
- 23 點
- 金幣
- 351 個
|
板凳
發(fā)表于 2021-3-12 00:45:50
|
只看Ta
本帖最后由 allthebest 于 2021-3-11 20:21 編輯
檢查 /var/www/html/upload/uc_server/avatar.php 文件(/var/www/html/upload是網(wǎng)站目錄)的第14行,第14行內(nèi)容如下:
- define('UC_API', strtolower(($_SERVER[‘SERVER_PORT’] == 443 || $_SERVER[‘HTTPS’] == ‘on’ ? ‘https’ : ‘http’).’://’.$_SERVER[‘HTTP_HOST’].substr($_SERVER[‘PHP_SELF’], 0, strrpos($_SERVER[‘PHP_SELF’], '/'))));
復制代碼
把第14行改成如下內(nèi)容(改之前記得先備份文件):
- define('UC_API', strtolower('https'.'://'.$_SERVER['HTTP_HOST'].substr($_SERVER['PHP_SELF'], 0, strrpos($_SERVER['PHP_SELF'], '/'))));
復制代碼
故障解決 |
|