Error in form after customer hits "submit"

Greetings. I am helping someone out with their website after their last developer had tragically died. So what is going on is that I am filling out the form as if I am a customer looking for a quote on snow shoveling in chicago. When I hit "get quote", I get an error. This error was not occurring last year. So we think that it has to do with some sort of updated code or someone may have hacked into the website and messed something up, because it is indeed a cutthroat business. Here is the error....
Warning: file_get_contents(http://maps.google.com/maps/geo?output=csv&key=AIzaSyDLStuJxsonsdjr7NfjskTPBJl6b90irUk&q=1 424+N+Maple+Ave.%2C+La+Grange+Park%2C+60526) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /home/content/16/7927716/html/csrQuoteFormC.php on line 180
url not loading
This is what line 180 looks like in dreamweaver...
$csv = file_get_contents($request_url) or die("url not loading");
Here is the link for the actual for I am filling out.   http://onlinedevelopments.com/csrsContract/

I also want to add a confirm() dialog before submitting. However, setting the onClick handler overrides the one generated when formSubmit="true". I worked around this by calling the generated function directly:
<... onClick="if (confirm('[msg]')) { anchor_submit_form(getNetuiTagName('[formName]'), this.href) } return false;">
Where [msg] is the message to display and [formName] is the name of the form containing the anchor.
Hope this helps someone.

Similar Messages

  • How do I direct user to print the form after they click submit?

    I am creating a permission for for our scout group.  I need them to print the form for their parents to sign after hitting submit.  Is there a way I can do it in Forms Central?

    Hi,
    In the "successful submission of a form, execute this PL/SQL block or PL/SQL procedure" section redirect to the url.
    Say you want to redirect to a dynamic page on success, you can do this
    begin
    <portalschema>.wwa_app_module.set_target('<portalschema>.NEW_DYN.SHOW?p_arg_names=dept&p_arg_values=20');
    end;
    Thanks,
    Sharmila

  • After I hit submit, why isn't it compressing?

    I'm new to Compressor. I created "settings" and a "destination" for my project, then I hit submit. The file appears in the history window but it seems to be inactive. Why isn't it compressing?

    I had the same problem, I'm using compressor without problems for a few years now, I re-installed the full Final Cut Studio set of discs and compressor is working ok again.

  • How to merge data returned from server after you hit SUBMIT button

    I have a PDF form with blank ID field. When user click Submit button on the form, an ID will be generated from database on the server side. How do I merge this ID with client's original PDF from so he knows his ID number? Any help thanks.

    When the user submits the form, he or she is redirected to the web page that you put in the submit URL. The form doesn't generally stick around. A typical response would be to return an HTML page that confirms receipt and gives a reference number. If you want to merge data with the PDF and present that back to the user, it's possible, but not very easy. If you decide that you'd like to go down that path, you can start by searching this forum on "vnd". You'll find a long thread with 30+ messages that show how to merge data with a PDF using various types of CGI scripts.

  • How do I received the filled out form via email? After the user hits SUBMIT, I'd like to receive the filled out form via email.

    How do I received the filled out form via email? After the user hits SUBMIT, I'd like to receive the filled out form via email.

    Formscentral doesn't support direct delivery of filled forms via email at this time. You can however use Acrobat to add an email link to a form instead of a submit button. In this way the PDF will be returned to the email of your choice.
    Andrew

  • 404 error when hit submit from php file for requested path E:\vise\jqproject\web\errorpages\403_error.htm

    I have a php script that when I hit submit, it submits the form to another php file with a get command.  This worked about a month ago, but this month it's having issues.  This is what the relevant code looks like in the table php file. Running
    table.php shows the table in the browser and has 404 errors when I hit submit.
    table.php:
        <body>  
            <h1> Visual Evaluation Entry Table </h1>
            <form method="get" action="visEupload.php">
        <table id="bigTable" border="1">
            <thead>
             <tr>
               <!--<th id="bandY" class="col3">Bands @263mm Y</th><th id="bandM" class="col3">Bands @263mm M</th><th id="bandC" class="col3">Bands
    @263mm C</th><th id="bandK" class="col3">Bands @263mm K</th><th id="Comments" class="col3">Comments</th>-->
             <th id="bandY" class="col3">Bands @263mm Y</th><th id="bandM" class="col3">Bands @263mm M</th><th id="bandC" class="col3">Bands
    @263mm C</th><th id="bandK" class="col3">Bands @263mm K</th><th id="Comments" class="col3">Comments</th>
             </tr>
            </thead>
            <tbody>
                <tr name="MCBands" id="9214">
                    <!--<td><input name="Yevaluation" ></td>  //Row 0 Column 1-->
                    <!--<td><input name="Mevaluation" ></td>  //Row 0 Column 2-->
                    <!--<td><input name="Cevaluation" ></td>  //Row 0 Column 3-->
                    <!--<td><input name="Kevaluation" ></td>  //Row 0 Column 4-->
                    <!--<td><input name="comment" ></td>  //Row 0 Column 4-->
                    <td><input name="bandY" ></td>  <!--//Row 0 Column 1-->
                    <td><input name="bandM" ></td> <!-- //Row 0 Column 2-->
                    <td><input name="bandC" ></td> <!-- //Row 0 Column 3-->
                    <td><input name="bandK" ></td><!--  //Row 0 Column 4-->
                    <td><input name="comment" ></td>
                </tr>
            </tbody>
        </table>
          <input id="submit" type="submit" class="list" name="submit" value="Submit To Database" >  
           <!--maybe move all php part to other file-->
           </form>
        </body>
    The server is mapped so when we run it off of the server, we use the server ip address and my file name and skip the rest of the path, which works fine with the table.php file, so that mapping appears correct.  When I run it off of the server (from my
    desk) and hit submit it gives me a 404 file or directory not found.  When I run it locally on the server, it's saying it can't find the file name, but it says the requested url is `http://localhost:80/errorpages/403_error.html.`  Physical path: E:\vise\jqproject\web\errorpages\403_error.html. 
    The error message says the notification is from the MapRequestHandler of Module IIS Web Core. I'm not sure why the requested url/path isn't referring to visEupload.php.
    (Running on the server) When I change the action in the table.php get to include the IP address, it's behaving weirdly:
    Module IIS Web Core Notification MapRequestHandler Handler PHP53_via_FastCGI, Requested URL `
        http://localhost:80/13.141.xxx.xx/visEupload.php?bandy=xx&bandM=xx&bandc=hj&bandk=xx&comment=xx&submit=submit+to+database
    physical path shows as E:\visE\jqproject\web\13.141.xxx.xx\visEupload.php
    Login Method and user Anonymous.
    When I change the url to just be
        localhost/viseUpload.php
    it's getting HTTP Error 404 not found.  Any ideas why it's not finding the visEupload.php file?  It has the correct .php extension.  In file properties it's a type php file with name visEupload.php.  
    I took a look at
    [404 error][1] but I see my "allowUnlisted="true" in applicationHost.config. I'm not using sitefinity, though. 
    I'm not sure if something got over-written when we did a server windows update.  
    I know we were having a problem with get and post a couple months ago and we had to add them to the IIS Manager Handler Mappings somewhere, but don't remember where we added them to check.  Since I tried directly accessing the visEupload.php without any
    get (and commented out get code in the file) it should have worked if that was the issue.
    We are running server 2008 R2 and I'm not sure which version of IIS it is.
    In case it matters, this is the contents of the visEupload.php:
        <!DOCTYPE html>
        <html lang="en" >
        <head>
        <meta charset="utf-8" />
            <title>Big Table</title>
        </head>
        <body>
        <?php
            require_once( "../classes/class.OLAPdatabase.php");
            require_once( "../common/Session.php");
            $OLAPdb = new OLAPdatabase;
              handling of the get part is commented out
           ?>
        </body>
    All I can think of is that when I access visEupload.php it's running from the get/action in table.php.  This might be a different user running in the system.  I tried changing visEupload.php file properties to have full control for IUSR and Internet
    Guest Account.  It already has full control for System, and me.  Users have read & exeture and read permissions. Or maybe it's something that has to do with how the directory is mapped out.  I'm not sure what could be affecting this, and
    why the message said it can't find the path to 403_error.html.
      [1]: http://www.sitefinity.com/developer-network/forums/bugs-issues-/server-error-404---file-or-directory-not-found
    Michele Cleary

    Hello,
    for IIS question better ask in http://forums.iis.net/
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://msmvps.com/blogs/mweber/
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.

  • Getting a bad bind variable error while compiling a custom form in R12

    Hi,
    I am getting a bad bind variable error while compiling a custom form.
    I tried setting the forms_path variable and I am still getting the error. Can anyone please suggest what can be done?
    DECLARE
    BEGIN
    IF :parameter.p_line_ship_to = 'T'
    THEN
    IF :SYSTEM.cursor_item = 'LINE.SHIP_TO'
    THEN
    :parameter.lov_num_param1 := :line.ship_to_customer_id;
    oe_lines.ship_to ('WHEN-VALIDATE-ITEM');
    :parameter.lov_num_param1 := :line.ship_to_customer_id;
    END IF;
    :parameter.p_line_ship_to := 'F';
    END IF;
    END;
    I am getting this error:
    Bad bind variable 'parameter.p_line_ship_to'

    The Parameter is not defined in the form.. But, this form is already been compiled and deployed.. I have to make some changes to the form and tried to compile it, when i am getting this error. Is it possible that the parameter would be defined in some other form or can this error be due to some other reasons?
    Thanks in Advance.

  • Error message when i try to submit a form?

    Certain users are receiving the following error message when they try to submit their form.
    Can you help explain what the issue is, and is there a fix in place?  Many thanks!
    This form is linked to Innovation Showcase at Partner Briefing at Summit, so we need to get this fix ASAP.
    Any guidance community members can provide is greatly appreciated!
    An error has occurred.
    There was an error communicating with the server. Please try again later.
    [ref: nxh9wbB5YgOyoERrSKDtA, serverUnknownError]

    cid:[email protected]
    From: Josh_Corey [email protected]
    Sent: Thursday, November 07, 2013 12:29 PM
    To: Whaley, Magean
    Subject: I get an error message when I try to attach a file.  Why is this?
    Re: I get an error message when I try to attach a file. Why is this?
    created by Josh_Corey<http://forums.adobe.com/people/Josh_Corey> in FormsCentral - View the full discussion<http://forums.adobe.com/message/5824088#5824088

  • Read Only form after Submit to Email

    I have a form i'm working on. Basically its a form I like for users to fill out and then click submit once they are done to send it in an email. The script i found below does what I want but with further testing i found out it's not exactly what I want. Basically it will make all the fields in my form Read only once the Submit button is clicked. Problem is that if you hit Submit and then realized you need to go back and make a change, you can't. The trigger to Read Only is when you click Submit. Is there a way I can do the lock down once the receipient receives the form? I'm a noob so please go easy with the responses =) thank you all in advance!
    Mike
    I found some documentation that says to not change the form in ready:layout event (which what I was doing with the "readOnly", so I placed the following code (to make all fields readOnly) in the Button's mouseDown event.
    // Get the field containers from each page.
    for (var i = 0; i < xfa.host.numPages; i++) {
    var oFields = xfa.layout.pageContent(i, "field");
    var nodesLength = oFields.length;
    // Set the access type.
    for (var j = 0; j < nodesLength; j++) {
    var oItem = oFields.item(j);
    if (oItem != this) {
    oItem.access = "readOnly";

    bind the all the field to managed bean.
    Write a action method of button .in method get all the fields and make readonly to true.
    add partialtrigger programmaticly
    AdfFacesContext.getCurrentInstance().addPartialTarget(this.field1);

  • Error in form submit through netui:anchor tag onClick event

    Hello,
    I am working on a portal application. Below is my jsp code of a simple search screen. The search parameter is customername.
    <netui:form action="searchCustomer" style="form" tagId="myForm">
    <netui:textBox dataSource="{actionForm.customerName}"></netui:textBox>
    <netui:anchor onClick="sayHello(); return false;" styleClass="button" action="searchCustomer" formSubmit="true"> Search</netui:anchor>
    </netui:form>
    I have an onClick event as I want to implement some customer logic on click of the anchor tag.
    function sayHello(){
    // customer implementation here
    document.forms[getNetuiTagName("myForm",this)].method="POST";
    document.forms[getNetuiTagName("myForm",this)].action="/searchCustomer.do";
    document.forms[getNetuiTagName("myForm",this)].submit();
    In the searchCustomer method of the controller, the form has zero parameters. The customerName has null value.
    Can anyone tell me what am I doing wrong here.
    Any help is appreciated.
    Thanks
    Manju

    I also want to add a confirm() dialog before submitting. However, setting the onClick handler overrides the one generated when formSubmit="true". I worked around this by calling the generated function directly:
    <... onClick="if (confirm('[msg]')) { anchor_submit_form(getNetuiTagName('[formName]'), this.href) } return false;">
    Where [msg] is the message to display and [formName] is the name of the form containing the anchor.
    Hope this helps someone.

  • Server error in communication when trying to submit a formscentral form?

    What does it mean when one of my form users gets a "server error in communication" when trying to submit a form.  The saving function worked just fine.  Help this is my first form!
    Thanks!

    It is a rather generic error message that can occur for a number of reasons.  Further details are needed to pinpoint an exact cause.  Do you know if your user can submit now?  There was service outage earlier this week that may have caused the problem.  Other issues are browser security settings, company or individual firewall setting, or actual bugs to out product. If you could get more information from your user such as their Operating System and version, browser version, if the error is still occuring, when the error occurred that would be helpful.
    Some things your user can try in the mean time is clearing their browser cache, restarting their browser or trying a different browser.
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

  • Error in email contact form, 'after sending'...

    There seems to be an error in the email contact form, 'after sending'...
    i want it to direct to a 'thanks for your email page in the mobile site i'm building, however you get the page unavailable message. all links seem to be OK, it's a very simple site.
    Anyone know if there's a known issue with this?

    what's the URL for your site where you're seeing this error?

  • Error in XCM after deploying the customized SCA

    Hi All,
    we are getting error in XCM after deploying the customized SCA in the server for UCES.
    Below is the error message when trying to access the XCM ./bdisu/admin/xcm/init.do
    link     ./bd/admin/xcm/init.do is working fine..
    ISA Framework: com.sap.engine.services.servlets_jsp.server.exceptions.WebIOException: Internal error while parsing JSP page [/usr/sap/EPT/JC04/j2ee/cluster/server0/apps/sap.com/isucesear/servlet_jsp/bdisu/root/admin/xcm/MainConfig.jsp].
      Details:   No details available

    Hi,
    Did you find any solution for this? We face the same problem and we are looking for a good solution.
    Kind Regards
    Daniel Jadeholt

  • Error message when I hit "Submit"

    Compressor has been working fine until today. I loaded a file (30 sec Pro Res Quicktime), dragged some settings and then hit "Submit".
    I got this error message:Unable to submit to queue. Please restart or check that Compressor is correctly installed.

    Look at Compressor Repair. It's free.
    http://www.digitalrebellion.com/compressorrepair/

  • Remember values in form after page submit

    Hi there,
    im absolutely new to APEX (as u can see it`s my first post ;)), i read the documentations i found on the oracle website and know at least the basics...
    So i started to create my first application and got already my first problem :D Maybe you can tell me if what i want to do is possible and how to do it.
    I have several pages with a form on the left side and a sql report on the right side.
    The form contains some fields which are list of values (fields which contain foreign keys so the user can just select a valid value). next to every list of value field i have a button. when the user clicks on the button i have a branch to the same page and the sql report gets updated. depending on which button next to the list of values with the foreign keys was pressed it shows the complete table the list of values references to (so the user can see what the foreign key he is selecting actually contains). after some work i finally made this work.
    But the problem is: When the user enters some values into the form and then clicks on a button to see what the foreign keys contain the values he already entered are gone. But i want the values he entered to stay in the form after he pressed the button. is there a easy way to do that? the only thing i could imagine is to create a variable for every form field, save the current values into the variable before the page gets submitted and write the values of the variables back into the form when the page reloads. but that sounds kind of stupid... i would have to do that for every page of this kind (which are a lot). so is there a better way?
    thx a lot :)

    Hi Fennek,
    If you created the Form using a wizard, it is possible that your page has a "reset page" process on it. If it has, either set a condition of Never for it or delete it. This process will clear the values for all items on the page.
    If you don't have this process, check the branches on the page. It could be that one of them has a Clear Cache setting that clears the values for the page - just remove the setting to stop that happening.
    Andy

Maybe you are looking for

  • Can the Mavericks dictation and speech app coexist with Dragon Dictate?

    I just turned on the dictation and speech app.  I already had dragon dictate installed.  Now nothing works for dictation.  Can they exist together?  How? Thanks for the help.

  • Web service model cache

    Hi all, I am using adaptive web service model in CE7.2 Server. every time i made some change to the web service, it is not well recognized, for example, i add one more field in the input request. i reimported the model, compile and deploy. the server

  • Roles page can not be displayed

    Hai... I have been working on EP for 4 weeks as well as I am taking care of the server too. My problem is that I am not able to get the role page displayed and we have already some users created previously I am not able to login using them too. I thi

  • Currency in form

    Hi Guys, I have a question that hope you guys can help me with. I have a table in a form, it has a column displaying price and another column contains the currency. I need to display the price column with the currency sign depending on the currency c

  • I cant set Appointments in calendar on new 4s

    I cant set Appointments in calendar on new 4s. Tried turning off then on several times. Siri is not able to add appt.  on the monthly view the + is not on the top right and the calender  button is missing from the top left of the top bar.