PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Moderator: General Moderators
susrisha
Forum Contributor
Posts: 439 Joined: Thu Aug 07, 2008 11:43 pm
Location: Hyderabad India
Post
by susrisha » Wed Mar 11, 2009 11:33 pm
you probably have the display_errors setting off. you need to set it. else you will find the error message in your apache error logs .
Code: Select all
ini_set('display_errors',1);
error_reporting(E_ALL); //to report all the errors onto the page.
vmene
Forum Newbie
Posts: 3 Joined: Wed Apr 16, 2008 3:59 am
Post
by vmene » Thu Mar 12, 2009 12:06 am
check whether u have given the correct file name.
becky-atlanta
Forum Commoner
Posts: 74 Joined: Thu Feb 26, 2009 6:26 pm
Location: Atlanta, GA
Post
by becky-atlanta » Fri Mar 20, 2009 10:04 am
I had seen this before when I have an inconsistent variable for the file name. It is hard to troubleshoot without looking at the code.