Just made the form emailer with a file upload. The files are sent to my server but when i try to click on the link in my email is takes me to http:/file/... and isn't directing me to my website.
Where do I change this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
There is a variable in the process.php file called "$where_form_is". This variable is not always populated correctly depending on your server. If you don't plan to move the form you can edit this variable to point directly to the form folder.
$where_form_is="http://yoururl/forms_folder_path/"));
Later in the process.php file you will see somthing like this that will be included in your email message.
FileName: ".$where_form_is."files/".$image_list[2]."
Just be sure that only the path (with trailing /) is specified with the "where_form_is" variable.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Just made the form emailer with a file upload. The files are sent to my server but when i try to click on the link in my email is takes me to http:/file/... and isn't directing me to my website.
Where do I change this?
There is a variable in the process.php file called "$where_form_is". This variable is not always populated correctly depending on your server. If you don't plan to move the form you can edit this variable to point directly to the form folder.
$where_form_is="http://yoururl/forms_folder_path/"));
Later in the process.php file you will see somthing like this that will be included in your email message.
FileName: ".$where_form_is."files/".$image_list[2]."
Just be sure that only the path (with trailing /) is specified with the "where_form_is" variable.