Getting a site live
PermalinkIm trying to get a website made in concrete5 live. I have moved my site onto the root folder and chang my site.php
define('BASE_URL', 'http://www.mysite.dk');
But when i got to the adress it stills try to targethttp://www.mysite.dk/index.html... and not the index.php file... dont understand why.
this is my full site.php
<?php
define('DB_SERVER', 'xxx');
define('DB_USERNAME', 'xxx');
define('DB_PASSWORD', 'xxx');
define('DB_DATABASE', 'xxx');
define('BASE_URL', 'http://www.mysite.dk');
define('PASSWORD_SALT', 'x8JlVFSpOOn5w3Z36HqEIac5CUgsyH9Ik2L6nA22OS9qqcO4KkEQSB9NNUkGz8lL');
Any help is appreciated.

You could also rename index.html to index_old.html and see if the hosting picks up the index.php as the next default document to look for.
Also, you may have the site cached on your machine, so try rebooting your router, browsing the site on a different network or browsing the site over 3G on your mobile phone. You may find that it has been working all the time but you just can't see it on your local network!
EDIT: Just cleared cache - now it works. lol.... Thanks man. I thought a hard refresh allways was enough.. guess not.
Rony