I tested where the CAPTCHA image is required and, interestingly, it works absolutely fine. If you don't match the image, it goes to the error page. So, it seems to be a problem related solely to...
Welcome to the Tectite Forums! You can download and get support for our free PHP FormMail (form processor) and other free software.
Type: Posts; User: Nisitiiapi
I tested where the CAPTCHA image is required and, interestingly, it works absolutely fine. If you don't match the image, it goes to the error page. So, it seems to be a problem related solely to...
I did try a more simplified setup with a plain html error page before I posted, but it made no difference. And our server is not Windows based (thank goodness), it is Linux.
I can't seem to track...
When I was upgrading my formmail scripts to the newest version and testing, I discovered an error between verifyimg and fmbadhandler. However, apparently, it happened with the old version, too, but...
I may have solved the problem, but I think it is only a temporary fix and not necessarily a proper solution. The problem seems to be the flushing of the output buffer on line 4713 (which is in the...
I just discovered that formmail is no longer correctly going to my "good_url" entry. It has all be fine and I've made no changes, but suddenly, it only goes to the default page. bad_url is working...
No problem. Glad you got it fixed. Good luck.:)
I've made a couple minor updates to this script awhile back, in case anyone uses it. This is the new code I am currently using. I don't think I fixed any bugs or anything. I believe most of the...
That's awesome. I was trying to do the same thing as you -- find some emails with spam I could look at, but all the ones I had used a web address for images. I kept waiting to get something, but...
That's what I'm afraid of. If I were just writing a script to send an email with an inline image, it would be something like this:
$userfile =...
I have HTML email templates that include some images (a company logo and background image). Right now, the images are loaded from the internet (i.e., the source code is something like <img...
I see. The concept would be very much the same -- altering the error messages sent by formmail. But, if you want the information they are entering even if they don't match the image, it sounds...
Page looks good. Glad it's all working out.
Hmmm.... I think it probably is more of editing formmail or fmbadhandler. The email will send to you even if they mis-type the image string. So, you...
Sweet. Glad to hear it. You should post a link when you're done so everyone can check it out.
The first error probably has to do with the placement of your php code. There's a couple of issues this could be, but it basically is saying that your are trying to send headers for the page a...
Oops, I forgot to delete one of the } when I removed the cookie checking from my site. Delete the } at the end of that line and you should have this:
if( !defined(SID) )
session_start();...
Glad to hear it! Adding the refresh image link is pretty easy. The easiest way is to use a javascript. I've made something a little more complicated, but it's geared toward limiting the number of...
Not a problem at all. I'm glad it's a useful script. Leaving the images blank is the right idea.
I think the only problem you have is the name for the input field. It should be 'arverify' for...
Is it that the image doesn't display? I think I forgot to mention the fonts and images. My bad. :o If you notice, there's a variable for the path to true type fonts and also one for images. You...
Do you have the "autorespond" input in your form? It should look something like this
<input type="hidden" name="autorespond"...
I think that's your problem. Try setting TEMPLATEDIR to the full path. Like '/home/path/to/fmtemplates'. Or, make TEMPLATEDIR blank and set TEMPLATEURL=$SCHEME.$SERVER.'/path/to/fmtemplates'...
I don't see anything wrong with the template. What are $TEMPLATEDIR and $TEMPLATEURL set to in formmail.php?
You should post the html code of the form so we can take a look at it. But, I would make sure the links/filenames in your form or .ini file are correct and also make sure the server is not...
You can redirect to the page they were viewing before filling out the form. I've done it on one site that I use formmail on, but yes, it does require using php. For the site I did it on, I first...
Have you tried increasing MAXSTRING in formmail? It's around line 3,740.
For some reason, I got a bug and worked on a different CAPTCHA image and got it to work with formmail. I actually worked off of the visual CAPTCHA available http://www.ejeliot.com/pages/2, but made...