The form does display correctly on one of my pages: http://www.tecb2b.com/about.html but all other pages shows three dots instead. Any suggestions?
Bill
I have the same problem - just ... and no form
I have a Javascript error "Calendar not defined"
I tried turning off all modules but I still get the error on that page.
I tried to take out the code:
if ($user->get('guest') == 1) {
$headerstuff = $this->getHeadData();
$headerstuff['scripts'] = array();
$this->setHeadData($headerstuff); }
from the index.php but this just caused a fatal error.
Any other ideas on how to identify the problem?
Alex,
That was it. I actually had mootools disabled in the rt_afterburner template that I'm using, so if aiContactSafe requires mootools it's a mystery as to why it was working on the one page.
I've enabled mootools now and aiContactSafe now works correctly with no other ill effects.
Thanks for your speedy and insightful reply.
Bill
Gina wrote:
I tried turning off all modules but I still get the error on that page.
I tried to take out the code:
if ($user->get('guest') == 1) {
$headerstuff = $this->getHeadData();
$headerstuff['scripts'] = array();
$this->setHeadData($headerstuff); }
from the index.php but this just caused a fatal error.
This means you didn't remove it correctly. Make sure you removed the "<?php" and "?>" that is in front and at the end of that code.
Bill Jenkins wrote:
I've enabled mootools now and aiContactSafe now works correctly with no other ill effects.
Happy to hear that. 
I've just used the form by adding a new menu item and chosen the type as aicontactsafe, rather than using the {aicontactsafeform pf=1} and the form is now appearing OK.
I'm very new to Joomla so I didn't know I could do it this other way. Thanks for your help, and hope I haven't wasted your time. I don't know why the other way didn't work though.
Here's the link: http://www.datapa.com/NewWebsite/index. … ;Itemid=73
(site is a work in progress! got menu issues)
I have realised that I do need to embed the form in an article as I need to add other things to the page, so if you could give me tips to get that working, that would be great.
Thanks
I'm guessing that is a templatemonster.com template and you need to remove their code preventing mootools ( default javascript library oj Joomla ) from loading.
That is done modifying the index.php file and removing this lines:
<?php
$user =& JFactory::getUser();
if ($user->get('guest') == 1) {
$headerstuff = $this->getHeadData();
$headerstuff['scripts'] = array();
$this->setHeadData($headerstuff); }
?>
I tried removing those lines, but it is still not working:
/**
*$user =& JFactory::getUser();
*if ($user->get('guest') == 1) {
*$headerstuff = $this->getHeadData();
*$headerstuff['scripts'] = array();
*$this->setHeadData($headerstuff); }
*/
and using {aicontactsafeform pf=1} to call the form
Any other ideas?
Thanks
Now the mootools library is loading but you have a javascript conflict with it.
I'm guessing it is generated because you're loading the top menu twice, since the jquery code contains "jQuery.noConflict();".
Try removing one of the menus.
I've got rid of the 2nd menu, but form is still not appearing.
I have a javascript error:
$("aiContactSafe_form_1").setHTML is not a function
[Break on this error] $('aiContactSafe_form_1').setHTML('Please wait ...');
Any ideas?
Page link is: http://www.datapa.com/NewWebsite/index. … ;Itemid=75
Sorry, you need to contact the developer of that script to make it not conflict with mootools.
After the second call of jquery the noConflict function is called so maybe it will work if you let the first one load and comment out the second one.
Hi, I've read all these posts but I'm sorry I don't understand.
My form is stalling on Please Wait... it's embedded in an article at http://shelleymadsen.com/contacts
Thanks so much for your help.
Hi, So I fixed things, sort of. I just changed the page to display an aicontactsafe menu item... it actually works a lot better in terms of layout.
But now there's a new problem - when I submit a form, the fields all disappear and the recaptcha thing comes back, and the message doesn't appear. I'll check the forum and post a new topic if that's not covered.
Thanks
Jack Sanford wrote:
Hi, So I fixed things, sort of. I just changed the page to display an aicontactsafe menu item... it actually works a lot better in terms of layout.
It should look the same if you activate the CSS adding "use_css=1" in the plugin code as described here:
http://www.algisinfo.com/joomla/aicontactsafeform.html
Jack Sanford wrote:
But now there's a new problem - when I submit a form, the fields all disappear and the recaptcha thing comes back, and the message doesn't appear. I'll check the forum and post a new topic if that's not covered.
The link you posted above ( shelleymadsen.com ) is not using reCaptcha. Did you set it back to the native CAPTCHA of aiContactSafe ?
Any way you have an error ( "303 See other" ) with mootools library, so the request is stoped. You need to fix that error to make the form work.
Having the same problem on
http://www.beta.computermasti.com/furth … ation.html
Page stuck at please wait...
Also mootools are loaded by system
Your server returns a "500 Internal Server Error" when the extension tries to generate the form.
And that seams to happen with all the pages on your site that are called with "&format=raw" in the URL. That is the way to call a component without any other things from the page ( a native Joomla feature ). You need to identify what is causing it and fix it or replace it.
Alex Dobrin wrote:
Your server returns a "500 Internal Server Error" when the extension tries to generate the form.
And that seams to happen with all the pages on your site that are called with "&format=raw" in the URL. That is the way to call a component without any other things from the page ( a native Joomla feature ). You need to identify what is causing it and fix it or replace it.
Thanks that helped.
The plugin "Ultimate PNG Fix [for IE v6 or lower] (by JoomlaWorks)" was giving the 500 error
Forum Legend: