Sometimes when you are setting up a devsite you run into the issue of a white screen with no errors. In many cases you resolve this by adding this code to the index.php
ini_set('error_reporting', E_ERROR);
register_shutdown_function("fatal_handler");
function fatal_handler() {
$error = error_get_last();
echo("<pre>");
print_r($error);
}