Totally Non-Functional WordPress site:
Edit your wp-config.php file and add these lines, just before it says 'stop editing here':
ini_set('log_errors',TRUE);
ini_set('error_reporting', E_ALL);
ini_set('error_log', dirname(__FILE__) . '/error_log.txt');
This will create an error_log.txt file in your site's root directory.