*Please read* - 404 Errors when submitting a case?

Hi everyone,
If you are currently experiencing issues when submitting a case to BC please reach out to our chat support or private message me with the following details below so we can investigate further. 
Adobe ID
Exact steps to replicate the issue. e.g. TS or CS case? Attachment?
At exactly which step produced the error? e.g. Which button was clicked?
The exact error message? e.g. There are 2 different types of 404 pages. Capturing the URL and screenshot would help.
If  experiencing a 404, try hit the following url and capture the details - http://www.adobe.com/cfusion/build_data.cfm This will help us to hone in on the application server that caused the error so that we can look into the logs on that server.
What happens when you get the 404? Is the case submission lost and you have to resubmit?
Kind regards,
-Sidney

Just had this happen - sending you a PM about it - grrrr...

Similar Messages

  • ITunes returning 404 error when submitting working podcast feed

    I am trying to submit a podcast to the iTunes Directory but iTunes is returning a "bad http result code:404" error. This is a known good feed verified by both feedvalidator.org and iTunes U. Feedvalidator shows an encoding error ("utf-8" vs. "US-ASCII"), but otherwise has no problem. Feed is here: http://itunesmedia.seu.edu/Chapel/2013_Chapel/rss.xml. Thanks.

    No obvious answer here. The feed looks fine and can be subscribed to manually in Tunes perfectly well.
    The encoding error you mention occurs a lot and doesn't normally seem to cause any problems. Error 404 is 'file not found'.
    We have seen cases where perfectly good feeds couldn't be read by the Store: I've never seen an expanation, and my guess - and I emphasize it is a guess - is that the server is for some reason not responding to requests from the Store when it does to all other requests.
    You could start by leaving it for a bit and trying again in case it's some sort of temporary glitch. If it still doesn't work I can only suggest you ask the people running your server if they can check the server logs for when this happened.

  • 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.

  • 404 error when publishing to FTP server.

    I'm getting the 404 error when publishing my iWeb site to my FTP server.  Please help.
    It says I have a good connection and publishes but then I get the error when I "Click to go to the site."  I've read where I have to upload the file to my server but with the file index_html.  Do I rename my iWeb file, domain, to index_html?

    I'm getting the 404 error when publishing my iWeb site to my FTP server.  Please help.
    It says I have a good connection and publishes but then I get the error when I "Click to go to the site."
    A 404 errors means the file is not on the server.
    Checking the connection is just testing the FTP connection.
    I've read where I have to upload the file to my server but with the file index_html.  Do I rename my iWeb file, domain, to index_html?
    Do I rename my iWeb file, domain, to index_html?
    No, you don't. The domain file is where iWeb  stores its assets. It stays on your computer. It has no meaning outside it. iWeb publishes the index.html file and all the other files.
    Read this : The concept of iWeb Sites
    So if your pages do not load, check for their presence on the server.

  • Error when submitting responses

    Some respondents receive an error when submitting survey results.  Could there be a timing issue with the server if many responses are coming in at the same time?  Or could the error be caused at the senders location?

    we are trying to catch it.  It flashes quickly before results are submitted (via iPad) and communication is ended.  It may be a timing issue.  Let me look into this further.  Could be the user too!!!!!!!!!!!!!!!!!!
    Donna Dowdle
    IT Manager
    Dr. Scholl Foundation
    (847) 559-7430 - office
    (847) 602-0709 - cell
    DISCLAIMER!  The information contained in this e-mail message is confidential and is intended only for the use of the individual or entity to whom it is addressed.  If the reader of this message is not the intended recipient, you are hereby notified that any disclosure, copying, distribution, or the taking of any action in reliance on the contents of this communication is strictly prohibited.  If you have received this e-mail message in error, please contact the sender at (847) 559-7430 and delete this e-mail message.

  • Symbol error when submitting form

    experiencing a symbol error when submitting form.

    Hi Gen,
    Unfortunately, the error came from a client who was submitting a form via Mac OS.  He stated that when he attempted to submit he received a symbol error.
    On another note, I did experience issues with periods (.) within another form such as 2009.01 and 2011.25.  When I downloaded the files corresponding to the numbers, it wouldn’t allow me to save it with the period (used an underscore instead).
    Warmest regards,
    Delia
    Delia Boyd
    Program Manager, Standards Development
    Executive Office
    AOAC INTERNATIONAL
    481 N. Frederick Avenue, Suite 500
    Gaithersburg, MD 20877-2417
    301-924-7077 x126
    301-924-7089 - Fax
    [email protected]<mailto:[email protected]>
    www.aoac.org<http://www.aoac.org/>
    cid:[email protected]
    127th AOAC Annual Meeting & Exposition
    Palmer House Hilton
    Chicago, Illinois
    August 25-28, 2013
    For more information visit our website
    at: http://www.aoac.org/meetings1/127th_annual_mtg/main_2.htm
    þ Please consider the environment before printing this email.
    ...you will see it when you believe it!

  • Why am I getting the 404 error when on pinterest?

    Why am I getting the 404 error when on pinterest?  This is happening on my iMac and macbook.
    I have tried to clear my history, tried in safari and in firefox, enabled and disabled Javascript, and allowed 3rd party sites.
    Please help!!

    No you are not alone. I tried to create an apple ID and then access the app store and itunes and got the same error code. Spoke with tech support for over 45 minutes and we tried everything. Tech support seemed to think that it had something to do with credit card registration. Suggested that I use a different credit card. I modified my account settings with a different card and still had the same errors. At this time I have no confidence that Apple has any idea what the problem is.

  • Error"There was an internal error when submitting the form" URM Disposition

    Hello
    I get the following error - "*There was an internal error when submitting the form*" - when i allocate a Retention Disposition to a Retention Category.
    Any Ideas how this can be solved?
    Thank you

    Not based on the minimal information provided.
    Error messages in 11g, from a UI standpoint, are severely deficient. How about looking in the content server logs and posting some more information?

  • I am getting a 404 error when trying to access any search link using google, I can get to a website if I enter the url directly.  I have cleared my history, emptied the cache and reset safari.

    I keep getting a 404 error when trying to access any search link using google, I can get to a website by directly using the URL.  I have cleared history, empited the cache and reset safari.  Any suggestions.

    Right. If you are using delegated privs and sudo, make sure that sudo is configured to pass on the PERL5LIB and ORACLE_HOME environment variables at least.

  • 404 Error when loading IWeb page

    Greetings once again!
    I have been using the IWeb program for setting up my business in nature photograhy and have passed out business cards that say web.mac.com/debo0063/iweb and people have been telling me they get 404 errors when they look up my site. I get that message sometimes at home but not most of the time. This is a problem because obviously I want people to come and visit my site. However, I don't know what to tell them about this either. Can anyone help me?
    Thanks in advance for your help! It is greatly appreciated.
    Sincerely, Dustin
    Powerbook 17" Wide Screen   Mac OS X (10.4.4)   IWeb questions

    Tom, thanks for the information. I typed in my username incorrectly. It is as you stated--debo0062. And, thanks for the other information! I will let people know that it is a capital W on iWeb. Of course, I get a chance to figure this out after I get more business cards printed. Oh, well! That just gives me a reason to talk to them longer.
    Dustin
    I have been using the IWeb program for setting up
    my
    business in nature photograhy and have passed out
    business cards that say web.mac.com/debo0063/iweb
    and
    people have been telling me they get 404 errors
    when
    they look up my site.
    If you really printed them with "iweb" at the end,
    that could be the problem. It has to to "iWeb."
    Also your username seems to be debo0062, not
    debo0063.
    http://web.mac.com/debo0062/iWeb
    seems to work ok.

  • I get this error when submitting the issue to DPS

    Hi am using Woodwing Enterprise to publish folios to the Adobe DPS and it has been okay, I have finished creating of a new issue and I get this error when submitting the issue to DPS : Adobe Distibution Server returned error while calling "createIssue". HTTP code: 401. HTTP message. " Unknown error.". Adobe results message: " Unauthorized for access. See logs for further details." Adobe results status: " UNAUTHORIZED." The DPS account was recently renewed

    Please contact gold support about this issue.

  • I need to download Runtime Engine 7.1, but I get a 404 error when I try to download from the website.

    I need to download Runtime Engine 7.1, but I get a 404 error when I try to download from the website.

    Are you getting it from this link (assuming Windows): http://joule.ni.com/nidu/cds/view/p/id/703/lang/en? The download link on that page seems to work just fine.

  • I am getting a 404 error when I click the link to request my upgrade.

    I am getting a 404 error when I click the link to request my Mountain Lion upgrade. I have a brand new MacBook Pro so I don't understand why I'm getting this error.

    Make sure you are logged in to the Adobe site, have cookies enabled, clear your cookie cache.  If it continues to fail try using a different browser.

  • Receive 404 error when running new application

    I'm using JDeveloper 11.1.1.6.0.
    I am encountering a 404 error when I try running the "Portal" project of a brand new WebCenter Portal Framework application. Previously I was able to run right after the project was created, and a college of mine is able to run right after the new application wizard has compelted, following the same steps that I do. I do not recieve any errors in the weblogic console window however and am at a loss for what is going on. I am able to run applications that I previously had created, but new ones fail. As far as I am aware, no configuration has changed either.
    The steps I am taking:
    -Create new application
    -Name and set default package
    -Set the Applicaiton Template to "WebCenter Portal - Framework Application"
    -hit next
    -Leave on defaults for project 1 name. hit next
    -Leave on defaults for Project 1 Java Settings. hit next
    -Ensure "Configure the application with standard Portal features" is checked on Project1 WebCenter settings. hit next
    -Leave on defaults for Project 2 name. Hit finish
    -Right click on the "Portal" project. Select Run
    -When the browser window opens, I receive the 404 error instead of the default home page with the autogenerated template.
    Does anyone have any idea what might be going on, or any ideas of what I can try to fix the issue?

    Another college of mine recommended checking for stalled deployments on the integrated weblogic server and after removing 4 deployments that were never actually undeployed (despite JDeveloper claiming that they were) the 404 error went away and things started working again.

  • I get a 404 error when accessing my website which is supported by Apple.  The message says that the server can't find my page.  My browser is Safari.  How can I fix this when it just stopped working today?

    I get a 404 error when accessing my website which is supported by Apple.  The message says that the server can't find my page.  My browser is Safari.  How can I fix the problem when it failed just today?

    If you uploaded to MobileMe, it's no longer available. Apple's closed MobileMe and stopped offering web hosting.
    (116252)

