Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dirk Dankhoff
ISPConfig 3
Commits
0a6ce939
Commit
0a6ce939
authored
Jan 03, 2012
by
tbrehm
Browse files
Fixed: FS#1890 - Link for phpmyadmin is not correct when using Nginx
parent
91ac7613
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/web/sites/database_phpmyadmin.php
View file @
0a6ce939
...
...
@@ -56,15 +56,23 @@ $serverData = $app->db->queryOneRecord(
$app
->
uses
(
'getconf'
);
$global_config
=
$app
->
getconf
->
get_global_config
(
'sites'
);
$web_config
=
$app
->
getconf
->
get_server_config
(
$serverId
,
'web'
);
/*
* We only redirect to the login-form, so there is no need, to check any rights
*/
if
(
$global_config
[
'phpmyadmin_url'
]
!=
''
)
{
header
(
'Location:'
.
$global_config
[
'phpmyadmin_url'
]);
$phpmyadmin_url
=
$global_config
[
'phpmyadmin_url'
];
$phpmyadmin_url
=
str_replace
(
'[SERVERNAME]'
,
$serverData
[
'server_name'
],
$phpmyadmin_url
);
header
(
'Location:'
.
$phpmyadmin_url
);
}
else
{
isset
(
$_SERVER
[
'HTTPS'
])
?
$http
=
'https'
:
$http
=
'http'
;
header
(
'location:'
.
$http
.
'://'
.
$serverData
[
'server_name'
]
.
'/phpmyadmin'
);
if
(
$web_config
[
'server_type'
]
==
'nginx'
)
{
header
(
'location:'
.
$http
.
'://'
.
$serverData
[
'server_name'
]
.
':8081/phpmyadmin'
);
}
else
{
header
(
'location:'
.
$http
.
'://'
.
$serverData
[
'server_name'
]
.
'/phpmyadmin'
);
}
}
exit
;
?>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment