Blank Page? Busy Page

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Locked
fadum

Blank Page? Busy Page

Post 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
Ted
Power Poster
Power Poster
Posts: 3329
Joined: Fri Jun 11, 2004 6:58 pm

Re: Blank Page? Busy Page

Post 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?
fadum

Re: Blank Page? Busy Page

Post by fadum »

if i view the source of the blank page all i get is the "generated in blah blah" bit added by cmsms
krzynio

Re: Blank Page? Busy Page

Post by krzynio »

Same problem here (without this 'generated in' message).

Clean install of cms-daily.

Regards,

K.
krzynio

Re: Blank Page? Busy Page

Post 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)
krzynio

Re: Blank Page? Busy Page

Post 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.
alby

Re: Blank Page? Busy Page

Post 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
krzynio

Re: Blank Page? Busy Page

Post by krzynio »

I've encountered this problem in .b2 and installed clean daily dev snapshot.

There was no change. The bug still exists.
Locked

Return to “CMSMS Core”