tedbalog Posted November 11, 2008 Author Share Posted November 11, 2008 Confirm that you have confirmUserID function somewhere in one of your pages and that it is inclued. It is, and taken care of - just a mix up of order. I guess I'm going back to square one on this one. I'm just going to build a script outside of the page and see if I have the same symptoms.. Thanks for the input everyone. Quote Link to comment https://forums.phpfreaks.com/topic/132226-php-returns-white-page-with-no-error/page/2/#findComment-687446 Share on other sites More sharing options...
DeanWhitehouse Posted November 11, 2008 Share Posted November 11, 2008 Don't forget if you write a script and hit a problem, post here, people will help and then you can learn what mistake you made. Quote Link to comment https://forums.phpfreaks.com/topic/132226-php-returns-white-page-with-no-error/page/2/#findComment-687450 Share on other sites More sharing options...
tedbalog Posted November 12, 2008 Author Share Posted November 12, 2008 OK - I had a go at it, created my own simple login and I'm still having this issue. It seems when I call "session_start()" it starts with a white page then if I refresh it goes to the page. Any help on this one is GREATLY appriciated. Quote Link to comment https://forums.phpfreaks.com/topic/132226-php-returns-white-page-with-no-error/page/2/#findComment-688187 Share on other sites More sharing options...
DeanWhitehouse Posted November 12, 2008 Share Posted November 12, 2008 tedbalog: If you are just wanting a simple login system for your site, pm me with more details and i will make you own. Quote Link to comment https://forums.phpfreaks.com/topic/132226-php-returns-white-page-with-no-error/page/2/#findComment-688188 Share on other sites More sharing options...
tedbalog Posted November 12, 2008 Author Share Posted November 12, 2008 tedbalog: If you are just wanting a simple login system for your site, pm me with more details and i will make you own. Well it works OUT of my page template.. but when implementing it I'm having the same issues that I've had with 2 other scripts. Quote Link to comment https://forums.phpfreaks.com/topic/132226-php-returns-white-page-with-no-error/page/2/#findComment-688190 Share on other sites More sharing options...
AndyB Posted November 12, 2008 Share Posted November 12, 2008 The whole white page thing makes no sense. Make sure that you have error_reporting turned on and error_display turned on for all of your pages and then act to fix the error messages that get displayed. Without knowing what the errors are, neither you nor we could ever guess what the problem is. If error_reporting is on and error_display is on and you still get a 'white page', it's because the script executed perfectly (according to any conditional logic you had) and there were no lines that generated output ... unless you're using the same colour for text as the background. A page that craps out then works when you force a refresh is symptomatic of a whole different family of problems. Quote Link to comment https://forums.phpfreaks.com/topic/132226-php-returns-white-page-with-no-error/page/2/#findComment-688195 Share on other sites More sharing options...
tedbalog Posted November 12, 2008 Author Share Posted November 12, 2008 I just discovered, it works in IE7 and FF3... Just not IE6... The page works FINE without the login script. Quote Link to comment https://forums.phpfreaks.com/topic/132226-php-returns-white-page-with-no-error/page/2/#findComment-688197 Share on other sites More sharing options...
AndyB Posted November 14, 2008 Share Posted November 14, 2008 If the generated html works in browser x then it'll work in any browser. It may not necessarily perform the way you expect but I can't believe browser x works and browser y produces a white page. The concept of "doesn't work" is too vague to suggest any fixes. If it works without your login script and produces a 'white page' with your login script then your login script is the problem. And until you turn on error display and error reporting, you're never going to solve the problem. Quote Link to comment https://forums.phpfreaks.com/topic/132226-php-returns-white-page-with-no-error/page/2/#findComment-689864 Share on other sites More sharing options...
tedbalog Posted November 14, 2008 Author Share Posted November 14, 2008 If the generated html works in browser x then it'll work in any browser. It may not necessarily perform the way you expect but I can't believe browser x works and browser y produces a white page. The concept of "doesn't work" is too vague to suggest any fixes. If it works without your login script and produces a 'white page' with your login script then your login script is the problem. And until you turn on error display and error reporting, you're never going to solve the problem. I DID turn error reporting on and believe the issue is my local computer. It works in IE7 and FF3. I tried another computer with IE6 and didn't recieve it but only once. Quote Link to comment https://forums.phpfreaks.com/topic/132226-php-returns-white-page-with-no-error/page/2/#findComment-690200 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.