Contact form not allowing certain characters

Hi
I added a contact form to a site, and the input fields aren't allowing numbers or certain letters.
If I test the contact form swf by itself, it works fine.  But as soon as I test it in the site, the problem occurs.
I haven't got any other actionscript around the contact form, so am puzzled.
I would sure appreciate someone taking a look to see if anything obviou is wrong.
The site is www.skinrevival.com.au  - the contact link is on the bottom left menu.
Cheers guys
Shaun

U should enable the Numerals and puctuation to accept the special and number chanacters. find the attached image for your reference.
Thanks
Thil

Similar Messages

  • Contact form not accepting certain characters in the email box

    Hi, i am currently using a flash template from flashmo.com and i have installed it etc... The problem i have is that when you go to send a message in the contact form you cannot enter certain characters in the email box, especially the '@' symbol, hw do i go about fixing this?
    Thanks a lot

    for each textfield you see in the ide, click it (to select it) and check the properties panel/embed fonts to make sure all characters needed in your app are checked.

  • Adobe muse CC contact form not emailing correctly

    the adobe muse contact form not emailing to address in form. it's correct within form, link in Muse, and the address is correct within web hosting files. please advise. thx

    Responded to your other thread - http://forums.adobe.com/message/5555450#5555450.
    Thanks,
    Vinayak

  • Contact Widget not allowing message to be left

    Hi,
    I am new to this, all seems to be going well except I have added the Contact form widget which includes the Message box with multiline reply. When I publish the site I am unable to enter information into that box. ANy ideas why?
    CHeers.

    Note that it's not allowing to enter the verification code and to use the submit button as well.
    The most probably reason behind the issue is that some component (an image frame, or a rectangle or any other component or frame), is overlapping that part of the form. Please open this page in Muse in the design mode, and then look for the overlapping component. You may also want to "Select All" in that page and look for the same. Once located, remove it and republish the site, and that should resolve the issue.
    Hope this helps.
    Cheers
    Parikshit

  • Contact form not working :( Please Help...

    Hey guys,
    I am really in trouble with flash forms and need help please. Ive been trying to get a contact form working for a few weeks but have had no luck.
    Below is the code I am putting in to the flash form and php file.
    (this is the code I have put for the send Button)
    on (release) {
             if (name eq "" or subject eq "" or message eq "" or email eq "") {
                   stop();
             } else {
             loadVariablesNum("form.php", 0, "POST");
             gotoAndStop(2);
    (this is the code I have put for the clear Button)
    on (release) {
        name = "";
        subject="";
        message="";
        email="";
    (And this is the php file i created in dreamweaver and saved it as form.php)
    $to = "[email protected]";
       $msg = "$name\n\n";
       $msg .= "$message\n\n";
      mail($to, $subject, $msg, "Message From: Online client\nReply-To: $email\n");
    ?>
    I have uploaded the swf file and php file on the server but my form is still not working by sending the information to my email.
    This is the link where i got the code from http://www.flashvault.net/tutorial.asp?ID=103
    It would be really greatful if someone could help me please
    I look forward to your opinions and ideas.
    Thanks

    you should really check a tutorial using loadvars.
    and there's no hope for that php file.:
    try:
    $to = "youremailaddress @ yourserver.com"; // change this to your email address
      $email=$_POST["email"];
       $msg = $_POST["name"]."\n\n";
       $msg .= $_POST["message"]."\n\n";
      mail($to, $subject, $msg, "Message From: Online client\nReply-To: $email\n");
    ?>

  • Not allowed Special characters

    Hi Gurus,
    iam getting an error while activating the DSO request
    The error is 
    u201CValue 'E Byron Car Realignment' (hex. '450020004200790072006F006E002000430061007200200052') of characteristic ZCOITEMTX contains invalid charactersu201D
    I donu2019t understand what invalid character it is containing
    Apart from this I am getting error for the special character u201C|u201D
    How to use both the special characters at RSKC
    Please suggest
    Thank you

    Hi,
         According to me ZCOITEMTX is not allowing lower case. you can check for this infoobject in RSD1, at General tab Lowercase Letter check box is check or not?
    this will solve your issue.
    regards,

  • April 1 2013 - contact form not sending - need a review of code - see below

    i have a html5 responsive design for website - tested out the contact page and the [email protected] email links in the about and at bottom of website in dreamweaver CS5 on my computer and it works - these do not work when tested from iphone or other computer - can you review the code below and provide any soultions to get the email links and the contact page to work?
    <div class="space"> </div>
            <div class="clear"> </div>      
            <div class="clear"> </div>
          </div>
        </div>
        <div class="page" id="contact">
          <!-- page contact -->
          <h3 class="page_title"> Let's Get Started</h3>
          <div class="page_content">
            <fieldset id="contact_form">
              <div id="msgs"> </div>
              <form id="cform" name="cform" method="post" action="">
                <input name="name" type="text" class="whitetextcontent" id="name" onfocus="if(this.value == 'Full Name*') this.value = ''"
                                onblur="if(this.value == '') this.value = 'Full Name*'" value="Full Name*" />
                <input name="email" type="text" class="whitetextcontent" id="email" onfocus="if(this.value == 'Your Email Address*') this.value = ''"
                                onblur="if(this.value == '') this.value = 'Your Email Address*'" value="Your Email Address*" />
                <input name="subject" type="text" class="whitetextcontent" id="subject" onfocus="if(this.value == 'Subject*') this.value = ''"
                                onblur="if(this.value == '') this.value = 'Subject*'" value="Subject*" />
                <textarea name="message" class="whitetextcontent" id="message" onfocus="if(this.value == 'Your Message*') this.value = ''"
                                onblur="if(this.value == '') this.value = 'Your Message*'">Your Message*</textarea>
                <button id="submit" class="button"> Send Message</button>
              </form>
            </fieldset>
            <div class="clear"> </div>
          </div>
        </div>
        <div class="footer">
          <p><a href="mailto:[email protected]">© 2013 Karen P White Design, LLC</a></p>
        </div>
      </div>

    greetings everyone -
    thank  you for your quick replys - i reviewed and did some digging .....
    to answer some of your Qs:
    J Carp:  thanx for noting the blank between""   i found a contact.php file and added "[email protected]" between the "" so it would point to the PHP script that processes the form.
    M summers: the forms code is in php for the contact forms subscription.  index html for the main page and contact.php for form part
    Nancy O - not sure i understand this fully "
    "mailto: links only work on devices that have dedicated e-mail software installed on them.  If the end user doesn't have e-mail software, the mailto link does nothing.".... "
    Best practice is to use a form-to-email processing script that hides your address from robots and has spam prevention built in.
    Contact your web host.  Many hosts provide scripts on their servers which you can activate through your Admin Panel or by referencing the script in your form's action attribute.
         <form action="path-on-server/form-to-email-script.php">"
    BUT it helped me to see that i had to dig and look for other files that needed editing. thanx
    i have done testing from different browsers on different computers for the contact form send/submit page and it is working so far.
    thank you all for this information - it all has helped. i will be reviewing the email "mailto" href link now to see if that works....
    KPW

  • Emails from contact form not working

    I have a contact form on one of my website and it is not working properly. 
    Muse gives me a warning of not using another email than connected to the domain of the web.
    As I use Gmail in this particular website it is not working.
    How to solve this?
    Thanks
    Pétur

    Hi,
    I have and they told me they use SMTP authentication for their incoming emails.
    They also tried to work on Muse PHP code for me - but did not manage to configure it correctly for emails through SMTP from forms in Adobe Muse.
    The problem is that I have a customer that is not receiving any inquiries from his customers because the form on his website is not working.
    Do I have to use Businesscatalyst - is it alright there to use Gmail to send emails from forms hosted there?
    Hope you have some solution - I have to solve this
    Reg.
    Pétur

  • Muse Contact Form Not Taking Inputs

    Hi there,
    Could anyone shed some light as to why my contact forms (http://www.excelenvironmental.co.uk) are not taking inputs on the name, email and phone no fields? I am using the built in business catalyst forms - ecommerce package. Any help would be gratedully received.
    Thanks

    Hi
    I have tried to test the form placed in contact page and it works fine.
    User information is submitted and thank you message is displayed on submission.
    Please clear browser cookie and try again or check with a different browser.
    If you are still facing the same issue, provide details such as browser and version details.
    Thanks,
    Sanjit

  • Please help !! Contact form not sending mail

    www.concretegta.com
    in the contact us page i have made a little contact form, but i am not recieving mail to my email. Can someone please help, http://www.concretegta.com/contact.html is where the form is.
    this is the coding for the php
    <?php
    $mailto = '[email protected]' ;
    $subject = "Feedback from General Concrete Solutions" ;
    $formurl = "http://www.concretegta.com/contact.html" ;
    $thankyouurl = "http://www.concretegta.com/emailsent.html" ;
    $errorurl = "http://www.johnsmith.com/oops.html" ;
    $email_is_required = 1;
    $name_is_required = 1;
    $comments_is_required = 1;
    $uself = 0;
    $forcelf = 0;
    $use_envsender = 0;
    $use_sendmailfrom = 0;
    $smtp_server_win = '' ;
    $use_webmaster_email_for_from = 0;
    $use_utf8 = 1;
    $my_recaptcha_private_key = '' ;
    // -------------------- END OF CONFIGURABLE SECTION ---------------
    define( 'MAX_LINE_LENGTH', 998 );
    $headersep = $uself ? "\n" : "\r\n" ;
    $content_nl = $forcelf ? "\n" : (defined('PHP_EOL') ? PHP_EOL : "\n") ;
    $content_type = $use_utf8 ? 'Content-Type: text/plain; charset="utf-8"' : 'Content-Type: text/plain; charset="iso-8859-1"' ;
    if ($use_sendmailfrom) {
    ini_set( 'sendmail_from', $mailto );
    if (strlen($smtp_server_win)) {
    ini_set( 'SMTP', $smtp_server_win );
    $envsender = "-f$mailto" ;
    $fullname = isset($_POST['fullname']) ? $_POST['fullname'] : $_POST['name'] ;
    $email = $_POST['email'] ;
    $comments = $_POST['comments'] ;
    $http_referrer = getenv( "HTTP_REFERER" );
    if (!isset($_POST['email'])) {
    header( "Location: $formurl" );
    exit ;
    if (($email_is_required && (empty($email) || !preg_match('/@/', $email))) || ($name_is_required && empty($fullname)) || ($comments_is_required && empty($comments))) {
    header( "Location: $errorurl" );
    exit ;
    if ( preg_match( "/[\r\n]/", $fullname ) || preg_match( "/[\r\n]/", $email ) ) {
    header( "Location: $errorurl" );
    exit ;
    if (strlen( $my_recaptcha_private_key )) {
    require_once( 'recaptchalib.php' );
    $resp = recaptcha_check_answer ( $my_recaptcha_private_key, $_SERVER['REMOTE_ADDR'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field'] );
    if (!$resp->is_valid) {
      header( "Location: $errorurl" );
      exit ;
    if (empty($email)) {
    $email = $mailto ;
    $fromemail = $use_webmaster_email_for_from ? $mailto : $email ;
    if (function_exists( 'get_magic_quotes_gpc' ) && get_magic_quotes_gpc()) {
    $comments = stripslashes( $comments );
    $messageproper =
    "This message was sent from:" . $content_nl .
    "$http_referrer" . $content_nl .
    "------------------------------------------------------------" . $content_nl .
    "Name of sender: $fullname" . $content_nl .
    "Email of sender: $email" . $content_nl .
    "------------------------- COMMENTS -------------------------" . $content_nl . $content_nl .
    wordwrap( $comments, MAX_LINE_LENGTH, $content_nl, true ) . $content_nl . $content_nl .
    "------------------------------------------------------------" . $content_nl ;
    $headers =
    "From: \"$fullname\" <$fromemail>" . $headersep . "Reply-To: \"$fullname\" <$email>" . $headersep . "X-Mailer: chfeedback.php 2.16.2" .
    $headersep . 'MIME-Version: 1.0' . $headersep . $content_type ;
    if ($use_envsender) {
    mail($mailto, $subject, $messageproper, $headers, $envsender );
    else {
    mail($mailto, $subject, $messageproper, $headers );
    header( "Location: $thankyouurl" );
    exit ;
    ?>

    >? i dont understand why there would be secuirity
    >risks... did i do something wrong??
    Most of the time McAfee SiteAdvisor gets it right but it's not perfect. It's possible there is something suspicious on your site but if you think everything is ok request a review:
    https://www.siteadvisor.com/analysis/recommendchanges/?url=http%3A//www.concretegta.com/

  • Why does my contact form not work either muse or my own html coded form?

    I used the muse contact form and uploaded the website to my host but it does not send emails... it says it has sent but nothing arrive to email account.
    Then i decided to remove the muse contact form and use my tried and tested EmailMeForm html embed code which works. BUT........... if i look on preview the contact form stays in the correct position on the page. when i upload to the host the contact form moves up the page.
    can somebody help?

    Hi,
    When I first enabled my Muse contact form, it reported that the email was sent but I didn't receive the email.  I discovered the emails were going to my spam folder.  This was when I used my own domain email address--the same domain as my Muse website.  When I put my Gmail address into the contact widget, the messages arrived in Gmail as expected.
    I am able to receive messages in my initial email account (my domain name) by creating a message rule.  I also found that you can use two email addresses in the contact widget form, separating them with a comma: [email protected],[email protected]
    John

  • Contact form not including 'name' or 'message'

    The default short _Footer-Contact form is not confirming the message enter into the text area box, and not send the message either.
    See gswichita.businesscatalyst.com - send me a message from the contact form in footer and when you get confirmation, the message you sent will probably be missing.
    I changed the original default form to *Required field for the text area, and here is the HTML for that problem form area, but doubt that's were the problem is for the submit.
    <textarea name="CAT_Custom_389795" id="CAT_Custom_389795" cols="10" rows="4" onkeydown="if(this.value.length&gt;=4000)this.value=this.value.substring(0,3999);" placeholder="Message"></textarea>
    More footer form problems:
    1. after submitting message, use the back button to page where form was submitted; form data was not cleared, which could lead to duplicate submissions.
    2. email auto-responder appended the reply with "Course List" and some backend code at the bottom, but did NOT include the Name or the message that was submitted.
    Case Number
    1140008
    Your Name
    Message
    Course List
    {module_webapps,904,a,,,,true,-1,,1}
    {module_contentholder, name="_Template - Testimonials"} {module_contentholder, name="_Template - Events List"}
    Thanks,
    Heidi

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • Contact Form not working - urgent!

    I've done all the test from this doc: Troubleshooting Muse Form Widgets Used on Third-Party Servers
    But no success!
    Can somebody help me, please?
    www.cuidarepsicologia.com.br

    Did you get my test mail via the contact form?
    from [email protected]

  • Contact form Not working with Hotmail Accounts

    Hi, I have a problem with all the sites i have built with Muse. If the customer filling in any of the contact form on the websites uses a hotmail email account ( [email protected] )
    I get the following error message 'The server encountered a problem'
    Ive read that this could be a problem with my third party hosting company but they assure me that this is being caused by an error on the form
    Can anyone help with this please

    Ok so i have sorted the issue myself with NO THANKS to adobe
    Heres what everyone needs to do!
    Go to the following file public html - scripts - form process.php
    You then need to edit the following: ( line 103 )
    function get_email_headers($to_email, $form_email) {
      $headers = 'From: ' . $to_email . PHP_EOL;
      $headers .= 'Reply-To: ' . $form_email . PHP_EOL;
      $headers .= 'X-Mailer: Adobe Muse CC 2014.2.0.284 with PHP' . PHP_EOL;
      $headers .= 'Content-type: text/html; charset=utf-8' . PHP_EOL;
      return $headers;
    This needs changing to the following:
    function get_email_headers($to_email, $form_email) {
    $headers = 'From: ' . $to_email . PHP_EOL;
    $headers .= 'Reply-To: ' . $form_email . PHP_EOL;
    $headers .= 'MIME-Version: 1.0' . PHP_EOL;
    $headers .= 'X-Mailer: Adobe Muse CC 2014.2.0.284 with PHP' . PHP_EOL;
    $headers .= 'Content-type: text/html; charset=utf-8' . PHP_EOL;
    return $headers;
    The form will now work with hotmail, Gmail etc etc
    Hope this helps anyone having the same problem

  • E-mail from contact form not forwarding to e-mail host provider

    I just made updates to and existing Muse file and now the email from the contact form isn't going through to my email provider.
    Anyone else having this issue in Muse 2014?
    Thanks.
    Craig

    Hi,
    I've no idea how you can suppress such an message in MS Outlook. I'm a little bit surprised though, you have chosen an OLE2 approach. Why don't you simply send e-mail messages from the database using utl_smtp or utl_mail ?
    Hope this helps,
    Matthieu

Maybe you are looking for

  • Macbook calendar does not sync to my other devices

    I recently noticed that when I was editing events on my Macbook calendar it was not syncing to my other devices. If I edit the event and close out of the calendar and open it again the change does not stay, it goes back to what it previously said. I

  • Why can't I successfully upload web pages using FTP?

    I recently installed Adobe Dreamweaver and successfully connected to a remote server where the files on my existing website are stored. I was then able to call up web pages from my local site, make revisions and successfully upload them (using FTP) t

  • Wrong planned cost calculation while actual is calculating correct for internal activities

    Dear all, I am facing an issue in which when i am doing network costing with work center, activity type, cost center and giving per hour rate in KP26. System is calculating correct actual cost but every time its calculating wrong planned cost. For ex

  • Benefits of Partitioning a Database running with ASM

    Hi All, I am trying to understand the additional benefits of performing partitioning of table space on a database which is running with ASM. Further I wish to understand the approach followed by other teams for partitioning tables and the benfits the

  • Unable to login to ISE 1.2 via Cli

    Hi, I have a weird problem; after changing the default admin password on cli and rebooting the unit; i am no longer able to login via cli. Instead I get the following message: % Error: Unable to launch ADE-OS shell. Disk full. The ISE is running 1.2