Simple contact form php error

I just replaced an adobe formscentral contact form with the muse simple contact form. It is not working, receiving a php server error when submitting. How can I fix this?? I'm hosting through Amazon Route53.
Issue is here: CONTACT

Hi,
I was able to submit the form, kindly let me know if you are still facing the issue.
Regards
Sonam

Similar Messages

  • I, and my clients, want a VERY simple contact form hosting option...

    There's no need for us to have data collected and analyzed. No need for yet another hosting service to store data we'll NEVER use.
    I've already got a hosting service for my site. My clients already have hosting for their sites. None of us are willing to spend another
    dime to have a second hosting system for anything. Don't care. Don't want it. LOVE the Muse forms and the ease with which I can
    modify them to look the way I want them to, but that all adds up to jack squat if they don't work.
    All we're looking for is a simple contact form that allows users to fill in a couple of form fields, add a little message and hit send.
    My clients want to have at the most, about 5 different email addresses set up so they can keep the information organized a bit on their end.
    They may get at most about 300-500 emails a month at a peak time of the year.
    That's not too much to ask is it?
    I mean, if I use the "Upload to FTP host" feature in Muse, what's so hard about adding a bit of code that uses that server space to pass along
    a few messages to a mailbox?
    Can't we just set up a BASIC contact form that is just creating an email and sending it to an email address with a preformatted message based
    upon the form fields we add to the widget? Something like this:
    Name: John Smith
    Email: [email protected]
    Phone: 555-555-5555
    Message: You guys are a great little company, thanks for being so swell.
    Dat be all we want yo! Hook us up mang!
    For $15 dollars a month that I'm paying to use Muse, there oughta be something like that in the form widget panel! Dang!
    Really have a bad taste in my mouth with this whole attempt to channel people into Business Catalyst... That might be great
    for some of your customers, but odds are, not really... The majority of Muse users are likely to be designers that want to have
    a bit more control over their clients image/brand, and want to have less painful ways of keeping up with the advancements in
    webdesign/development without having to learn new code crap every few months!
    So let's not be too greedy and accidentally paint some of your customers into a corner and try to get them to pay you more
    money for services they don't need, and probably don't want.
    I've recommended Muse to a few designer friends of mine, and their comments are all the same: Love Muse for the ease of
    use in designing websites, hate the idea of Business Catalyst. "Feels like a ball and chain, but worse because I have to pay for it."
    Yeah, time to rethink your plan a bit folks?
    Simple Muse Form Widget. Get on it! It would be VERY nice of you to do so!

    I do agree and have posted a few times on this. It would be nice not to be tied down with another hosting subscription. It would be better if instead of having to pay for BC hosting with different plan pricing they could have different pricing for Muse with different feature options. I would pay more for Muse to use the form feature freely on any server I choose because like you said the form widget is great for making really custom forms, but that ease of use should come at a cost because it is so sought after.
    I am getting sick of people wanting everything for free just because it is there and they want it so badly but think they shouldn't have to pay for it because it is not in their budget.
    Muse should have different tiers with different feature options and not force BC on users. BC is a great solution for people without hosting or users that are not familiar with setting up their own servers but for the ones that do have their own servers and are comfortable with using them feel tied down.

  • Is there a way to remove fields from a "Simple Contact" form?

    What I am looking to do is create a "subscribe to newsletter" form where the user only has to enter their email address. I don't want them to have to enter their name or write a message. Does anyone know if it is possible to alter the simple contact form?
    Please see photo for what I am looking to create.
    Thank you for your time.

    Hi Kurt,
    What I ended up doing was creating the form in Muse then bringing the html page into Dreamweaver and removing the name field. It works but can be kind of a pain if you want to make changes to the design part in Muse because you have to go back into dreamweaver and remove the name field again every time you export. I'm glad to hear the next major release will no longer require a name field.
    It would be nice if we could play with the code behind muse within muse. It would make life easier especially when inserting google analytic tracking for pdfs. ;-)

  • Editing simple contact form...

    When I place the simple contact form widget onto a page, it won't let me delete the "Enter Name" field. All I need is the "Enter Email" input. When is Adobe going to add full form capabilities? That is one of the glaring things missing from Muse.

    Name and Email are the only fields in Adobe Muse forms that are Required by default and you cannot remove them nor can you make them optional. You may use some custom JS code to prepopulate and hide the name field if it is absolutely necessary for your purpose.
    Thanks,
    Vikas

  • Simple contact form that emails resutls

    Hi Folks,
    using jdev 11.1.1.3
    I need to construct a simple contact form that takes the results of the input boxes and emails it to a specified reciptient. It should be easy but I can't find any references to constructing such an app anywhere in the documents. Can someone point me to a simple tutorial that may exist out there?
    Thanks much,
    Pat

    You probably need to write some Java class that will do the email sending using Java Mail:
    http://www.oracle.com/technetwork/java/index-jsp-139225.html
    Then you can expose this class as an ADF data control and bind a JSF page to that method.

  • Contact Form (php)  - how to prevent new window...

    My contact form works just fine, however, I currently have
    the target set to "_blank" which is not what I want.
    Rather than opening the .php file open in a new window, I
    just want to go to a new frame (labeled "success" or "error")
    within my flash file (which currently works fine)
    So, my question is how do I send the form information to my
    php file WITHOUT having to open a new window outside of my flash
    file since I'm sending the user to new frame instead.
    FYI: I've already tried removing "_blank" but it still opens
    the php file in a new browser window.
    My code below:
    on (release){
    var my_lv:LoadVars = new LoadVars();
    my_lv.fullName = fullName_txt.text;
    my_lv.email = email_txt.text;
    my_lv.emailMessage = emailMessage_txt.text;
    if(fullName_txt.text != "" && email_txt.text != ""
    && emailMessage_txt.text != "") {
    my_lv.send("contact.php","_blank","POST");
    gotoAndStop("success");
    else {
    gotoAndStop("error");
    Any help is greatly appreciated.
    Yvonne

    Thanks for your help, Zupko.
    I tried your suggestion but I'm still experiencing the same
    problem. A new window still opens. Perhaps I'm doing something
    wrong?
    My code with your suggestion below:
    on (release){
    var my_lv:LoadVars = new LoadVars();
    my_lv.fullName = fullName_txt.text;
    my_lv.email = email_txt.text;
    my_lv.emailMessage = emailMessage_txt.text;
    if(fullName_txt.text != "" && email_txt.text != ""
    && emailMessage_txt.text != "") {
    loadVariables("contact.php","POST");
    gotoAndStop("success");
    else {
    gotoAndStop("error");
    Your help is very much appreciated!
    Yvonne

  • Simple Contact form in Site Studio

    I'm trying to build a simple Contact Us form in a Site Studio website. I've built the front end form using the FCK editor, but I'd like to be able to email the form data. Does IdocScript have built in functions to handle emailing form data? I don't want to store it on Content Server, or check any documents in, just email the data.
    Right now I just have the form action pointing to PHP script I host outside the Content Server, but it seems like it would be cleaner if this could just submit back to the Content Server.
    Thanks,
    -Jason

    If you want use something existing or out-of-the-box (OOTB), the "easiest" way would be to post to the SUBMIT_HTML_FORM idcservice. When the form is submitted, a copy of the form is checked into the content server, which you can then have subscriptions alert users via email.
    Here is some help on getting forms to work via the SUBMIT_HTML_FORM idcservice if you don't know what I'm talking about. I wound up implementing this [almost] exact solution about 1.5 years before Kyle's post - just tooting my own horn here :) - but props to Kyle explaining it pretty well. There are many tweaks that can be made, but it works quite well on a fundamental level. You can see some of the "issues" I'm still running into by reading my (Andrew) comments, but you're using the same editor that Kyle did, so you shouldn't run into any of the issues I did.
    I also went one step further by writing my own email (using javamail) idoc function and calling it anytime a new form was submitted. This is obviously something that is not OOTB and reserved for advanced discussion.
    Good luck!
    Edit: Stupid "insert a link" doesn't work. Use standard HTML tags to insert hyperlinks.

  • Could someone please help me with contact form php.

    Hi,
    could someone please help me wright the php for this contact form?
    <form class="contact_form" action="kontakt.php" method="post">
                <p><input type="text" required="required" id="contact_name" name="contact_name" class="text_input" value="" size="22"  />
                <label for="contact_name">Namn *</label></p>
                <p><input type="text" required="required" id="contact_company" name="contact_company" class="text_input" value="" size="22"  />
                <label for="contact_company">Företag *</label></p>
                <p><input type="email" required="required" id="contact_email" name="contact_email" class="text_input" value="" size="22"  />
                <label for="contact_email">Epost *</label></p>
                <p><textarea required="required" name="contact_content" class="textarea" cols="30" rows="5"></textarea></p>
                <p><button type="submit" class="button white"><span>Skicka</span></button></p>
                <input type="hidden" value="[email protected]" name="contact_to"/>
            </form>
    Its no sence writing down my php as it is useless.
    All help is appriciated.
    Thank you

    Please don't post duplicate threads. Continue the discussion in http://forums.adobe.com/thread/1080721.
    This thread is now locked.

  • Help with a simple contact form.

    Hi there..
    I am having trouble making a contact form with a servlet. I have a Fedora Core Linux Box running ddns..
    My internet account is sympatico.. which a username and password is required to send out with smtp..
    I need help creating a servlet and I have java mail also..
    This is what I have so far...
    I have more info below
    <form class="formContactus1" name="formContactus1" method="post" action="/SendMail" onsubmit="validerForm();">
                                                      <table id="tblContactus">
                                                           <tbody><tr>
                                                                <td class="tdLeft">
                                                                     <label><fmt:message key="Form_firstname" /></label>
                                                                </td>
                                                                <td class="tdRight">
                                                                     <input class="contactTextName" id="last_name" name="last_name" maxlength="100" type="text">
                                                                </td>
                                                           </tr>
                                                           <tr>
                                                           <td class="tdLeft">
                                                                <label><fmt:message key="Form_lastname" /></label>
                                                           </td>
                                                           <td class="tdRight">
                                                                <input class="contactTextName" id="first_name" name="first_name" maxlength="75" type="text">
                                                           </td>
                                                      </tr>
                                                      <tr>
                                                           <td class="tdLeft">
                                                                <label><fmt:message key="Form_email" /></label>
                                                           </td>
                                                           <td class="tdRight">
                                                                <input class="contactTextName" id="email" name="email" maxlength="75" type="text">
                                                           </td>
                                                      </tr>
                                                           <tr>
                                                                <td class="tdLeft" valign="top">
                                                                     <label><fmt:message key="Form_message" /></label>
                                                                </td>
                                                                <td>
                                                                     <textarea class="contactTextMessage" id="message" cols="" rows="" name="message"></textarea>
                                                                </td>
                                                           </tr>
                                                      </tbody></table>
                                                      <!-- This is the anti-spam validation images... -->
                                                      <table id="tblCaptcha">
                                                           <tbody><tr>
                                                                <td class="right" id="tdImgCaptcha"><img style="height: 35px;" src="/captcha/img"></td>
                                                                <td class="right" id="tdInputCaptcha"><input name="captchaAnswer" type="text"></td>
                                                           </tr>
                                                           <tr>
                                                                <td class="right" colspan="2" valign="bottom">
                                                                     <input id="contactSubmit" name="send" value="<fmt:message key="Form_submit" />" type="submit">
                                                                </td>
                                                           </tr>
                                                      </tbody></table>
                                                 </form>

    You forgot to tell the details about the trouble. Please elaborate. What happens? What happens not?
    Please also read this how to ask questions the smart way: [http://www.catb.org/~esr/faqs/smart-questions.html].

  • Error in FireFox and Chrome when evoking contact form PHP

    I get the following error when submitting on the contact page from my website in Firefox. Chrome does not show an error, but does not work. IE works fine and sends the email.
    Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox violation: http://www.greenclouddesign.com/index.swf cannot load data from http://staging.greenclouddesign.com/php/flashcontact.php.
    at index_fla::contact_51/sendData()[index_fla.contact_51::frame1:22]
    My AC3 code
    enter_btn.addEventListener(MouseEvent.CLICK, sendData);
    function sendData(evtObj:MouseEvent):void
    const SCRIPT_URL:String = "http://www.greenclouddesign.com/php/flashcontact.php";
        var request:URLRequest = new URLRequest(SCRIPT_URL);
        var variables:URLVariables = new URLVariables();
        // these depend on what names the script expects
        variables.frmemail = email_txt.text;
        variables.frmname = name_txt.text;
        variables.frmcomment = comment_txt.text;
        request.data = variables;
        // depends if the script uses POST or GET
        request.method = URLRequestMethod.POST;
        var urlLoader:URLLoader = new URLLoader();
        urlLoader.load(request);
    root.gotoAndPlay("home");
    Any help is appreciated

    update your ie flash player and it will probably fail, too.
    you have a security sandbox error because those look like different domains to flash.  one remedy would be to use a cross-domain permissions file.   another would be to use a local (to your swf) php file to send and load the cross-domain data and then send that to your swf.

  • Contact Form Submission Error

    I've got a website on which there is a "Contact Us" form. I have set the submit button to send the form to the email address [email protected] This is the address associated with my Adobe ID. However, instead of receiving a simple form submission, I get the e-mail that I've attached below.

    Have you heard about this workaround? I attempted it, but it didn't work for me.
    "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 "

  • Contact form (send error)

    Here is the error.
    Parse error:  syntax error, unexpected $end in /home/bonesaw/public_html/contactformprocess.php on line 28
    here is the php
    <?php
    /* Subject and Email Variables */
        $emailSubject = 'Crazy PHP Scripting!';
        $webMaster = '[email protected]';
    /* Gathering Data Variables */
        $nameField = $_Post['name'];
        $emailField = $_Post['email'];
        $messageField = $_Post['message'];
        $body = <<<EOD
    <br><hr><br>
    Email: $email <br>
    Name: $name <br>
    Message: $message <br>
    EOD;
        $headers = "From: $email\r\n";
        $headers .= "Content-type: text/html\r\n";
        $success = mail ($webMaster, $emailSubject, $body, $headers);
    /* Results rendered as HTML */
        $theResults = <<<EOD
    EOD;   
    echo "$theResults";
    ?>
    here is the form
      <div id="body">
        <div class="content" id="bodyContent">
          <h3>Get in touch</h3><br />
          <hr />
          <p> If you think I'd be a good fit for your upcoming project or have any questions, feel free to contact me using the form below or email me at [email protected]</p><br />
          <div id="formwrapper">
            <form action="contactformprocess.php" method="post">
                <fieldset class="first">
                  <h2>
                    <label class = "labelOne" for="name">» Name: </label>
                    <input name="name" id="name" />
                    <label for = "email">» Email: </label>
                    <input name="email" id="email" />
                    <label for = "Message">» Message: </label>
                    <textarea name="message" ></textarea>
                  </h2>
            </fieldset>
                <fieldset>
                <input class="btn" name="submit" type="submit" value="Send Message" />
                </fieldset>
            </form>
          </div><!--formwrapper end!-->
        </div><!--bodyContent end!-->
      </div> <!--body end!-->

    fixed it!
    Spacing problem!

  • When I try to edit a simple contact form the editing box disappears when I click on it - any ideas?

    I am doing the usual click on the form to edit. The black box 'options' appears, but any mouse click on any part of the box (including the bit that needs editing) makes the whole box disappear.  Anyone know a way around until this bug is fixed - I have customers losing potential contacts and money!

    I have found a temporary fix - I went back to the previous version of Muse (I had only updated earlier today) and the menu flyout was still working.
    I have to admit to being disappointed with the latest version; my mouse button doesn't work on some sections and I have to resort to using keyboard arrows to navigate. I'm sticking with the older one that works until a few more updates have arrived. TIP - don't uninstall previous versions, or save over files (use a new name for each muse version) - you're going to need them!

  • Simple contact form Client not receiving email from test site

    I have entered my client's verified email, cut and pasted it into place. I have added my email and my wifes email. The only person not getting the forms email info is my client. I'm baffled.

    The URL for the site is getthenetbassguide com.businesscatalyst.com/index.html. I have added several peoples email address', including my own to the back end of the form. As I've said the only person not receiving emails is my client who opened an account with 1 and 1. I contacted 1 and 1. They show no spam filters on their end so I'm still baffled. I asked about firewall permissions and they were not helpful. Is there a way to monitor the email and see what could be blocking it?
    Owen Moore
    Moore Designs
    847-732-1318
    [email protected]
    Freshbrewedart.com
    Sent from my iPhone

  • Need PHP contact form code

    I have a simple contact form  (NAME, EMAIL, PHONE) and now need the most simple PHP script for it?
    I have had this on my site for 3 years, and 2 months ago the text that people put in the form started not shwoing up in the emails sent to me?
    I am assuming it will just be easier to make a new form and script?
    Appreciate the help in advance for this script.

    http://www.ruhanirabin.com/free-useful-php-form-processor-scripts/
    http://www.mindpalette.com/scripts/index.php#PFAnchor
    http://www.thesitewizard.com/wizards/feedbackform.shtml

Maybe you are looking for

  • Opening a new OAF page in New window have error

    Hi OAF gurus, I am trying to open a page in new window. It opens perfectly and all the functionality is also working. But I am getting some Java script error.. The code which I am using is... StringBuffer l_buffer = new StringBuffer(); StringBuffer l

  • Plsql objects in timesten

    Hi, may be question is obvious,but is it possible to create plsql objects (procedure, packages/bodies) in timesten database? Message was edited by: `mo

  • Aperture keeps crashing when opened

    Hello Everytime I open aperture for past few months it keeps on crashing. Even stopped time machine working for a while. I have repaired the library, looked at the files and cannot work out which ones would b bad. Occured just after upload a large am

  • Saved for web images won't display in browser

    I am using Photoshop elements 5.0 on WinXP. when I save images for web , they will not display in browser (IE) but images downloaded from net and other sources will display ok, but once opened and saved with my PSE they will no longer display on brow

  • PIR - LSWM Error in create batch input session

    Hi i made a conversion program Purchasing info record through Standard object / Direct Input in that Step 13 : Create Batch input session when i execute the Batch Input session i am getting the following error message Transaction 00000001 : no transa