ActiveDen

PHP XML Contact Form with Map

  • Has been a member for 2-3 years
  • Bought between 100 and 499 items
kevincorbett says
Purchased

Hi,

I purchased the xml php contact form with map and have added into a project I’m doing. When I go to send the information the the browser gets stuck on the “Transfering information from etc.” in the footer bar. I have accessed the php file directly with no problems and also tested this on 2 different servers, and also uploaded the file directly on it’s own with no changes (except the address in the xml of course). Any ideas as I need this asap for a project. I’m sure it’s probably something stupid, I’ve used your products before which are excellent with no trouble. Thank you.

http://www.vbc.ie/westernslateandstone/ http://vbcireland.brinkster.net/contactformtest/

2 years ago
Author
digitalscience digitalscience replied

that’s odd.. have you moved the location of the PHP form? have you changed any of the ActionScript? is PHP enabled on your server?

2 years ago
  • Has been a member for 2-3 years
  • Bought between 100 and 499 items
kevincorbett says
Purchased

PHP is enabled on both, I have used php based contact forms on both servers before, haven’t touched the actionscript (did I need to?) and all files are in the exact folders. Changes to the xml (name etc.) are loading fine. It is odd, I really can’t figure it. Also tried 2 different mail addresses.

2 years ago
Author
digitalscience digitalscience replied

Seems to be something wrong your PHP server, see this link http://vbcireland.brinkster.net/contactformtest/contact/formSubmit.php

This form works, and you are the first to report that it doesn’t so it has to be a problem unique to your server, are you sure there nothing that you are overlooking? It’s a simple script so should work no problem.

2 years ago
  • Has been a member for 4-5 years
  • Bought between 10 and 49 items
sirdon says
Purchased

Hi,

When i submit the email the status_msg does not display ‘sending…’ and then ‘message sent’ and it does not clear the fields. It still sends the email to the allocated email address, but it is confusing for the user if the status msg does not display and the fields do not clear.

Its werid… the first time i did it it worked…then ever since then it does not now. Dont know what i did. could you have a look for me.

www.fxplastics.com.au/contact_us.html

Thanks

2 years ago
Author
digitalscience digitalscience replied

Well I can see you have made extensive changes to the file so most likely you’ve changed something that has broken some functionality. Check your code and changes you have made.

2 years ago
  • Has been a member for 4-5 years
  • Exclusive Author
  • Bought between 100 and 499 items
  • Mexico
jtorres_mora says

What is you $2 file offer? The price acctually show $8 How can I access the announcement of your offer?

You banner show “PHP ONLY $2 FOR A LIMITED TIME GET IT NOW , Click to view”

Thanks for you help.

2 years ago
Author
digitalscience digitalscience replied

The price was originally $15… it was then reduced to $2 as part of the Bargin Collection files promotion… but it appears to was selling to sell and they’ve increased it to $6 for prepaid customers, and $8 for buy now…

But it is still more than half price from the original price for a limited time.

2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
  • Greece
merovatis says
Purchased

Hi,

Im trying to load the swf in a template by calling it though the xml of the template

Contact

Does this work? I have a small problem and i dont know if its template’s problem or its the swf (play Looped and i can not select subject from combobox)

Thanks

George

2 years ago
Author
digitalscience digitalscience replied

Is the file you loading this into an AS3 file, that could be the problem.

2 years ago
  • Has been a member for 2-3 years
  • Bought between 50 and 99 items
DavidPoirot says
Purchased

Hello,

The form is working great but I do have a major problem. Encoding for French accentuation. I need this form to work on a French site and characters such as éèàù will give me “éèà ç” as a result. This need to work or this form ends up being useless for me. I tried the UTF -8 and other codes… any ideas?

2 years ago
  • Has been a member for 2-3 years
  • Bought between 50 and 99 items
DavidPoirot says
Purchased

Hello,

The form is working great but I do have a major problem. Encoding for French accentuation. I need this form to work on a French site and characters such as éèàù will give me “éèà ç” as a result. This need to work or this form ends up being useless for me. I tried the UTF -8 and other codes… any ideas?

