Yes thanks, I checked the config.php file. This is the content...
define('DB_TYPE', 'mysql');
define('DB_HOST', 'localhost');
define('DB_USERNAME', 'xxxx');
define('DB_PASSWORD', 'xxxx');
define('DB_NAME', 'xx');
define('TABLE_PREFIX', 'xxxx');
define('WB_PATH', dirname(__FILE__));
define('WB_URL', 'http://xx.xx.xxx.xxx/bb');
define('ADMIN_PATH', WB_PATH.'/admin');
define('ADMIN_URL', 'http://xx.xx.xxx.xxx/bb/admin');
require_once(WB_PATH.'/framework/initialize.php');
When I request the admin page, the login screen appears and I'm able to enter a username and login. I click on "LOGIN" and a completely blank page appears.
The URL for the returned page should be
http://xx.xx.xxx.xxx/admin/start/index.php, but in fact it displays
http://xx.xx.xxx.xxx/admin/login/index.php (which was the URL of the previous (ie Login) page. So the question seems to be 'why won't WB recognise the /start/index.php file? I checked the server and all the required folders and files are there and the permissions all seem to be correct.
Incidentally, the "live" version of he site works perfectly and this is a clone of it. The only difference between the tow is that the live one is hosted elsewhere on a Linux Apache box and the other (the clone) is hosted under my desk on a Windows Apache box.
I'm baffled, any thoughts please?