Hi sidesix,
Do you mean that nothing displays within your CP? Is all you are seeing a blank page similar to the link for your blog? If so, a blank screen is typically caused by a PHP error. Please edit your system/index.php file and switch on error reporting like this:
/*
* --------------------------------------------------------------------
* ERROR REPORTING OVERRIDE
* --------------------------------------------------------------------
*
* PHP and database errors are normally displayed dynamically based
* on the authorization level of each user accessing your site.
* This variable allows the error reporting system to be overridden,
* which can be useful for low level debugging during site development,
* since errors happening before a user is authenticated will not normally
* be shown. Options:
*
* $debug = 0; Default setting. Errors shown based on authorization level
*
* $debug = 1; All errors shown regardless of authorization
*
* NOTE: Enabling this override can have security implications.
* Enable it only if you have a good reason to.
*
*/
$debug = 1;
When you’ve done that please try and log in again and if an error message is displayed post it here. Then change you system/index.php to switch off debugging.
Cheers
Greg