Skip to content
Snippets Groups Projects
Commit 5a7be237 authored by moglia's avatar moglia
Browse files

Fixed url redirect for phpmyadmin if you use another port as not a standards...

Fixed url redirect for phpmyadmin if you use another port as not a standards ports. I tested on my production environment. If database is on another server i presume all of panels is on same port. If not need put a field called port on server table, or another way to solve it.
parent 337a8262
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,7 @@ $serverData = $app->db->queryOneRecord( ...@@ -58,7 +58,7 @@ $serverData = $app->db->queryOneRecord(
* We only redirect to the login-form, so there is no need, to check any rights * We only redirect to the login-form, so there is no need, to check any rights
*/ */
isset($_SERVER['HTTPS'])? $http = 'https' : $http = 'http'; isset($_SERVER['HTTPS'])? $http = 'https' : $http = 'http';
header('location:' . $http . '://' . $serverData['server_name'] . '/phpmyadmin'); ($_SERVER["SERVER_PORT"] != '80')? $serverPort = ':'.$_SERVER["SERVER_PORT"] : $serverPort = '';
header('location:'.$http.'://'.$serverData['server_name'].$serverPort.'/phpmyadmin');
exit; exit;
?> ?>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment