cloudy

Author Topic: Free Contact Form PHP Script with image captcha - OLD VERSION  (Read 40593 times)

0 Members and 1 Guest are viewing this topic.

Offline MCHALLIS

  • Posts: 2,102
  • Long Beach, WA USA
    • Weather for Long Beach, WA USA
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #195 on: November 22, 2009, 06:40:37 AM »
I added 5 random fonts along with 31 random backgrounds to the CAPTCHA
http://www.642weather.com/weather/contact_us.php

This is the modified CAPTCHA version I use now (I just updated it again)
http://www.642weather.com/weather/scripts/captcha-secureimage.zip

You can install it, just replace your /captcha-secureimage/ folder with this one.


Offline jjmcnelly

  • Posts: 263
  • Napavine, WA
    • Cedar Ridge Weather Station, Napavine WA 98565
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #196 on: November 22, 2009, 05:39:41 PM »
I added 5 random fonts along with 31 random backgrounds to the CAPTCHA
http://www.642weather.com/weather/contact_us.php

This is the modified CAPTCHA version I use now (I just updated it again)
http://www.642weather.com/weather/scripts/captcha-secureimage.zip

You can install it, just replace your /captcha-secureimage/ folder with this one.

Wow!  Great work!!!  Thanks

Offline MCHALLIS

  • Posts: 2,102
  • Long Beach, WA USA
    • Weather for Long Beach, WA USA
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #197 on: January 28, 2010, 05:27:04 PM »
Version: 1.4 - 28-Jan-2010 - Added setting to enable or disable form fieldset border.
- Simplified blank field messages (and removed the word "error" from them).
- Text labels changes: 'E-Mail' change to 'Email', 'e-mail' changed to 'email'.
- CAPTCHA function can now report server cookie problems.

Download link in 1st post

Offline Bergerie

  • EndUser
  • Posts: 145
  • Montauroux, France
    • MeteoMontauroux
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #198 on: February 02, 2010, 08:33:47 PM »
The following works: <img src="./images/ctf-loading.gif" alt="Returning to Home Page" />&nbsp;&nbsp;
Returning to Home Page...

but
<img src="./images/contact/ctf-loading.gif" alt="Returning to Home Page" />&nbsp;&nbsp;
Returning to Home Page...
results in "Returning to Home Page Returning to Home Page..."

Though no big deal, I like to know why the second option failed.
Rgds
Dick

Offline MCHALLIS

  • Posts: 2,102
  • Long Beach, WA USA
    • Weather for Long Beach, WA USA
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #199 on: February 04, 2010, 12:42:54 AM »
The following works: <img src="./images/ctf-loading.gif" alt="Returning to Home Page" />&nbsp;&nbsp;
Returning to Home Page...

but
<img src="./images/contact/ctf-loading.gif" alt="Returning to Home Page" />&nbsp;&nbsp;
Returning to Home Page...
results in "Returning to Home Page Returning to Home Page..."

Though no big deal, I like to know why the second option failed.
Rgds
Dick

It would do that if the image was not found in the path you changed it to.

Offline MCHALLIS

  • Posts: 2,102
  • Long Beach, WA USA
    • Weather for Long Beach, WA USA
Hello,

I have started to use your script. It is on my villa rental website which I am writing (www.samuiholidayvillarental.com). The email sends, but i get error message and no thankyou page. I am a beginner with only text editor so I cannot debug. Please Help!



What was the error?
and what is the URL to the contact page?
« Last Edit: February 04, 2010, 12:45:38 AM by MCHALLIS »

Offline drobbins

  • Posts: 1,596
  • Kentucky, USA
    • Cave Country Weather
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #201 on: February 04, 2010, 02:23:50 AM »
My main page validates, but all other pages do not (error or message sent) Getting this messsage:
Quote
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /virtual/users/e15586-16411/web/top.php:101) in /virtual/users/e15586-16411/web/captcha-secureimage/securimage.php on line 422

http://www.cavecountryweather.com/contact.php
http://www.cavecountryweather.com/contact.php?action=send

