Double Slash In Admin Url After Upgrade

www.mysite.com//admin.php

Recently upgraded fro V2, to V 4.5.3

I have checked config local and also .htaccess, and nothing is to blame.

Anyone know if it is a bug in 4.5.3

Cheers

John

​

www.mysite.com//admin.php

Recently upgraded fro V2, to V 4.5.3

I have checked config local and also .htaccess, and nothing is to blame.

Anyone know if it is a bug in 4.5.3

Cheers

John

​Looks the admin path like this?:

​

​$config['admin_index']    = 'admin.php';

Please also check the following parameters in the config.local.php file

$config['http_host']
$config['https_host']

Values should not contain slashes at the end

Please also check the following parameters in the config.local.php file

$config['http_host']
$config['https_host']

Values should not contain slashes at the end

Thanks, I had the below, so i removed the slash and all fine

// Host and directory where software is installed on no-secure server
$config['http_host'] = 'www.hivis.co.uk';
$config['http_path'] = '/';

You are welcome!