Is it the same error, about ob_end_clean()? Can you try to disable your extensions?
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
September 21, 2009 1:43pm
Subscribe [5]#16 / Sep 23, 2009 4:45pm
Is it the same error, about ob_end_clean()? Can you try to disable your extensions?
#17 / Sep 23, 2009 4:53pm
No, this time around I do NOT see an error message. Just a blank screen.
I can get to pages withing the control panel (address removed by author).
Is the long string there right? I feel like those long strings are new. But I’m not sure.
but if I click back to “CP Home” again, blank page.
Also, LG TinyMCE is not working.
#18 / Sep 23, 2009 4:55pm
OK extensions disabled. Same problems.
Also - I checked with my host and no changes occurred there yesterday.
?
#19 / Sep 23, 2009 4:58pm
The “long string” is just a session id, and just fine. A blank screen is usually a suppressed PHP error. Can you try to turn on error reporting, see if that gets us a meaningful message? Also, do you know how much RAM you have in your environment? Try to bump that up a little, if your host lets you.
#20 / Sep 23, 2009 4:59pm
Error reporting IS turned on.
#21 / Sep 23, 2009 5:03pm
And that worked at some point, but not any more? Does it work on regular, non-EE PHP pages? Try to create an error on purpose, like so
<?php echo foo ?>#22 / Sep 23, 2009 5:08pm
Hello, error reporting worked for the initial transient error, I left it on.
It’s still on. It works on sub pages (I had incorrect file in the extentions folder for an unrelated reason and that caused and error that showed) but nothing is showing on the blank page after log in.
#23 / Sep 23, 2009 5:47pm
Can I re-enable the extensions now?
#24 / Sep 23, 2009 6:10pm
Hi, Here might be a clue
As I test, I turned error reporting “OFF” - results in blank page
<?php
error_reporting(0);
$pathinfo = pathinfo(__FILE__);
$ext = '.'.$pathinfo['extension'];
require './core/core.system'.$ext;
?>So then I turn it “ON” - page shows - but no error shows.
<?php
error_reporting(E_ALL);
$pathinfo = pathinfo(__FILE__);
$ext = '.'.$pathinfo['extension'];
require './core/core.system'.$ext;
?>SO then I assume I need to force PHP errors to show, so I add the code line for that - this worked for the first error I was having but it DOES NOT WORK NOW - back to blank page.
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
$pathinfo = pathinfo(__FILE__);
$ext = '.'.$pathinfo['extension'];
require './core/core.system'.$ext;
?>I’ve tried this resetting several times and these results are consistant. Only the middle code here works. It works in both IE and Firefox.
Maybe I should just leave it like that.
Meanwhile, why is LG TinyMCE no longer working? Is this related? How could this happen when I have not made any file changes?
#25 / Sep 23, 2009 6:24pm
I guess I’ll go ahead and uninstall and reinstall LG TinyMCE.
Any thoughts on this are appreciated. I’ll be offline for a few hours but back on EST 9:00pm. Thanks so much.
#26 / Sep 23, 2009 8:54pm
Did you update your extensions when you did the update?
#27 / Sep 23, 2009 10:35pm
I’m running 1.3.3 LG Tiny MCE which looks like the latest version. ( I backed up the extensions separately and re-uploaded after the update).
My plan is re-download a fresh version and completely reinstall. I’m also using TinyBrowser which required some modifications to the LG Tiny Mice and I’ll redo those too.
I’ll provide an update when that’s done.
#28 / Sep 23, 2009 11:49pm
OK, I’m using tips from this thread.
And I’m having success with SEEING TinyMCE in the entry fields using the settings with the URL path including www/... and making sure the pages are viewed with www/...
I’m still having some issues with the Tiny Browser and will keep working on those and post an update.
#29 / Sep 24, 2009 12:02am
charmedworks - are you still experiencing blank pages when logging into the control panel? Or has that now been rectified and you’re moving on to extensions?
#30 / Sep 24, 2009 6:10am
I am no longer seeing blank pages when logging into the control panel using the code supplied above (middle example) in the index.php page.
Update - I have reinstalled LG TinyMCE and other extensions and now everything is working fine. That’s great.
However I am seeing blank pages when using the index.php page (top example) as supplied in the install and upgrade. Or when I attempt to force error reporting (bottom example).
Not sure if I can just leave it as is (attempting to report errors but not showing them) - as that’s working fine. I just want to make sure it’s ok to leave it like that or if I should keep troubleshooting.