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 October 15th 2013, 11:38 pm

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 : 78
Reputation : 1
Language : English

Back to top Go down

In progress Re: Confirmation Code when posting

Post by Guest October 15th 2013, 11:49 pm

What is your forum version?
avatar
Guest
Guest


Back to top Go down

In progress Re: Confirmation Code when posting

Post by SLGray October 15th 2013, 11:57 pm

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 : 51512
Reputation : 3519
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 October 16th 2013, 12:19 am

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

Posts : 78
Reputation : 1
Language : English

Back to top Go down

In progress Re: Confirmation Code when posting

Post by DaveG October 16th 2013, 1:33 am

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

Posts : 78
Reputation : 1
Language : English

Back to top Go down

In progress Re: Confirmation Code when posting

Post by SLGray October 16th 2013, 3:26 am

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 : 51512
Reputation : 3519
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 October 16th 2013, 4:00 am

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

Posts : 78
Reputation : 1
Language : English

Back to top Go down

In progress Re: Confirmation Code when posting

Post by Guest October 16th 2013, 4:03 am

Please provide your forum url. =)
avatar
Guest
Guest


Back to top Go down

In progress Re: Confirmation Code when posting

Post by RadioHead October 16th 2013, 4:07 am

Hi,

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

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

Back to top Go down

In progress Re: Confirmation Code when posting

Post by DaveG October 16th 2013, 5:01 am

avatar
DaveG
Forumember

Posts : 78
Reputation : 1
Language : English

Back to top Go down

In progress Re: Confirmation Code when posting

Post by Guest October 16th 2013, 5:09 am

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 October 16th 2013, 5:26 am

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 : 78
Reputation : 1
Language : English

Back to top Go down

In progress Re: Confirmation Code when posting

Post by RadioHead October 16th 2013, 7:41 am

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 : 337
Reputation : 23
Language : English (der?)

Back to top Go down

In progress Re: Confirmation Code when posting

Post by levy October 16th 2013, 9:51 am

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 : 2632
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