Hi Chris,
It seems that your hosting control panel is not accessible outside your country. Our staff is based on different location, so we cannot access it.
You are attempting to enter Webnames.ca from an IP address that is currently denied access.
Since you’re getting a white screen, even after enabling WP_DEBUG mode. The next thing you can do is to enable your error log. Edit your wp-config.php file in the root of your WordPress installation and replace the following line define( 'WP_DEBUG', true ); with the below code.
define( 'WP_DEBUG', true );
if ( WP_DEBUG ) {
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 0 );
}
This will create an error log file under your wp-content directory, with the name of debug.log. Try login to your site again and then check your dubug.log file to see the actual errors.
Let us know how it goes.
Thanks!