|
: Invisible Capcha for Quick Contact : yerg May 11, 2008, 02:30:29 AM I've been in touch with allythecat and spent some time doing some testing.
I "appear" to have resolved her issues and mine with an Invisible Capcha that works .. the next couple of days will be proof but I figure that I best share what I've done with this great module The file attached is my replacement for the mod_s5_quick_contact.php I've placed the contents of the form in a table and included some css for a number of reasons. This helps with the invisible bit. I could have gone donw the path of javascript but figure for now this is easier. Interested to see what others think. : Re: Invisible Capcha for Quick Contact : rfarrell July 24, 2008, 05:14:43 PM I have Quick Contact loaded to an S5 Box. When I use your replacement php file my whole site is reduced to a single text message "restricted access". Any suggestions?
If not, does anyone know of any Captcha (invisible or otherwise) that will work with Quick Contact? In an ideal world, one that also works with the standard contacts page as well (we can all dream). Site url is www.erpaus.com (Original php is back in place for obvious reasons) : Re: Invisible Capcha for Quick Contact : animi August 08, 2008, 12:13:36 PM I get the same problem. It seems the form thinks I'm trying to access it directly.
I've got the form embedded in the footer box on my static "contact us" page (which is an uncategorized Joomla article). Any idea why it won't work with that setup? : Re: Invisible Capcha for Quick Contact : animi August 08, 2008, 01:16:04 PM found a fix for this problem. Open the file and change this:
defined( '_VALID_MOS' ) or die( 'Restricted access' ); to this: defined( '_JEXEC' ) or die( 'Restricted access' ); You can see that it works by trying to access the mod_s5_quick_contact.php file directly through your browser window. The '_VALID_MOS' code is old 1.0 Joomla! code. '_JEXEC" is the proper code for 1.5. |