just to double check, you have registered a user through the registration page, right?
add the following code at line 1 of the login page and the download page to turn on error reporting:
<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>