The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Confirmation Code when posting

4 posters

Go down

In progress Confirmation Code when posting

Post by DaveG Tue 15 Oct - 21:38

Hi
I'm wondering if someone can help me Please,  the problem is when my members post it asks them to copy the confirmation Code,  you know x5rT3 

can this be turned off so they don't have to perform this step

Thanks in advance Dave
avatar
DaveG
Forumember

Posts : 71
Reputation : 1
Language : English

Back to top Go down

In progress Re: Confirmation Code when posting

Post by Guest Tue 15 Oct - 21:49

What is your forum version?
avatar
Guest
Guest


Back to top Go down

In progress Re: Confirmation Code when posting

Post by SLGray Tue 15 Oct - 21:57

It could be that they are posting something that is triggering the anti-spamming system.


Confirmation Code when posting Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51554
Reputation : 3524
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Confirmation Code when posting

Post by DaveG Tue 15 Oct - 22:19

Leah7 wrote:What is your forum version?
Sorry not sure where to get this info.
avatar
DaveG
Forumember

Posts : 71
Reputation : 1
Language : English

Back to top Go down

In progress Re: Confirmation Code when posting

Post by DaveG Tue 15 Oct - 23:33

OK sorry,    I found the Forum Version It's phpBB3
avatar
DaveG
Forumember

Posts : 71
Reputation : 1
Language : English

Back to top Go down

In progress Re: Confirmation Code when posting

Post by SLGray Wed 16 Oct - 1:26

Please try not to double post. Your posts should be separated by a 24 hour period. If you need to add something, press the edit button.

Is this happening every time when they post anything or posting something specific.


Confirmation Code when posting Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51554
Reputation : 3524
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Confirmation Code when posting

Post by DaveG Wed 16 Oct - 2:00

No it happens everytime they post, regardless of what it is
avatar
DaveG
Forumember

Posts : 71
Reputation : 1
Language : English

Back to top Go down

In progress Re: Confirmation Code when posting

Post by Guest Wed 16 Oct - 2:03

Please provide your forum url. =)
avatar
Guest
Guest


Back to top Go down

In progress Re: Confirmation Code when posting

Post by RadioHead Wed 16 Oct - 2:07

Hi,

What domain is the accounts email address? for example, hotmail.com, yahoo.com.au, live.com
RadioHead
RadioHead
Forumember

Posts : 336
Reputation : 23
Language : English (der?)

Back to top Go down

In progress Re: Confirmation Code when posting

Post by DaveG Wed 16 Oct - 3:01

avatar
DaveG
Forumember

Posts : 71
Reputation : 1
Language : English

Back to top Go down

In progress Re: Confirmation Code when posting

Post by Guest Wed 16 Oct - 3:09

Okay, I just took a look and as a registered member, it does not give me a confirmation code--it only gives me that when I am a guest.  Are registered members still having this problem?
avatar
Guest
Guest


Back to top Go down

In progress Re: Confirmation Code when posting

Post by DaveG Wed 16 Oct - 3:26

I don't think so, It was designed so that guests could communicate with us about the club..... is this not possible.
avatar
DaveG
Forumember

Posts : 71
Reputation : 1
Language : English

Back to top Go down

In progress Re: Confirmation Code when posting

Post by RadioHead Wed 16 Oct - 5:41

RadioHead wrote:Hi,

What domain is the accounts email address? for example, hotmail.com, yahoo.com.au, live.com
It could be linked to our internal anti-spam system, just need confirmation Smile
RadioHead
RadioHead
Forumember

Posts : 336
Reputation : 23
Language : English (der?)

Back to top Go down

In progress Re: Confirmation Code when posting

Post by levy Wed 16 Oct - 7:51

You can't add the CAPTCHA anti spam system because you need PHP , here it is an example

First part -
Code:
<form method="POST" name="contact_form"
action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?>">
 
<label for="name">Name: </label>
<input type="text" name="name"
value="<?php echo htmlentities($name) ?>">
 
<label for="email">Email: </label>
<input type="text" name="email"
value="<?php echo htmlentities($visitor_email) ?>">
 
<label for="message">Message:</label>
<textarea name="message" rows=8 cols=30
><?php echo htmlentities($user_message) ?></textarea>
 
<img src="captcha_code_file.php?rand=<?php echo rand(); ?>"
id="captchaimg" >
<label for="message">Enter the code above here :</label>
<input id="6_letters_code" name="6_letters_code" type="text">
 
<input type="submit" value="Submit" name="submit">
</form> 
Validating - you can't add because forumotion don't allow to manage php
Code:
if(isset($_POST['submit']))
{
  if(empty($_SESSION['6_letters_code'] ) ||
    strcasecmp($_SESSION['6_letters_code'], $_POST['6_letters_code']) != 0)
  {
      //Note: the captcha code is compared case insensitively.
      //if you want case sensitive match, update the check above to
      // strcmp()
    $errors .= "\n The captcha code does not match!";
  }
 
  if(empty($errors))
  {
    //send the email
    $to = $your_email;
    $subject="New form submission";
    $from = $your_email;
    $ip = isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : '';
   
    $body = "A user  $name submitted the contact form:\n".
    "Name: $name\n".
    "Email: $visitor_email \n".
    "Message: \n ".
    "$user_message\n".
    "IP: $ip\n"; 
   
    $headers = "From: $from \r\n";
    $headers .= "Reply-To: $visitor_email \r\n";
   
    mail($to, $subject, $body,$headers);
   
    header('Location: thank-you.html');
  }
}
I'm sorry for you but , out of PHP , you can't do that.
levy
levy
Hyperactive

Male Posts : 2631
Reputation : 350
Language : English, Romanian
Location : Romania

https://portofolio.goodforum.net/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum