Warning: Illegal string offset 'link' in [path]/includes/class_bbcode.php on line 2777

Warning: Illegal string offset 'link' in [path]/includes/class_bbcode.php on line 2791
reCaptcha 0.6
Page 1 of 2 12 LastLast
Results 1 to 10 of 17

Thread: reCaptcha 0.6

  1. #1
    Former lead dev Nick's Avatar
    Join Date
    Jun 2009
    Location
    Kakamigahara, Japan
    Posts
    2,861
    Blog Entries
    88
    Thanks
    485
    Thanked 809 Times in 528 Posts

    Default reCaptcha 0.6

    reCaptcha
    Version: 0.6
    Author: Nick Ramsay
    Created on: 2010/03/17
    Last Updated:
    2010/11/19
    Tested on: Hotaru 1.4.2
    Plugins Required: None
    Plug & Play: Yes
    Supported: Yes

    Description
    The web's most popular anti-spam captcha system. By itself, it doesn't do anything, but other plugins can utilize it.

    Instructions
    1. Upload the "recaptcha" folder to your plugins folder.
    2. Install it from Plugin Management in Admin.
    3. To use it, you'll need to register at http://recaptcha.net/, get your keys and put them in Admin -> Plugin Settings -> reCaptcha.

    Notes for Plugin Developers
    Including reCaptcha in your plugin is quite simple. It uses two plugin hooks:

    PHP Code:
    $h->pluginHook('show_recaptcha'); // this should be wrapped in a form

    $result $h->pluginHook('check_recaptcha'); // check the captcha

    switch($result['ReCaptcha_check_recaptcha'])
    {
        case 
    'empty':
            
    // show error message for an empty captcha
            
    break;
        case 
    'error':
            
    // show error message for an incorrect answer
            
    break;
        case 
    'success':
            
    // captcha completed correctly
            
    break;
        default:
            
    // do nothing

    For a working example, see /recaptcha/recaptcha_settings.php from approx. line 63.

    Revision History
    v.0.6 2010/11/17 - Nick - Fix for invalid argument error
    v.0.5 2010/09/17 - Nick - Fix for reCaptcha echo / return issues
    v.0.4 2010/09/08 - Nick - Fix for reCaptcha not being displayed
    v.0.3 2010/09/08 - Nick - Fix for not loading existing settings during upgrade
    v.0.2 2010/09/05 - George - Added the language, theme from the reCaptcha API.
    v.0.1 2010/03/17 - Nick - Released first version

    Please click "Rate Thread" and give this plugin a rating. Thank you.
    Attached Thumbnails Attached Thumbnails recaptcha-0.2.0.png  
    Attached Files Attached Files
    Last edited by petsagouris; 09-05-2010 at 07:32 PM.

  2. #2
    Member
    Join Date
    Mar 2010
    Location
    Indonesia
    Posts
    40
    Thanks
    28
    Thanked 1 Time in 1 Post

    Default

    hmmm... if i am not wrong, i've see reCaptcha at user signin plugins ?

  3. #3
    Former lead dev Nick's Avatar
    Join Date
    Jun 2009
    Location
    Kakamigahara, Japan
    Posts
    2,861
    Blog Entries
    88
    Thanks
    485
    Thanked 809 Times in 528 Posts

    Default

    Quote Originally Posted by hangbowl View Post
    hmmm... if i am not wrong, i've see reCaptcha at user signin plugins ?


    Quote Originally Posted by Nick View Post
    Important!
    The User Signin plugin already has reCaptcha, but in the future it will be removed and this plugin will be necessary instead. The reason for that is by making reCaptcha a standalone plugin, any plugin can use it regardless of whether User Signin is installed, and you'll only have to enter your reCaptcha keys once.

    To be clear, you do not need this plugin unless another plugin requires you to install it.

  4. #4
    Member
    Join Date
    Mar 2010
    Location
    Indonesia
    Posts
    40
    Thanks
    28
    Thanked 1 Time in 1 Post

    Default

    aaahh... you mention that, sorry. i'm so tired in this few days. didn't read that

  5. #5
    Former lead dev Nick's Avatar
    Join Date
    Jun 2009
    Location
    Kakamigahara, Japan
    Posts
    2,861
    Blog Entries
    88
    Thanks
    485
    Thanked 809 Times in 528 Posts

    Default

    Hehe, I forgive you!

  6. #6
    Senior Member
    Join Date
    Sep 2009
    Posts
    445
    Thanks
    167
    Thanked 56 Times in 43 Posts

    Default

    I wonder why the recaptcha letters won't show up on Internet Explorer 8 for my site -> My registration Page

    Hotaru Version: 1.1.4

  7. #7
    Former lead dev Nick's Avatar
    Join Date
    Jun 2009
    Location
    Kakamigahara, Japan
    Posts
    2,861
    Blog Entries
    88
    Thanks
    485
    Thanked 809 Times in 528 Posts

    Default

    Quote Originally Posted by nothingman View Post
    I wonder why the recaptcha letters won't show up on Internet Explorer 8 for my site
    It's not just reCaptcha, all the images on your registration page are huge!!! (IE8 with compatibility mode OFF)

    Click image for larger version. 

Name:	nothingman_images.png 
Views:	42 
Size:	180.4 KB 
ID:	858

  8. #8
    Junior Member
    Join Date
    May 2010
    Posts
    1
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Hi
    I need help how to enable captcha on the submit page. I want a page where people can send link etc but i want to rule out the bots by implemet the recaptcha on the submit page.
    Im not a pro in PHP but if anyone got some helping hand here i would be very happy.
    I use the Shibuya Theme atm ( Great theeme btw )
    (sorry for bad english)

    EDIT..Hmm mayby i dont need it on the submit page, because i cant see that i can turn off " must be logged in to post" this one is forced isnt it?
    I wanted people to be able to post without register if its possible?
    Last edited by caponx; 05-10-2010 at 02:30 PM.

  9. #9
    Former lead dev Nick's Avatar
    Join Date
    Jun 2009
    Location
    Kakamigahara, Japan
    Posts
    2,861
    Blog Entries
    88
    Thanks
    485
    Thanked 809 Times in 528 Posts

    Default

    Quote Originally Posted by caponx View Post
    I wanted people to be able to post without register if its possible?
    Sorry, it's not possible with the current plugins.

  10. #10
    Design & Development petsagouris's Avatar
    Join Date
    Jul 2010
    Location
    Rethymno, Greece
    Posts
    314
    Blog Entries
    2
    Thanks
    54
    Thanked 137 Times in 102 Posts

    Default

    I've updated the plugin to version 0.2.0.
    You now can customize the language and choose one of the 4 default themes.

    Now the only thing missing for this plugin is the custom theming of the reCaptcha widget, maybe this will happen later on when there is need for it.

  11. Thanked by:


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •