[2.0.12] Visual Confirmation for Guests

The cleanup is complete. This forum is now read only.

Rating:

Excellent!
39
65%
Very Good
9
15%
Good
3
5%
Fair
1
2%
Poor
8
13%
 
Total votes : 60

[2.0.12] Visual Confirmation for Guests

Postby MOD Robot » Fri Feb 25, 2005 12:12 pm

MOD Name: Visual Confirmation for Guests
Author: Kanuck
MOD Description: Adds visual confirmation for guest posts, eliminating spam.


MOD Version: 1.0.1

Download File: guest_confirmation_1_0_1a.mod
mods overview page: View
File Size: 8245 Bytes

Security Score: 0
Last edited by MOD Robot on Mon Apr 30, 2007 12:30 am, edited 1 time in total.
(this is a non-active account manager for the phpBB MOD Team)
MOD Robot
MOD Queue Bot
MOD Queue Bot
 
Posts: 21210
Joined: Sat Aug 16, 2003 7:36 am

Postby wGEric » Fri Feb 25, 2005 11:09 pm

MOD Validated/Released

Notes:
This MOD makes it so that when guests post at your forums they have to enter in a visual confirm to make sure they aren't a bot. It uses the same visual confirm as the one for the registration page.
User avatar
wGEric
Operations Manager
Operations Manager
 
Posts: 8595
Joined: Sun Oct 13, 2002 3:01 am
Location: Friday

Postby egeurts » Sat Feb 26, 2005 5:02 pm

I've implemented this one ony my sites, very pleased with it!
Caution: Opening message voids warranty
When I'm not surfing the web, I'm probably walking in the mountains.
See for yourself: www.corsica-hiking.com
egeurts
Registered User
 
Posts: 5
Joined: Sat Jul 19, 2003 9:54 am
Location: Groningen, Netherlands

Postby Wizard_SEMFE » Sat Feb 26, 2005 5:55 pm

PERFECT!!!
Just what I was looking for!
FU@#@NG Pepotamo1985!!!
User avatar
Wizard_SEMFE
Registered User
 
Posts: 10
Joined: Tue Jun 29, 2004 11:15 pm

Postby Wizard_SEMFE » Sat Feb 26, 2005 6:08 pm

I could use a little help here though!
I can't find (and neither can easymod)

Code: Select all
      case 'editpost':
      case 'newtopic':
      case 'reply':

in posting.php
Is this the code that I should alter?

Code: Select all
switch( $mode )
{
   case 'newtopic':
      $page_title = $lang['Post_a_new_topic'];
      $hidden_form_fields .= '<input type="hidden" name="' . POST_FORUM_URL . '" value="' . $forum_id . '" />';
      break;

   case 'reply':
      $page_title = $lang['Post_a_reply'];
      $hidden_form_fields .= '<input type="hidden" name="' . POST_TOPIC_URL . '" value="' . $topic_id . '" />';
      break;

   case 'editpost':
      $page_title = $lang['Edit_Post'];
      $hidden_form_fields .= '<input type="hidden" name="' . POST_POST_URL . '" value="' . $post_id . '" />';
      break;
}

// Generate smilies listing for page output
generate_smilies('inline', PAGE_POSTING);
Last edited by Wizard_SEMFE on Sun Feb 27, 2005 3:30 pm, edited 1 time in total.
User avatar
Wizard_SEMFE
Registered User
 
Posts: 10
Joined: Tue Jun 29, 2004 11:15 pm

Postby poregorn » Sat Feb 26, 2005 6:10 pm

does this only work on .12? i have .11 running and im not planning on updating to .12 anytime soon
poregorn
Registered User
 
Posts: 138
Joined: Thu Sep 23, 2004 9:23 pm

Postby Alex Walters » Sat Feb 26, 2005 9:21 pm

poregorn wrote:does this only work on .12? i have .11 running and im not planning on updating to .12 anytime soon


naughity naughity.
Alex Walters
Registered User
 
Posts: 126
Joined: Sat Nov 30, 2002 12:20 am

Postby Kanuck » Sun Feb 27, 2005 7:03 pm

Wizard_SEMFE, that must be a conflict with another MOD. For me, those three lines of code are lines 537-539. Here's a few more lines of code before it so you can try tracking it down.

Code: Select all
else if ( $submit || $confirm )
{
   //
   // Submit post/vote (newtopic, edit, reply, etc.)
   //
   $return_message = '';
   $return_meta = '';

   switch ( $mode )
   {
      case 'editpost':
      case 'newtopic':
      case 'reply':
Aaron Adams
Former phpBB.com team member
Kanuck
Former Team Member
 
Posts: 2791
Joined: Thu Jul 05, 2001 9:33 pm
Location: Toronto, Ontario

Postby Wizard_SEMFE » Sun Feb 27, 2005 9:10 pm

Kanuck wrote:Wizard_SEMFE, that must be a conflict with another MOD. For me, those three lines of code are lines 537-539. Here's a few more lines of code before it so you can try tracking it down.


This was the case indeed!
The log actions mod did all the job!
Thank you very much Kanuck!
User avatar
Wizard_SEMFE
Registered User
 
Posts: 10
Joined: Tue Jun 29, 2004 11:15 pm

Postby WaR TaCtiCs » Tue Mar 01, 2005 5:00 am

Could someone answer this please

How come every file wich ends with a .mod cannot be downloaded?

Im new at this btw i apologize i bet theres a simple answer for this

Thanks
WaR TaCtiCs
Registered User
 
Posts: 9
Joined: Tue Mar 01, 2005 4:28 am

Postby ycl6 » Tue Mar 01, 2005 12:29 pm

It should opened as a text file, so just save the content from your brower to your hard-disk, or copy everything into the notepad/wordpad/other text editors.

~Mac
User avatar
ycl6
Former Team Member
 
Posts: 5702
Joined: Sat Feb 15, 2003 10:35 am
Location: Taiwan

Postby RickDrummer » Tue Mar 01, 2005 11:53 pm

Does anybody know how to add this mod to quick reply form?

Thanx in advance!
RickDrummer
Registered User
 
Posts: 4
Joined: Tue Mar 01, 2005 11:46 pm

Postby Kanuck » Wed Mar 02, 2005 12:28 am

Does everybody use the exact same quick reply modification? If so, point me in its direction, and I can probably figure out what code needs to be ported to make this work.
Aaron Adams
Former phpBB.com team member
Kanuck
Former Team Member
 
Posts: 2791
Joined: Thu Jul 05, 2001 9:33 pm
Location: Toronto, Ontario

Postby WaR TaCtiCs » Wed Mar 02, 2005 8:48 am

ycl6 wrote:It should opened as a text file, so just save the content from your brower to your hard-disk, or copy everything into the notepad/wordpad/other text editors.

~Mac


thanx bro
WaR TaCtiCs
Registered User
 
Posts: 9
Joined: Tue Mar 01, 2005 4:28 am

Postby darakhshan » Wed Mar 02, 2005 11:47 am

this did not work for my version 2.0.11 so I give up :cry:
darakhshan
Registered User
 
Posts: 792
Joined: Fri Apr 30, 2004 7:18 pm

Next

Return to [2.0.x] MOD Database Cleanup

Who is online

Users browsing this forum: No registered users and 1 guest