Confirmation Code when posting
4 posters
Page 1 of 1
Confirmation Code when posting
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
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
DaveG- Forumember
- Posts : 71
Reputation : 1
Language : English
Re: Confirmation Code when posting
It could be that they are posting something that is triggering the anti-spamming system.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Confirmation Code when posting
Sorry not sure where to get this info.Leah7 wrote:What is your forum version?
DaveG- Forumember
- Posts : 71
Reputation : 1
Language : English
Re: Confirmation Code when posting
OK sorry, I found the Forum Version It's phpBB3
DaveG- Forumember
- Posts : 71
Reputation : 1
Language : English
Re: Confirmation Code when posting
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.
Is this happening every time when they post anything or posting something specific.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Confirmation Code when posting
No it happens everytime they post, regardless of what it is
DaveG- Forumember
- Posts : 71
Reputation : 1
Language : English
Re: Confirmation Code when posting
Hi,
What domain is the accounts email address? for example, hotmail.com, yahoo.com.au, live.com
What domain is the accounts email address? for example, hotmail.com, yahoo.com.au, live.com
RadioHead- Forumember
- Posts : 336
Reputation : 23
Language : English (der?)
DaveG- Forumember
- Posts : 71
Reputation : 1
Language : English
Re: Confirmation Code when posting
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?
Guest- Guest
Re: Confirmation Code when posting
I don't think so, It was designed so that guests could communicate with us about the club..... is this not possible.
DaveG- Forumember
- Posts : 71
Reputation : 1
Language : English
Re: Confirmation Code when posting
It could be linked to our internal anti-spam system, just need confirmationRadioHead wrote:Hi,
What domain is the accounts email address? for example, hotmail.com, yahoo.com.au, live.com
RadioHead- Forumember
- Posts : 336
Reputation : 23
Language : English (der?)
Re: Confirmation Code when posting
You can't add the CAPTCHA anti spam system because you need PHP , here it is an example
First part -
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>
- 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');
}
}
Similar topics
» Confirmation code
» Confirmation code to post
» Confirmation code?
» Confirmation Code
» Confirmation code/Signature and posts can't be edited
» Confirmation code to post
» Confirmation code?
» Confirmation Code
» Confirmation code/Signature and posts can't be edited
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum