4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Requests & Discussions) => Topic started by: Flo2005 on October 01, 2006, 08:50:39 PM

Title: Captcha function from 4images 1.7.3 also for [MOD] guestbook
Post by: Flo2005 on October 01, 2006, 08:50:39 PM
This thread should help you to use the captcha function from 4images version 1.7.3 also in [MOD] guestbook -> http://www.4homepages.de/forum/index.php?topic=7409.0

Features:
+ switch the captcha function on / off
+ use the words.txt to define your own words
+ create your own backgrounds like in the new version 1.7.3

Note: You need 4images version 1.7.3 to run this modification

Files which you have to modifi:

- guestbook.php
- guestbook_form.html
- config.php

1. open guestbook.php and find:

Code: [Select]
// Flood Check
add above:
Code: [Select]
//-----------------captcha function from 4images 1.7.3 ----------------------------
$captcha = (isset($HTTP_POST_VARS['captcha'])) ? un_htmlspecialchars(trim($HTTP_POST_VARS['captcha'])) : "";
//-----------------captcha function from 4images 1.7.3 ----------------------------

find:
Code: [Select]
if (!$error)  {
      if ($comment_site =="http://") {
         $comment_site = "";

add above:
Code: [Select]
//-----------------captcha function from 4images 1.7.3 ----------------------------
if ($captcha_enable_guestbook && !captcha_validate($captcha)) {
      $msg .= (($msg != "") ? "<br />" : "").$lang['captcha_required'];
      $error = 1;
    }
//-----------------captcha function from 4images 1.7.3 ----------------------------

find:
Code: [Select]
"lang_comment" => $lang['comment'] (without > , < behind)

replace with:
Code: [Select]
"lang_comment" => $lang['comment'],
"lang_captcha" => $lang['captcha'],
"lang_captcha_desc" => $lang['captcha_desc'],
"captcha_guestbook" => (bool)$captcha_enable_guestbook

2. open guestbook_form.html
find:
Code: [Select]
<td>{bbcode}</td>
</tr>

add after:
Code: [Select]
{if captcha_guestbook}
                <tr>
                  <td width="90" valign="top"><b>{lang_captcha}</b></td>
                  <td>
                    <a href="javascript:new_captcha_image();"><img src="{url_captcha_image}" border="0" id="captcha_image" /></a>
                    <br />
                    <input type="text" name="captcha" size="30" value="" class="commentinput" id="captcha_input" />
                    <br />
                    {lang_captcha_desc}
                  </td>
                </tr>
{endif captcha_guestbook}

3. open config.php

find:

Code: [Select]
define("4IMAGES_ACTIVE", 1);
add after:
Code: [Select]
$captcha_enable_guestbook = 1;
IŽll hope youŽve got it! Ciao by Flo
Title: Re: Captcha function from 4images 1.7.3 also for [MOD] guestbook
Post by: medo007 on October 01, 2006, 10:55:51 PM
Thank you Flo2005, I'll try it! :D
Title: Re: Captcha function from 4images 1.7.3 also for [MOD] guestbook
Post by: paburmester on October 02, 2006, 06:59:31 AM
Thanks Flo2005, this works great! Thank you very much.
Maybe you have to to specify that several steps are made several times.
Regards
Title: Re: Captcha function from 4images 1.7.3 also for [MOD] guestbook
Post by: paburmester on October 02, 2006, 12:32:03 PM
Is there a way to captcha works too with my Contact Form MOD from: http://www.4homepages.de/forum/index.php?topic=8987.0
Thanks
Title: Re: Captcha function from 4images 1.7.3 also for [MOD] guestbook
Post by: Flo2005 on October 06, 2006, 02:44:20 PM
Is there a way to captcha works too with my Contact Form MOD from: http://www.4homepages.de/forum/index.php?topic=8987.0
Thanks

I never see this MOD contact before. I think its possible that captcha function also works with MOD Contact :wink:
Title: Re: Captcha function from 4images 1.7.3 also for [MOD] guestbook
Post by: paburmester on October 06, 2006, 04:21:47 PM
Thanks men!
Title: Re: Captcha function from 4images 1.7.3 also for [MOD] guestbook
Post by: insanos on February 19, 2007, 06:08:49 PM
Thanks Flo2005, this works great! Thank you very much.
Maybe you have to to specify that several steps are made several times.
Regards

which ones please ? i can see the captcha function , but i cant delete or edit any comments any more and i can post comments even without entering the code...
Title: Re: Captcha function from 4images 1.7.3 also for [MOD] guestbook
Post by: Flo2005 on February 19, 2007, 07:41:40 PM
Thanks Flo2005, this works great! Thank you very much.
Maybe you have to to specify that several steps are made several times.
Regards

which ones please ? i can see the captcha function , but i cant delete or edit any comments any more and i can post comments even without entering the code...

Logged in as admin or guest?
Title: Re: Captcha function from 4images 1.7.3 also for [MOD] guestbook
Post by: joachimarp on December 27, 2012, 10:47:56 PM
Funktioniert diese Version uach mit der 1.7.11?
Title: Re: Captcha function from 4images 1.7.3 also for [MOD] guestbook
Post by: Rembrandt on December 28, 2012, 05:01:16 AM
Hi!
Funktioniert diese Version uach mit der 1.7.11?
Denke ja, alternativ kannst du dir das hier einbauen: http://www.4homepages.de/forum/index.php?topic=28210.msg152417#msg152417

mfg Andi