Maybe you are looking for

  • System Image backup using Windows 8 on my Compaq CQ 58 Notebook ?

    For creating a System Image backup the HP guide shows two selections (External Hard Drive or Disc). Can I use a USB flash drive? This question was solved. View Solution.

  • Mac Pro no longer recognizes Optical drives

    I was working on my mac Pro and it suddenly restarted itself. After that happened neither Superdrive would be recocnized by the OS. Oddly it took a very long time to boot, approximately 2 minutes. I have a Apple OEM DVR-111PB and a Pioneer DVR-112D.

  • MBP can't find one specific wifi network.

    The hotel where I live offers free wifi (The Cloud) and for months I've been using with full signal. Suddenly my MBP (mid 2010) was unable to find this network. My iPad and my iPhone (and friend's devices) are still connecting at any time with perfec

  • Error: Illegal use of when -style tag without choose as its direct paren

    Hi, I'm using the Code: <c:choose> <c:when test="${empty param.usernaseme}" > <B>Hello <c:out value="${param.usernaseme}" /></B> </c:when> <c:otherwise> unknown user name. </c:otherwise> </c:choose> and keep geting the Error: Illegal use of <when>-st

  • Unable to load Message Catalog - Mqji

    I have written a Java program using MQSeries Libraries. This program reads from and writes to two queues of a Queue Manager on a different machine. This program works fine when it is run from Unix prompt. But when I try to call this program from Orac