I have a formmail.pl script that works on all of my websites but it will not work on a company intranet environment. When i click submit on the form that I am trying to send through it says:
The form attempting to use FormMail resides at which is not allowed to access this program.
If you are attempting to configure FormMail to run with this form, you need to add the following to @referers, explained in detail in the README file.
Add 'florida' to your @referers array.
-----------------------------------------------------
I removed the line from referrers that used to say:
@referers = qw(
and replaced with:
@referers = qw(florida);
and I also tried:
@referers = qw(localhost);
Still no luck. What line of code do I need to put on my script to make it work from within the intranet?
This might sound stupid, but not having access to CuteFTP or another FTP manager, how can I change the CHMOD on the script to 755? To gain access to the folder where all the files are, including the cgi-bin folder which I made nested in the main folder all I have to do is open an explorer window. I am used to right clicking on the file or folder and access the CHMOD setting where I change the permissions from 644 to 755.
Thanks in advance.
The form attempting to use FormMail resides at which is not allowed to access this program.
If you are attempting to configure FormMail to run with this form, you need to add the following to @referers, explained in detail in the README file.
Add 'florida' to your @referers array.
-----------------------------------------------------
I removed the line from referrers that used to say:
@referers = qw(
and replaced with:
@referers = qw(florida);
and I also tried:
@referers = qw(localhost);
Still no luck. What line of code do I need to put on my script to make it work from within the intranet?
This might sound stupid, but not having access to CuteFTP or another FTP manager, how can I change the CHMOD on the script to 755? To gain access to the folder where all the files are, including the cgi-bin folder which I made nested in the main folder all I have to do is open an explorer window. I am used to right clicking on the file or folder and access the CHMOD setting where I change the permissions from 644 to 755.
Thanks in advance.