[Solved] Form builder and Front End Users conflict.
[Solved] Form builder and Front End Users conflict.
Hi all,
I am receiving the following error:
Warning: Parameter fbrp_callcount is not known by module FrontEndUsers dropped in /home/content/r/a/y/suppo/html/lib/misc.functions.php on line 1359
I placed a form inside a registered only protected page and I have the feeling it is cause this error to appear any thoughts on what I can do?
Thanks
I am receiving the following error:
Warning: Parameter fbrp_callcount is not known by module FrontEndUsers dropped in /home/content/r/a/y/suppo/html/lib/misc.functions.php on line 1359
I placed a form inside a registered only protected page and I have the feeling it is cause this error to appear any thoughts on what I can do?
Thanks
Last edited by richart on Mon Mar 09, 2009 6:46 pm, edited 1 time in total.
Re: Form builder and Front End Users conflict.
It seems to work but i just want to hide the error message as it will confuse users, any ideas anyone?
Last edited by richart on Fri Mar 06, 2009 9:25 pm, edited 1 time in total.
Re: Form builder and Front End Users conflict.
Hi,
You have to provide more information (e.g. versions of your CMSMS and modules). I have a question: is a call of FrontEndUsers module placed after {content} in your template?
Vilkis
You have to provide more information (e.g. versions of your CMSMS and modules). I have a question: is a call of FrontEndUsers module placed after {content} in your template?
Vilkis
Re: Form builder and Front End Users conflict.
Info that i think may be important to know: apache, php 4; CMS Made Simple 1.5.3 "Arecibo", FormBuilder 0.5.11, FrontEndUsers 1.6.2, CustomContent 1.5.2.
My template has this code:
and this is in the page:
My template has this code:
Code: Select all
{if $customcontent_loggedin > 0}
{content}
{cms_module module=FrontEndUsers form="logout"}
{else}
<h3>You must be logged in to view this information</h3>
{cms_module module=FrontEndUsers nocaptcha="1"}
{/if}
Code: Select all
{cms_module module='FormBuilder' form='Song'}
Re: Form builder and Front End Users conflict.
It is old bug of CMSMS, but I have not found a solution for this yet... (calgay1000 ignored my notification about it ,moreover, he deleted my solution as it was not ideal) I just can say if you reorder {content} and {cms_module module=FrontEndUsers form="logout"} in such a manner:
the warning should disapear.
Please, confirm it.
Vilkis
Code: Select all
{cms_module module=FrontEndUsers form="logout"}
{content}
Please, confirm it.
Vilkis
Re: Form builder and Front End Users conflict.
Thanks it works! The logic seems somewhat strange though, placing the {content} tag outside of the conditions?
Re: [Solved] Form builder and Front End Users conflict.
Fine, your case lets me to illustrate a bug. I will submit it in the forge.
The problem is that each time CMSMS calculates available non inline modules in page (template plus content) without knowing how much modules were in page from what the request comes. So, when in next page an additional module appears (as in your case after login a formbuilder module) the parameters go to wrog module (in your case FrontEndUsers parameters go to coming FormBuilder after user logins).
Vilkis
The problem is that each time CMSMS calculates available non inline modules in page (template plus content) without knowing how much modules were in page from what the request comes. So, when in next page an additional module appears (as in your case after login a formbuilder module) the parameters go to wrog module (in your case FrontEndUsers parameters go to coming FormBuilder after user logins).
Vilkis
Re: [Solved] Form builder and Front End Users conflict.
I always check using....
{cms_module module=CustomContent}
{if $ccuser->loggedin()}
So not the full customcontent_....
Ronny
{cms_module module=CustomContent}
{if $ccuser->loggedin()}
So not the full customcontent_....
Ronny
Re: Form builder and Front End Users conflict.
Vilkis, can you please share your "not ideal" solution. I have a conflict FormBuilder + JQueryTools. I can not change the order of module calls since JQuery must be called in the header section.vilkis wrote: moreover, he deleted my solution as it was not ideal)
After submitting a Form I get:
Code: Select all
Warning: Parameter fbrp_callcount is not known by module JQueryTools dropped in /xxxxxxxxxxxxx/lib/misc.functions.php on line 1359
.......
+ Warning for each field in Form Builder
Sonya
Re: [Solved] Form builder and Front End Users conflict.
Hi,
I think that my solution will not work for you - it is really wrong and it helps in very special cases.
Vilkis
I think that my solution will not work for you - it is really wrong and it helps in very special cases.
Vilkis
Last edited by vilkis on Wed Mar 11, 2009 3:43 am, edited 1 time in total.
Re: [Solved] Form builder and Front End Users conflict.
I found a new solution but it is also a hack of CMSMS core...
Vilkis
Vilkis
Re: [Solved] Form builder and Front End Users conflict.
I am having similar problems but seems to be a conflict between the forms and the Menumanager.
The error is:
Warning: Parameter feu_input_username is not known by module MenuManager dropped in .../lib/misc.functions.php on line 1359
Warning: Parameter feu_input_password is not known by module MenuManager dropped in .../lib/misc.functions.php on line 1359
Warning: Parameter submit is not known by module MenuManager dropped in .../lib/misc.functions.php on line 1359
I noticed a similar error on this site:
http://www.cmsmadesimple.org/moduleinte ... eturnid=64
Any thoughts?
The error is:
Warning: Parameter feu_input_username is not known by module MenuManager dropped in .../lib/misc.functions.php on line 1359
Warning: Parameter feu_input_password is not known by module MenuManager dropped in .../lib/misc.functions.php on line 1359
Warning: Parameter submit is not known by module MenuManager dropped in .../lib/misc.functions.php on line 1359
I noticed a similar error on this site:
http://www.cmsmadesimple.org/moduleinte ... eturnid=64
Any thoughts?
Re: [Solved] Form builder and Front End Users conflict.
Quick solution is to add a @ in at the beginning of the mentioned lines.
Re: [Solved] Form builder and Front End Users conflict.
garyt,
does it happen after FEU user login? Can you provide more information - what is your template?
Vilkis
does it happen after FEU user login? Can you provide more information - what is your template?
Vilkis