If you can't figure out how to fix the errors, make a file and name it something like "delete.php", then add this code to it: <?php
unlink("error_log");
?> Then use an include on the page where the errors are generated from like this: <?php
include("delete.php");
?>
Now the error_log file will be deleted anytime somebody views your page. EDIT: Try this first before you try my other suggestion. Add this to the top of your php page: <?php
error_reporting(0);
?>