localhost is redirected to localhost/localhost

Re: localhost is redirected to localhost/localhost

autor Leon Stringer -
Počet odpovědí: 0
Obrázek: Core developers Obrázek: Particularly helpful Moodlers

My best guess would be that you've got an existing config.php in the top level of your Moodle source code folder and this has the following line with the location you're being incorrectly redirected to:

$CFG->wwwroot = 'http://localhost/localhost';

You probably need to change this to:

$CFG->wwwroot = 'http://localhost';

File config.php is probably in C:\inetpub\wwwroot.

However, you wouldn't normally have an existing config.php (the file containing key configuration information about your site) before you've installed Moodle unless you've either manually created this or have already tried to install Moodle unsuccessfully.