1.yes my host does support localhost - it worked with my test system
2. what do you mean - no spaces in my index.php? The only code on the page is:
<?php
require('concrete/dispatcher.php');
3. I removed the permissions model line - no change.
Interestingly I cant see any source code on the index.php page when I try to view it live. This seems to indicate the page is not being read? If I load an html index page I can read that however!
where it tells you about installing advanced permissions. The line has an error:
<?php define('PERMISSIONS_MODEL', 'advanced'); ?>
The last ?> is not needed. When you use this line of code the site does not show. Remove it and it does. The line on the Permissions page is:
<?php define('PERMISSIONS_MODEL', 'advanced');
Hope this is of use.
Otherwise thanks for a great product and great support from the members, I have been very impressed, keep up the good work and I hope I can be of use to the newbs one day!!! Ian
From my knowledge of php if you leave out the ending delimiter ?> the php parser will add the ending delimiter. This is why leaving out the ?> worked, but is not good practice. I will at times highlight the area up to the ending delimiter and then type back in the ?> to make sure no hidden characters are present.
1. check that your host supports the use of localhost for db connect name
2. check that there are no spaces in your index.php
3. try removing the line
thanks
dan