2 years ago
Author
digitalscience digitalscience replied

have you embedded the special characters into the text fields, see my General File FAQ

2 years ago
  • Has been a member for 2-3 years
  • Bought between 50 and 99 items
DavidPoirot says
Purchased

Yes, I did. It does work within the flash file except for the letter “ù”. But I am talking about the result of the form. all the accents “é,è,à,ç,ù” are transformed into “éèà ç” making it hard to read…

2 years ago
  • Has been a member for 1-2 years
  • Bought between 1 and 9 items
craiggallup says

Can you add your location on the map?

2 years ago
  • Has been a member for 2-3 years
  • Bought between 100 and 499 items
chc says
Purchased

Hello, This is for DavidPoirot and anybody who wants special caracters in the mail. You have not to change anything in the fla. Just change the php. et vous aurez un email nickel. See below the code for the formSubmit.php

<?php $sendTo = utf8_decode($_GET[“SendTo”]); $name = utf8_decode($_GET[“Name”]); $name =stripcslashes($name); $email = utf8_decode($_GET[“Email”]); $subject = utf8_decode($_GET[“Subject”]); $message = utf8_decode($_GET[“Msg”]); $message =stripcslashes($message);

$headers = ’\nMIME-Version: 1.0\n’ . ”\r\n” ; $headers = ‘Content-Type:text/html; charset=\”iso-8859-1’.’Content-Transfer-Encoding: 7bit\n\n’ . ”\r\n” ; $headers = “From: $name <$emai?> \r\n”;

$msg = “Name: ”.$name.”\n\nE-mail: ”.$email.”\n\nMessage: ”.$message.””; mail($sendTo, $subject, $msg, $headers);

echo “sent=success”;

?>

Best regards Christian

2 years ago
  • Has been a member for 2-3 years
  • Bought between 100 and 499 items
chc says
Purchased

<?php $sendTo = utf8_decode($_GET[“SendTo”]);

$name = utf8_decode($_GET[“Name”]);

$name =stripcslashes($name);

$email = utf8_decode($_GET[“Email”]);

$subject = utf8_decode($_GET[“Subject”]);

$message = utf8_decode($_GET[“Msg”]);

$message =stripcslashes($message);

$headers = ’\nMIME-Version: 1.0\n’ . ”\r\n” ;

$headers = ‘Content-Type:text/html; charset=\”iso-8859-1’.’Content-Transfer-Encoding: 7bit\n\n’ . ”\r\n” ;

$headers = “From: $name <$emai?> \r\n”;

$msg = “Name: ”.$name.”\n\nE-mail: ”.$email.”\n\nMessage: ”.$message.””;

mail($sendTo, $subject, $msg, $headers);

echo “sent=success”;

?>

2 years ago
  • Has been a member for 2-3 years
  • Bought between 100 and 499 items
chc says
Purchased

Hello, I’ve send you 3 mails throught your system to have a quote for customization. But each time no answer !!! Have you some problem with your engine ? Could you give me an answer Thanks a lot

2 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
lizzard86 says

1.Can a captcha type feature be compatible and added? 2. Can I add multiple maps like this on it also?

2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
  • Spain
enriquetortosa says

can the map be changed in xml? is a jpg? thanks!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

1 year ago
Author
digitalscience digitalscience replied

Yes, the path to the map is in XML .. and you can swap out the jpg which is outside of the Flash.

1 year ago
  • Has been a member for 1-2 years
  • Bought between 10 and 49 items
khairqawiem says
Purchased

hi digitalscience,

thanks for the awesome form! may I know what need to be changed if I want the enquiries to be sent to different emails depending on the subject?

Say, General Enquiry send to support@abc.com, Human Resource Enquiry send to recruitment@abc.com and so forth.

Appreciate your help.

Thanks!

1 year ago
  • Has been a member for 1-2 years
  • Bought between 10 and 49 items
  • Turkey
mondi34 says
Purchased

Hi digitalscience,

My site as3-based, but it does not work for your script as is 2. How do you convert to as3.

Appreciate your help.

Thanks!

11 months ago
by
by
by
by
by