Bad server response

I have Safari 1.3. I used to never have any problems with Safari. Then, i started having sites that i can't open. I get an error message that says "Safari can't open this page. Bad server response." At first it was just an occasional site. Now, i encounter them fairly often. For example I can't use wikipedia, I can't use Photobucket. I can't open purevolume.com. The pages open fine in Netscape.
Safari doesn't have this problem on my iBook--just the Powerbook.
Does anyone know what is causing this? It started before I updated to OX 10.3.9. Is there any way of fixing this?
thanks

thanks for the suggestion. However, this has been going on for months. I clear the cache several times a day because i was a victim of identity theft where someone got information from my computer somehow, i don't know how, but at the time i didn't have a firewall or ecryption or anything. Now i have all that stuff but since then, i empty the cache frequently as a security measure.
I also manually threw away the safari cache and icons. apparently clearing the cache doesn't get rid of those. I threw away my safari prefs. i reinstalled 10.3.9 and java, repaired permissions repeatedly.
I don't have a clue what's wrong, what it is about these particular pages that safari can't open on this computer. For a long time, it was just one or two sites where it happened. Now, it's happening much more, since i installed 10.3.9. I don't know if there's any relationship to that. I also installed 10.3.9 on the iBook and Safari doesn't have this issue on the iBook.
I wonder what these pages have in common.
I have Safari Enhancer on the powerbook and not on the iBook. I wonder if it could cause this problem.

