stvchez Posted February 13, 2007 Share Posted February 13, 2007 Hi, this has probably been cover, but i've been searching for answers and can't get this nailed. Now, I have an error somewhere on this page: http://69.64.71.130/virtual-coach/calendarHome.php I'm happy to search and debug for myself, but all that I get is a blank page, so I guess my .ini file isn't set up or configured, or I don't have debugging code in place... i'm new to php, but really like it so far Quote Link to comment Share on other sites More sharing options...
paul2463 Posted February 13, 2007 Share Posted February 13, 2007 a blank page is all it is....... Quote Link to comment Share on other sites More sharing options...
Jessica Posted February 13, 2007 Share Posted February 13, 2007 put this at the top error_reporting(E_ALL); Quote Link to comment Share on other sites More sharing options...
stvchez Posted February 13, 2007 Author Share Posted February 13, 2007 I put the following at the very top of the page. Still just a blank screen. <?php error_reporting(E_ALL); ?> Quote Link to comment Share on other sites More sharing options...
Jessica Posted February 13, 2007 Share Posted February 13, 2007 So the next step is to comment out all the code, and slowly uncomment sections. You'll see the code working. When you get the blank page again, you've got the line that's causing the problem. Quote Link to comment Share on other sites More sharing options...
stvchez Posted February 13, 2007 Author Share Posted February 13, 2007 thanks for helping. I went through that process and figured out the problem line and the page is now working. Quote Link to comment Share on other sites More sharing options...
Jessica Posted February 13, 2007 Share Posted February 13, 2007 Ah, you also need to set display_errors to 1, using the ini_set function. Try that next time too. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.