Yes, php does keep an error log. If it's 60 MB, then you've probably got a major issue with your php script! That's a 60 megabyte text file!!!
First, you can safely delete that log file. Next, create a blank file called testme.php and upload it to the server. in the file, but the following line:
<?php include('idontexist.blah'); ?>
go to your website /testme.php and see if it outputs the error to the web page. (It should say something to the effect of "there is no such file as idontexist.blah")
If you don't see an error, PHP is outputting to a text file, not to the page, which is probably why your log is so big.
Once we know this, we should be able to go on from there to fix the problem.
[URL="http://d-site.net"]http://d-site.net/[/URL]