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
Blank Page? Busy Page
Re: Blank Page? Busy Page
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?
Has anyone else seen this?
-
fadum
Re: Blank Page? Busy Page
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
Same problem here (without this 'generated in' message).
Clean install of cms-daily.
Regards,
K.
Clean install of cms-daily.
Regards,
K.
-
krzynio
Re: Blank Page? Busy Page
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)
line 56 is:
while (isset($currentNode) && $currentNode->getLevel() > 0)
-
krzynio
Re: Blank Page? Busy Page
I've added function_exists check:
if (isset($currentNode) && function_exists($currentNode))
And there is no fatal error anymore - but the breadcrumb is broken.
if (isset($currentNode) && function_exists($currentNode))
And there is no fatal error anymore - but the breadcrumb is broken.
-
alby
Re: Blank Page? Busy Page
Maybe a check if the class method exist:krzynio wrote: I've added function_exists check:
if (isset($currentNode) && function_exists($currentNode))
if (isset($currentNode) && method_exists($currentNode, "getLevel"))
Stamp a error:
if (method_exists($currentNode, "getLevel") === false) {echo "getLevel
Try function.breadcrumbs.php version in .12b2
Good luck
Alby
-
krzynio
Re: Blank Page? Busy Page
I've encountered this problem in .b2 and installed clean daily dev snapshot.
There was no change. The bug still exists.
There was no change. The bug still exists.