Offline MCHALLIS

  • Posts: 2,102
  • Long Beach, WA USA
    • Weather for Long Beach, WA USA
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #202 on: February 04, 2010, 04:46:48 PM »
My main page validates, but all other pages do not (error or message sent) Getting this messsage:
http://www.cavecountryweather.com/contact.php
http://www.cavecountryweather.com/contact.php?action=send

Your contact page has to have session_start at the top before any other output or you will get that error.
This code must be at the top of your PHP script:
Code: [Select]
<?php
 
# mchallis says "session_start is required for the captcha-image to function,
 # and must be at the very top of the PHP script."
 # session_start() must be processed before any other output
 # or you might get a warning "headers already sent".
  
if( !isset( $_SESSION ) ) {
    
session_start();
  }
?>

Offline drobbins

  • Posts: 1,596
  • Kentucky, USA
    • Cave Country Weather
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #203 on: February 04, 2010, 05:49:14 PM »
I guess I need to get in the habit of checking for the latest version. There were many changes.
Thanks.

Offline marvin-miller

  • Posts: 2
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #204 on: August 27, 2010, 06:06:44 PM »
I added 5 random fonts along with 31 random backgrounds to the CAPTCHA
http://www.642weather.com/weather/contact_us.php

This is the modified CAPTCHA version I use now (I just updated it again)
http://www.642weather.com/weather/scripts/captcha-secureimage.zip

You can install it, just replace your /captcha-secureimage/ folder with this one.

Hi Mike;

I installed this script for a friend and it's awesome - thank you!
Quick question - I'm using 1.40 and how do I enable the random color/fonts options like on your contact form?

All we have is the ugly black & white one :-(

Offline MCHALLIS

  • Posts: 2,102
  • Long Beach, WA USA
    • Weather for Long Beach, WA USA
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #205 on: September 08, 2010, 03:29:10 PM »
 :D  8) :lol:
A new PHP script version of the contact form is coming in a few days that has all the features of my WordPress Fast Secure Contact Form including multi-forms, email auto responders and easy to add extra fields.
http://www.fastsecurecontactform.com/download-php-script

Fast Secure Contact Form for WordPress has been downloaded 560,000 times in one year! and is rated 5 stars by the WordPress community.
It is in the top 10 of the WordPress most popular (top 10 out of 11,000, wow 8O )

The PHP version is finished, I just have to package it with screen shots and a readme.txt, maybe it will be out this weekend.

The new version improvements:
PHP sessions are no longer needed, easier to install, has admin menu for editing forms, multi-forms, autoresponder emails, optional attachments fields, all new captcha library is built-in(can be turned off), preview forms while editing, can have multi-forms on same page, backup-restore tool, test email sending tool, multi-language support.
« Last Edit: September 08, 2010, 03:42:26 PM by MCHALLIS »

Offline marvin-miller

  • Posts: 2
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #206 on: September 08, 2010, 04:11:40 PM »
Cool !

Does that mean I'll be able to have random color/fonts options like on your contact form?

The admin menu sounds intriguing!

Offline CNYWeather

  • Professional Trophymaker!
  • Posts: 1,431
  • Rome, New York
    • CNYWeather.com
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #207 on: September 08, 2010, 05:38:46 PM »
Thats an amazing amount of downloads. Great job!!
Tony

CNYWeather.com
CWOP: CW2352
WeatherUnderground: KNYWESTM1


http://www.CNYWeather.com

I Make Trophies Too!
http://www.speedyawards.com

Offline MCHALLIS

  • Posts: 2,102
  • Long Beach, WA USA
    • Weather for Long Beach, WA USA
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #208 on: September 08, 2010, 10:41:15 PM »
Cool !

Does that mean I'll be able to have random color/fonts options like on your contact form?

The admin menu sounds intriguing!

Yes

Offline niko

  • syzygy
  • Global Moderator
  • Posts: 21,998
  • Crystal Ball broken! Please post the URL.
  • Northern California, U.S.A.
    • http://www.realweatherstation.com
Re: Free Contact Form PHP Script with image captcha - contact.php
« Reply #209 on: September 08, 2010, 10:51:46 PM »
That's oustanding, if not astounding, Mike, well done  =D&gt;