Similar Messages

  • Safari bug--bad server response

    I tried posting this a few weeks ago and got zero replies. I searched the boards for previous threads. there are some. And sadly, no one seems to have a solution. but i am trying again just in case someone has discovered something.
    On many webpages i get '“safari can't open the page...bad server response” (NSURLErrorDomain:-1011" For example, wikipedia and photobucket, lord of the cows forums, purevolume, versiontracker, etc
    I don't get this with Firefox or Netscape.
    I don't get this error on my iBook that has the same basic set up as my powerbook. Same internet connection (AEBS through a wired linksys, cable modem). It only affects the powerbook. i don't use the ibook nearly as much (hardly ever) so maybe it would develop the problem if i used it a lot.
    I do get the problem both in my regular user account and my test user account on the powerbook.
    I called Apple and they trouble shot it with me. Nothing worked so then she said to reinstall my system from the DVD, so i did.
    After the reinstall, the problem was gone.
    Several days later the problem came back.
    what might be causing it?? what might solve it? There must be some conflict with something on my powerbook, yes? since it doesn't do it on the iBook? It never did it on the powerbook until several months ago. It's a new error. It must be related to some software update i did along the way. I've noticed people who have Tiger get this problem too so i don't imagine that would solve it.
    A couple of people said that using Safari Debugger and changing the User Agent fixed the problem for them. I tried that and still get the same 'bad server response.' The only thing that has helped was to reinstall the system. but the fix only lasted a few days.
    someone suggested removing a cookies file. Isn't that a user specific file? I have the same problem in my test user too. I did try removing the cookies files but it didn't work. i get this problem with sites i've never been to before.
    I had Safari 1.2 when the problem first started. Now i have 1.3.1.

    From Dr Smokes X Lab on freeing some space.
    Simple ways to free space
    You can employ any of the following tips to increase the free space available on your Mac OS X startup disk without altering your hardware.
    Empty the Trash
    As obvious as it may sound, some folks regularly Trash files but neglect to periodically empty the Trash. In Finder, select Finder > Empty Trash or, under Mac OS X 10.3 or later, you can also select Finder > Secure Empty Trash.
    Do not use the Trash as a "temporary" storage area. Only put an object in the Trash if you are sure it is no longer needed.
    Archive old files
    Archive — move, copy and delete, or backup and remove — files you do not use regularly to CD or another backup medium.
    Archiving files and folders creates a copy of the items in a compressed file. Archived files take up less disk space than uncompressed files, so archiving is useful for making backup copies of your data and sending information over the Internet.
    From Apple http://docs.info.apple.com/article.html?artnum=152335
    Archiving files and folders
    Select an item or items.
    Choose File > Create Archive.
    GL, Eme
     Power PC G4 (3.3) iMac♥ Flat Panel 10.3.9 { 15 Alum.PB,10.4.6   Mac OS X (10.4.6)   AEBS iMac Intel Core Duo os 10.4.6 2gb

  • "bad server response" issue

    Hello,
    This PC guy recently switched to a mac and I'm loving it so far.
    I was using MS MOney and upon the advice of many I am experimenting with moneydance. When I tried to download my qif file from my bank I am receiving the "bad server response" error. I tried downloading the same file on my pc and it works fine.
    I've done some searches on the boards and it sounds like this my be a safari related issue. What I haven't found is the way around it.
    Any advice about how to clear this up so I may downloaded the needed files?
    Thanks.

    You're welcome.
    Unfortunately, we still live in a Windows-centric world where some cites are developed with IE for Windows in mind without considering other browsers, especially on the Mac platform.
    For that reason I think it's a good idea on the Mac platform to have an alternate browser. While I find Safari quite good for most sites, there are instances where a site's coding does not adhere to the same WebKit Standards used by Safari.
    Here's the other Mac Browsers I have tried and found useful (Firefox is my favorite):
    Camino,
    Mozilla,
    Opera,
    Shiira
    Haven't tried:
    OmniWeb (shareware).
    I excluded Netscape because I don't like it - never did.
    Another suggestion is to contact the financial site inquiring about Safari compatibility.
    Regarding the PDF, it may be how the site is coded. I rarely have problems viewing/downloading PDF's via Safari.

  • JavaMail, ESMTP, problem with this server response: "+  stunnel"

    I need to send message through a STMP server I don't know much about. The server works fine, when using port 25. But I need to send mail through port 465. I've looked around the web, I've searched the forums, but found no solution.
    I've identified, that the server uses some kind of strange "secure" connection. I was told, that is uses SSL, but when I use SMTPSSLTransport, it says the "Unrecognized SSL, plaintext connection?". So I am using the common Transport. This is my code:
                props.put("mail.transport.protocol","smtps");
                props.put("mail.smtp.host", smtpHost);
                props.put("mail.smtp.port", 465);           
                props.put("mail.smtps.starttls.enable","true");
                props.put("mail.smtps.ssl", "true");
                props.put("mail.smtps.socketFactory.port", 465);
                props.put("mail.smtps.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
                Session session = Session.getDefaultInstance(props);
                session.setDebug(true);
                Transport transport = session.getTransport();
    ...I am getting this output:
    DEBUG: setDebug: JavaMail version 1.4.1
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth false
    DEBUG SMTP: trying to connect to host "host name of the server", port 465, isSSL false
    220 "host name of the server" ESMTP Sendmail 8.13.1/8.13.1; Fri, 15 Feb 2008 18:10:49 +0100
    + stunnelDEBUG SMTP: connected to host "host name of the server", port: 465
    EHLO "my hostname"
    DEBUG SMTP: bad server response:  + stunnel
    HELO "my hostname"
    250-"my hostname"
    WelcomeDEBUG SMTP: use8bit false
    MAIL FROM:<[email protected]>
    250 STARTTLS
    220 Go ahead
    RCPT TO:<[email protected]>
    DEBUG SMTP: got response code 220, with response: 220 Go ahead
    RSET
    DEBUG SMTP: exception reading response: java.net.SocketException: Connection reset
    javax.mail.MessagingException: Exception reading response;
      nested exception is:
            java.net.SocketException: Connection resetI have no idea, what a stunnel is, but it is causing the problem, I think.
    Does anybody have any ideas what can be wrong? Or does anyone know how to check the server setting? Or what properties can I try to set? (I've tried all possible options of the properties I am already setting in the code).

    You're getting newline (LF without the CR)? If so,
    it's possible that Thunderbird isn't seeing that as
    an end of line and so considers the "+stunnel" to
    be part of the greeting line.
    Either way, there's something messed up in the
    server configuration and you really need to report
    that to the server administrator.
    Also, port 465 is supposed to be an SSL port,
    starting in SSL mode, not starting in plain text
    mode as you're seeing. Again, this is evidence
    that the server is set up incorrectly.
    JavaMail will support STARTTLS just fine, and it
    won't care what port you're using, but that bogus
    "+stunnel" line is a protocol violation that's
    confusing it. Possibly Thunderbird is taking the
    approach of "throw away garbage until I see
    something I recognize", but JavaMail isn't working
    that way.
    If this was a server on the public internet that
    lots of people might encounter, I might be inclined
    to add a workaround to JavaMail. But since this is
    a private server that's clearly configured incorrectly
    and is clearly violating the protocol, I think the best
    thing to do is to get the server fixed.

  • RNIF Error - BAD HTTP RESPONSE CODE RECEIVED: HTTP/1.1 500 Internal Server

    Hi,
    I am trying to do a scenario on RNIF. While testing, we trigger the PIP from STK, But we are getting the error as BAD HTTP RESPONSE CODE RECEIVED.
    Java Exception     com.rosettanet.rnstt.outbound.RosettanetException: BAD HTTP RESPONSE CODE RECEIVED: HTTP/1.1 500 Internal Server Error
    Trace     com.rosettanet.rnstt.outbound.RosettanetException: BAD HTTP RESPONSE CODE RECEIVED: HTTP/1.1 500 Internal Server Error at com.rosettanet.rnstt.outbound.Outbound.checkResponseCode(Outbound.java:342) at com.rosettanet.rnstt.outbound.Outbound.checkResponse(Outbound.java:306) at com.rosettanet.rnstt.outbound.Outbound.sendMessage(Outbound.java:284) at com.rosettanet.rnstt.controller.TestController.handleSocketOutbound(Unknown Source) at com.rosettanet.rnstt.controller.TestController.handleOutbound(Unknown Source) at com.rosettanet.rnstt.controller.TestController.runTestCases(Unknown Source) at com.rosettanet.rnstt.controller.TestController.run(Unknown Source) at com.rosettanet.rnstt.controller.TestController.main(Unknown Source)
    Any help on this? What could be the reason for this error?
    Thanks in advance...
    Vasu

    Hi All,
             I too getting the same problem. Any inputs from anybody?
    Thanks & Regards,
    Purshothamm

  • Com.sap.caf.mp.base.exception.EngineException: Problem in server response:

    Hi,
    I have created one CAF application,which is having one external webservice and one application service.Webservice takes two input parameters(string,boolean) and it returns an arraylist.
    So when i test the CAF application on the CAF service browser it is giving me error like " com.sap.caf.mp.base.exception.EngineException: Problem in server response: [Bad Request]."
    I am getting this error while creating object of web service.
    Can anybody help me on this issue..
    Thanks in Advance

    It looks like you are not authorized to execute the webservice. Check the webservice authentication settings.
    Peter

  • The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
                    SmtpServer.UseDefaultCredentials = true;
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    When i m run this part of code it throw an Ecxeption                                                          
            Given Below is the Error.. 
        The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Bikky Kumar

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
    SmtpServer.UseDefaultCredentials = true;    ///Set it to false, or remove this line
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    Given Below is the Error..      The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Solution:
    The error might occur due to following cases.
    case 1: when the password is wrong
    case 2: when you try to login from some App
    case 3: when you try to login from the domain other than your time zone/domain/computer (This
    is the case in most of scenarios when sending mail from code)
    There is a solution for each
    solution for case 1: Enter the correct password.
    Recomended: solution for case 2: go to
    security settings at the following link https://www.google.com/settings/security/lesssecureapps and
    enable less secure apps . So that you will be able to login from all apps.
    solution 1 for case 3: (This might be helpful) you need to review the activity. but reviewing the activity will not be helpful due to latest security
    standards the link will not be useful. So try the below case.
    solution 2 for case 3: If you have hosted your code somewhere on production server and if you have access to the production server, than take remote
    desktop connection to the production server and try to login once from the browser of the production server. This will add exception for login to google and you will be allowed to login from code.
    But what if you don't have access to the production server. try
    the solution 3
    solution 3 for case 3: You have to enable
    login from other timezone / ip for your google account.
    to do this follow the link https://g.co/allowaccess and
    allow access by clicking the continue button.
    And that's it. Here you go. Now you will be able to login from any of the computer and by any means of app to your google account.
    Regards,
    Nabeel Arif

  • Server Response: 550 5.7.1 Unable to relay

    SBS 2011 I have exchange 2010,
    Internally Outlook send/ Receive working fine-- Local Ip address.
    Owa Send/Receive working fine.
    But remote user can receive the Emails, But cant send the emails.
    Subject 'tes'
    Server Error: 550
    Server Response: 550 5.7.1 Unable to relay
    Server: 'xxx.xxx.xxx.xxx'---- Public IP address
    Windows Live Mail Error ID: 0x800CCC79
    Protocol: SMTP
    Port: 25
    Secure(SSL): Yes
    How to fix this issue ?

    Hi,
    Did you create a relay connector to allow to relay in Exchange? About how to create a relay connector, you can refer to the following article.
    How to Configure a Relay Connector for Exchange Server 2010
    http://exchangeserverpro.com/how-to-configure-a-relay-connector-for-exchange-server-2010/
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    To allow a device to use Exchange to relay a message to an outside recipient, you also need the ms-Exch-SMTP-Accept-Any-Recipient attribute.
    Get-ReceiveConnector -Identity relayconnector | Add-ADPermission -User "NT AUTHORITY\ANONYMOUS LOGON" -ExtendedRights "ms-Exch-SMTP-Accept-Any-Recipient"
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Anyone else seeing "Invalid server response" when logging into VCMA through a web browser?

    I am getting "Invalid server response" when I log into VCMA from Safari on my iPhone. I have the app on my iPad and it will connect and manage my ESXi hosts normally (so I am fairly certain the setup and config of the Virtual Appliance went ok).
    I Googled the error and got some returns about different Virtual Appliances doing the same thing. Seems to be an issue with running VCenter on a Windows 2008 server (which we are). Users reported switching VCenter to Windows Server 2003 boxes and it worked fine.
    Anyone else ran into this and figured it out?
    My environment:
    vCenter Server 4.1.0 - Build:258902
         - running as a VM on ESXi 4.1.0 - Build: 348481
         - running on top of Windows Server 2008 R2 Standard SP1
         - vSphere Client 4.1.0 - Build: 258902
    vCenter Server and VCMA Appliance are on the same subnet.

    I had not done that yet, but thanks to your suggestion I have made that change.
    I am not sure if the above fixed the issue, but I am now able to get the website to load. I was trying to load the page https://vcmaServerIP:5480 which will load a login page. When you try to log into it, I was and am still getting the error I first posted about. By some weird chance I tried to load the page https://vmcaServerIP and got a completely different looking page and was able to log in and work like I should be able to.
    So, lesson learned: do not put the :5480 at the end of the URL and you will get the correct login page.
    Thank you dschubot for your help.

  • Error in server response

    I have an Ultra 60 running Solaris 8 and I'm trying to execute the pkg-add -U command (I really want to install a new gcc compiler but I'm getting the same message). The results are:
    Connecting to an_address.edu[000.0.00.000]:21... connected.
    Logging in as anonymous ... Logged in!
    ==> SYST ... done. ==> PWD ... done.
    ==> TYPE I ... done. ==> CWD /pub/packages/solaris/freeware/sparc/5.8 ... done.
    ==> PASV ...
    Error in server response, closing control connection.
    Retrying.
    This goes on for some time (20 times I believe is the the default) and just quits. What do I need to do to get pass this error?

    I have an Ultra 60 running Solaris 8 and I'm trying to execute the pkg-add -U command (I really want to install a new gcc compiler but I'm getting the same message). The results are:
    Connecting to an_address.edu[000.0.00.000]:21... connected.
    Logging in as anonymous ... Logged in!
    ==> SYST ... done. ==> PWD ... done.
    ==> TYPE I ... done. ==> CWD /pub/packages/solaris/freeware/sparc/5.8 ... done.
    ==> PASV ...
    Error in server response, closing control connection.
    Retrying.
    This goes on for some time (20 times I believe is the the default) and just quits. What do I need to do to get pass this error?

  • Error Parsing Server Response??

    Does anyone know what "error parsing server response, please re-sync" means?
    I have had the worst trouble with using my email on the phone. It works half the time. I finally got it set up to send using my mobile carrier as the outgoing, but now it fails on syncing email.
    Thanks!
    Post relates to: Centro (Sprint)

    ANY LUCK??  I've been havign the same problem for about 8 days or so after the phone and email worked perfectly for several weeks.  When in Account Setup the Communciation Check comes back successful but when I try to Get email it fails and I get the following error message, "Error Parsing Server Response.  Please re-sync."
    Any help or suggestions are appreciated.
    Post relates to: Centro (Verizon)

  • Delivery fails: "The server response was: 4.7.0 Temporary server error. Please try again later. PRX3"

    Trying to setup an Exchange 2013 server, with the DC and Exchange on same machine. WHen I try to deliver for either of the 2 mailboxes I have setup, I get this error.
    The server returned status code 451 - Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    It doesn't seem to be a resource issue (I'm running an XL instance on Azure), and all other connectivity works fine (and fast). I just can't receive email there. 
    Looking in the event logs, I saw one issue related to the Front End HTTP proxy, but I wouldn't assume that's relevant here. (And connectivity via Outlook & OWA seem to be fine, with the exception
    of some redirect issues on the latter).
    I did end up installing Exchange on a secondary drive for space considerations, so the location is different... not sure if that would factor in either.
    Any ideas? I don't even really know where to start debugging this. I'm trying to set this up to work on some event sync/forwarding code.

    Ok, I think I solved my problem but figured I would update here for others who may be running into the same issue.
    In my \Exchange\TransportRoles\Logs\FrontEnd\ProtocolLog\SmtpReceive\*.LOG, I found more detailed information on the issue.
    "Message or connection acked with status Retry and response 
    451 4.4.0 Error encountered while communicating with primary target IP address: ""421 4.2.1 Unable to connect."" 
    Attempted failover to alternate host, but that did not succeed. Either there are no alternate hosts, or delivery failed to all alternate hosts. The last endpoint attempted was 10.10.10.1:2525"
    I thought creating an endpoint for 25 would be sufficient, but once I created another endpoint for 2525 then my tests started working.

  • Bad Server Certifcate?

    Alright, I've got a bit of an odd problem here.
    Whenever I go on to a site that Safari says could be "insecure," I choose to continue, but when loading the page, all pictures on that page are replaced by blue boxes with question marks in them.
    So I checked the "Activity" window, and for all those pictures, the words, "Bad Server Certificate" appear.
    Is there anyway to get around this, so I can actually navigate on sites with this message?
    Thanks
    Ziggy

    If you have the DeBug menu to the right of Safari's Help menu, scroll down to the bottom to "Security" and click, then select "Performs Lax Certificate Checks".
    This allows you to navigate secure sites who have signed their own certificate (very common), and actually do have secure encryption; but, because their certificate was not signed by a known, "trusted", third party certificate authority, Safari issues fair warning.
    ==============================
    Don't have the DeBug menu? Turn it on this way:
    Quit Safari.
    Open HD->Applications->Terminal;
    at the cursor, a gray block, type the following:
    <code>defaults write com.apple.Safari IncludeDebugMenu 1</code>
    Relaunch Safari and see the DeBug menu.
    ==============================
    P.S. This "lax certificate" preference doesn't seem to hold after you quit and relaunch Safari. But it's probably best to set it site by site anyway.

  • Removing "server" response header in Netscape Enterprise Server 4 SP2

    Hi folks,
    I've been searching around and I couldn't find how to turn off the "server" response header for the aforementioned web server. I've tried adding ServerString "" to magnus.conf but that doesn't work. I guess that only works for versions 6.x.
    Any idea where I can make the changes to 4.0?
    Thanks in advance.

    I don't believe you can suppress the "server" response header in the release that you are using. Look at:
    http://sunsolve.sun.com/pub-cgi/retrieve.pl?doc=finfodoc%2F67865&zone_110=67865%2A%20
    Also, note that 4.x versions of web server are no longer supported.
    Thanks
    Manish

  • I'm getting "invalid server response" when I try to spider a site

    I want to spider a partial website (to get documentation) but I am getting the error "invalid server response" when I start.
    The site is perfectly viewable with Firefox, Safari and on my iPad.
    Here is the section of the site I wanted to convert to PDF
    http://quartzcomposer.com/patches
    I'm using Acrobat Pro 11.0.03
    Any ideas?
    (By the way, there's no appropriate section for this aspect of Acrobat so that's why I just put it in this "creating, Editing...." section.)

    OK, I interpret spiders as the feelers sent out by search engines -- a different use of the term. Anyway, I got the same error as you on both AA9 and AA XI. The other version was AA5 that simply said General Error. I was able to get the page into Acrobat around the back door. I downloaded the page to my harddrive and then opened the htm file in Acrobat. There are a whole lot of JS files called by the htm file. It did load that page, but I could not get to the next page. So the result is the same as printing to a PDF or using PDF maker in IE (I don't use IE). I tried the URL link with the htm file name and did not get the desired result. I suspect it is something that is non-standard but the browsers allow that is causing the problem. Acrobat sticks pretty close to the HTML standard as I understand it and it is where there are encryptions or other items that it messes up. I am not exactly sure what you are trying to get out of the PDF, but this gives you some idea of what to look at. I had looked at both the HTML source of the site and the site info to try to see if I saw anything strange. What I saw were a lot of calls to JS.
    Bill

Maybe you are looking for

  • Vendor Master data report

    HI All, My client want to see the payment terms for the vendor which was created from June-11 to Oct-31-11. Colud you guys plesae guide me how to pull the vendor master records created, changed and Extended from June-11 to Oct-31-11, is there any T.c

  • Ios6 updation query

    I am using 4s, after updating ios6 ,the language in apple stores has changed

  • Apple mobile device support won't install.

    when i tried to install the new itunes AMDS wouldnt install correctly

  • Error messages in COGI

    Hi, We have scheduled a custom program (which is copy of MB26) in back ground to make goods issues against reservations. Reason behind developing custom program is to modify the selection screen. The batch job executes for every 5 minutes in back gro

  • Urgent!!!! regarding report output

    i have a requirement such that, i need report without top of page..but headers needed to be in the printout in all pages.......pls gv ur suggestions. thanks