Actions
Fehler #157
openNot work on 2003 https port
eXtplorer Version:
2.1.4
Joomla! Version:
none
Description
The file manager didn't work on the port 2003 with SSL or Autosigned certificate.
Files
Updated by Ekevoo Duma about 10 years ago
- File https-http.png https-http.png added
Also affects me. See attachment for probable cause.
Updated by Sören Eberhardt-Biermann about 10 years ago
In the file /include/init.php, lines 71 ..
replace
if ($_SERVER['SERVER_PORT'] == 443 ) { $GLOBALS["script_name"] = "https://" . $GLOBALS['__SERVER']['HTTP_HOST'] . $GLOBALS['__SERVER']["PHP_SELF"]; $GLOBALS['home_url'] = "https://" . $GLOBALS['__SERVER']['HTTP_HOST'] . dirname($GLOBALS['__SERVER']["PHP_SELF"]); } else { $GLOBALS["script_name"] = "http://" . $GLOBALS['__SERVER']['HTTP_HOST'] . $GLOBALS['__SERVER']["PHP_SELF"]; $GLOBALS['home_url'] = "http://" . $GLOBALS['__SERVER']['HTTP_HOST'] . dirname($GLOBALS['__SERVER']["PHP_SELF"]); }
with
$GLOBALS["script_name"] = "//" . $GLOBALS['__SERVER']['HTTP_HOST'] . $GLOBALS['__SERVER']["PHP_SELF"]; $GLOBALS['home_url'] = "//" . $GLOBALS['__SERVER']['HTTP_HOST'] . dirname($GLOBALS['__SERVER']["PHP_SELF"]);
that should fix it?
Actions