Page 1 of 1

Error with ModuleManager / Problem with FEU

Posted: Wed May 16, 2007 2:51 pm
by Michail
I just reinstalled CMSMS 1.0.6 but i've encountered some errors.

First of all, the module manager isn't working anymore. The page stays empty and I get an "Error on page"-message on the status bar. I didn't have this problem with CMSMS 1.0.4.

Also, the FrontEndUsers module messes up my pages. With 1.0.4, I had the following code in my template:

Code: Select all

   <!-- Start Login -->
   <div id="login">
     {cms_module module=FrontEndUsers}
   </div>
   <!-- End Login -->
But if I put that same code in my template in CMSMS 1.0.6, all content of my pages disappear, my footer disappears, etc. All pages are empty.

What's wrong?

Re: Error with ModuleManager / Problem with FEU

Posted: Sun Jun 10, 2007 3:31 pm
by ashru
Even I am facing the same problem. Did you find any solution? Please help

Re: Error with ModuleManager / Problem with FEU

Posted: Tue Jun 12, 2007 12:27 am
by calguy1000
if that is the problem it usually means a php memory error.  check your httpd error logs.

Re: Error with ModuleManager / Problem with FEU

Posted: Tue Jun 12, 2007 2:12 am
by Nullig
I think you need to put quotes around the module name...

 
 
    {cms_module module='FrontEndUsers'}
 
 

Nullig

Re: Error with ModuleManager / Problem with FEU

Posted: Tue Jun 12, 2007 2:55 am
by calguy1000
No, you don't NEED quotes around the module name, it just helps, and speeds things up a little bit (because smarty can parse the single quotes verbatim, without having to try to interpret it as a variable name or an expression or something.