Page 1 of 1

Blank Page? Busy Page

Posted: Thu Sep 01, 2005 11:06 pm
by fadum
Hi

I have a problem with CMSMS, i have a couple of pages on a site that are pretty popular and nearly everyday they start showing as a blank white page, if i clear the cache they work ok again but its annoying as i have to keep checking they are still showing.

I have considered turning off caching on these pages but im concerned about server load and would rather have them cached

Is this a known problem? cure?

Thanks

Re: Blank Page? Busy Page

Posted: Thu Sep 01, 2005 11:37 pm
by Ted
To be honest, I'm not sure what is causing that.  I'm almost guessing it's a smarty issue, but it'll hard to know for sure.

Has anyone else seen this?

Re: Blank Page? Busy Page

Posted: Fri Sep 02, 2005 8:53 am
by fadum
if i view the source of the blank page all i get is the "generated in blah blah" bit added by cmsms

Re: Blank Page? Busy Page

Posted: Sun Mar 05, 2006 6:38 am
by krzynio
Same problem here (without this 'generated in' message).

Clean install of cms-daily.

Regards,

K.

Re: Blank Page? Busy Page

Posted: Sun Mar 05, 2006 6:58 am
by krzynio
PHP Fatal error:  Call to a member function on a non-object in /var/www/hosted/seotools/plugins/function.breadcrumbs.php on line 56

line 56 is:

while (isset($currentNode) && $currentNode->getLevel() > 0)

Re: Blank Page? Busy Page

Posted: Sun Mar 05, 2006 7:42 am
by krzynio
I've added function_exists check:

if (isset($currentNode) && function_exists($currentNode))

And there is no fatal error anymore - but the breadcrumb is broken.

Re: Blank Page? Busy Page

Posted: Mon Mar 06, 2006 7:31 am
by alby
krzynio wrote: I've added function_exists check:

if (isset($currentNode) && function_exists($currentNode))
Maybe a check if the class method exist:
if (isset($currentNode) && method_exists($currentNode, "getLevel"))

Stamp a error:
if (method_exists($currentNode, "getLevel") === false) {echo "getLevel ???"; exit;}


Try function.breadcrumbs.php version in .12b2
Good luck

Alby

Re: Blank Page? Busy Page

Posted: Mon Mar 06, 2006 9:25 am
by krzynio
I've encountered this problem in .b2 and installed clean daily dev snapshot.

There was no change. The bug still exists.