From local to FTP. Getting "Index of ..." as a result

Permalink
Hi,

i recently moved my local concrete5 on my FTP. Since i want the old website to still be the main website until the new version is fully up to date, i put my concrete5 files it in a submap on my FTP: www/concrete (the www folder is where the old site was in:http://www.combora.be)

Now when i surf to the site i get an "index of /concrete" as a result.

I changed the config file:

<?php
define('DB_SERVER', 'localhost');
define('DB_USERNAME', 'basedecombora');
define('DB_PASSWORD', '*********');
define('DB_DATABASE', 'basedecombora');
/*voorlopig staat de website in de concrete map en niet in de root: */
define('BASE_URL', 'http://combora.be/concrete');
define('DIR_REL', '/concrete');

But without any result.
Any ideas?

 
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
Well it should be
define('BASE_URL', 'http://combora.be');
define('DIR_REL', '/concrete');
JackiiBE replied on at Permalink Reply
Still gives me the same result
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
Try to put a index.html page in that folder and check it it still showing. If not then ask your server admin whether it has the PHP enable in server.

Rony
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
When I open index.php, it shows the below message:
Warning: uniqid() expects at least 1 parameter, 0 given in dispatcher.php on line 9
Concrete5 requires PHP5.1.


So the server doesn't have PHP5.1

Rony
JackiiBE replied on at Permalink Reply
Ok, thanks!