Quote:
Originally Posted by EvgenUA
"display_errors on" at production server...
i bet they also store your passwords in a plain text, accessible via something like paxum.com/users.txt

|
tip for Paxum:
ini_set('display_errors','0');
register_shutdown_function('fatalError');
function fatalError()
{
$last_error = error_get_last();
if ($last_error['type'] === E_ERROR){
echo "There was an error.";
exit;
}
}