Disabling image verification

Permalink
i have created my own registration form for new member to register on my website that fit inline with the website layout

http://www.amidesigns.co.uk/grp_covers/join_us/...

But now with the upgrade an image verification is required...

how would i
a) disable the image verification
or
b) add the image verification to my bespoke existing form

a responce would be very much appreciated.

ps. I would prefer option 'a'

salesman
 
salesman replied on at Permalink Reply
salesman
my site is currently live can anyone assist with this?
Tony replied on at Permalink Reply
Tony
open up /concrete/controllers/register.php

and comment out these lines:

$captcha=Loader::helper('validation/captcha');
if (!$captcha->check()) {
    $e->add(t("Incorrect image validation code. Please check the image and re-enter the letters or numbers as necessary."));
}


Then open up /concrete/single_pages/register.php, and get rid of these lines:

<div>
<?
print $form->label('captcha', t('Please type the letters and numbers shown in the image.'));
print '<br/>';
$captcha=Loader::helper('validation/captcha');            
$captcha->display();
?>
</div>


The upcoming release of concrete will have a global variable so you can turn this off easier.
salesman replied on at Permalink Reply
salesman
i no longer get the error but when i try to register i'm faced with a black page with the C5 logo and banner at the top...

at the location

www.www.mywebsite.com/index.php/register/-/register_pending/0/...

the notice 'your account needs to be activated' is no longer there...
cjramki replied on at Permalink Reply
cjramki
How can I show the error in my single page?
show example code for this coding...