I just tried a simple hello world with a semi colon missing, and I'm getting a blank page.
Any ideas why PHP refuses to show errors?
A script without errors works perfectly.
Also, I remember reading somewhere that there's an example config file that Apache or PHP come with that needs to be renamed to remove the .sample or something like that.
Since I'm not much of a server admin, I'd much rather go with whatever sample Apache/PHP has provided. Where can I find this sample configuration? Perhaps it'll fix this (and other problems yet to appear).
PHP script I'm testing with (missing semicolon)
<?php
echo "Hello"
echo "sup";
?>