Hangs, especially associated with Safari

I have OS X 4.11 installed, and with it I am running Safari 3.0.4. I had Safari 3 Beta installed, and had few if any problems with it. After installing the update, however, I have had severe hangs with Safari. Now, I have had Spin Control running for the last day and a half, and it is recording hangs in Safari of 68, 49, or 233 seconds. I decided that Safari was the problem, so I used firefox instead; it had a nice long hang of 233 seconds when I used it. On occasion, the Finder will hang for as much as 182 seconds. I did not notice any of this sort of hanging before installing the update, but now, especially following a restart, I see significant hangs.
The last hang came while I was watching a video on the ABC website, then tried to close the window. It hung for 68 seconds. Is this "normal," or is there something I can fix?

I don't know SpinControl but I suspect it may be the cause of your problem.
If you are updating Safari (or just have):
Input Managers from third parties can do as much harm as good. They use a security loophole to reach right into your applications' code and change that code as the application starts up. If you have installed 10.4.11 and Safari is crashing, the very first thing to do is clear out your InputManagers folders (both in your own Library and in the top-level /Library), log out and log back in, and try again.
So, disable all third party add-ons before updating Safari, as they may not have been updated yet for the new version. Add them back one by one. If something goes awry, remove it again and check on the software manufacturer's website for news of an update to match your version of Safari. Remember: Tiger up to 10.4.10 used Safari 2.0.4 or, if you downloaded it, Safari 3.0.3 beta. Safari 10.4.11 uses Safari 3.0.4 which is not a beta. If Safari 3.0.4 on 10.4.11 is not the fastest browser you have ever used, then something is wrong!
Moreover, trying to revert to Safari 2 when running 10.4.11 can have repercussions, as Safari 3.0.4 uses a completely different webcore on which other applications like iTunes, Mail etc also rely.
Most errors reported here after an update are due to an unrepaired or undetected inherent fault in the system, and/or a third party ad-on. Two such add-on that have been frequently mentioned here for causing such problems are Piclens and Pithhelmet. If you have them, trash them and go the developer's sites to see if new versions are available for Safari 3.0.4.

Similar Messages

  • Fresh Leopard install gone Wrong - PKG Files Associated with Safari

    I just purchased a used Macbook Core 2 Duo 2.0ghz that came with Tiger installed. I upgraded to Leopard by zeroing the hard drive and reinstalling Leopard and all updates.
    The problem I am running into is that for some reason, and PKG files downloaded to install programs (i.e. Skype) will not install because the PKG file is associated with Safari. I check on my Mac Pro, and it has PKG files associated with "Installer". I tried to find "Installer" as a program on the Macbook but had no luck. Any ideas? With this being a fresh install I have NO idea how this happened. Any help is most appreciated. Thanks.

    Hmm, I tried to associate a file with the Installer, but wasn't able to get the system to tell me where it is. There is a command line version of the installer in /usr/sbin/, and that may be what the system uses under the hood, but I couldn't find a way to get to that either (I was trying to do this in the Get Info pane, under Open With).
    I don't know why pkg is associated with Safari. It could be that your launch services database got hosed somehow during your upgrade. If you're willing try something, it might be that rebuilding your launch services database will help. From the command line, run this command:
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchSe rvices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user
    (the above should all be on one line). This will reset, then rebuild the database. Although I don't think it's strictly necessary, restarting your machine after this command has run successfully would probably be a good idea.

  • Very poor implementation of XMLHttpRequest streaming with Safari for Window

    I hope this post reaches Apple engineers. This is critical for us to resolve this. I am a member of the developer network, so if using incident support is necessary, it can be used. Do not hesitate to contact me with any questions. I have implemented a test to compare XMLHttpRequest streaming performance for different browsers. Safari for Windows 5.0.3 had the worst results compared to Chrome and Firefox. Furthermore, I think this problem was introduced after Safari 3. The test consists of a server pushing messages of about 350 bytes to the browser at a rate of about 300/s. Once server pushes 10,000 messages, it closes the connection and browser opens new one repeating the cycle. There were several problems associated with Safari: 1) Safari could not process much more then 300 messages/s, that is quite low. Chrome had no problem processing 1,000. If, for example, 500 m/s was used, Safari would quickly allocate hundreds of meg of memory and crash. 2) Safari starts with about 64MEG of memory allocated. Once the test page is opened, memory quickly climes to 150MEG and as test progresses to >400MEG. Once the connection closes, it drops to 150MEG again. Chrome's memory did not fluctuate at all staying at 32MEG for the same test. 3) CPU was steadily claiming as test progressed and then dropped as connection was reset, creating CPU spikes. It reached about 50% CPU before connection was closed. Chrome's CPU stayed at about 2% all the time. This is the code: Server. Should be run with the latest Java Tomcat 7. Configure Tomcat to use Http11NioProtocol: package test; import java.io.IOException; import java.io.PrintWriter; import java.text.SimpleDateFormat; import java.util.Date; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.catalina.comet.CometEvent; import org.apache.catalina.comet.CometProcessor; @SuppressWarnings("serial") public class WebFrameworkServletXHRReconnects extends HttpServlet implements CometProcessor { @Override public void event(CometEvent event) throws IOException, ServletException { HttpServletRequest request = event.getHttpServletRequest(); HttpServletResponse response = event.getHttpServletResponse(); if (event.getEventType() == CometEvent.EventType.BEGIN) { System.out.println("Begin for session: " + request.getSession(true).getId() + " " + response.getWriter()); response.setHeader("pragma", "no-cache,no-store"); response.setHeader("cache-control", "no-cache,no-store,max-age=0,max-stale=0"); event.setTimeout(Integer.MAX_VALUE); PrintWriter out = response.getWriter(); SimpleDateFormat formatter = new SimpleDateFormat("mm:ss: "); for (int i = 0; i < 10000; i++) { out.print("{\"messageType\":8448,\"requestId\":"0",\"eventType\":1,\"symbolId\" :[\"BAC.EA\",0],\"fields\":[{\"header\":"0",\"type\":6,\"data\":[3993,2]},{\"hea der\":"55",\"type\":6,\"data\":[1185,2]},{\"header\":54,\"type\":6,\"data\":[321 8,2]},{\"header\":"5",\"type\":6,\"data\":[6617,2]},{\"header\":52,\"type\":4,\" data\":[15]},{\"header\":"12",\"type\":6,\"data\":[1700,2]}]}"); out.flush(); if (i % 10 == 0) { try { //Thread.sleep(60); Thread.sleep(30); } catch (InterruptedException e) { } } if (i % 100 == 0) { System.out.println(formatter.format(new Date()) + i); } } out.close(); event.close(); } else if (event.getEventType() == CometEvent.EventType.ERROR) { event.close(); } else if (event.getEventType() == CometEvent.EventType.END) { event.close(); } } } client: <script type="text/javascript" src="log4js.js">
    </script>
    <script type="text/javascript">
    var api;
    var log = new Log(Log.DEBUG, Log.popupLogger);
    var byteoffset;
    var perocessedMessages;
    function connect() {
    perocessedMessages = 0;
    byteoffset = 0;
    id = 0;
    api = new XMLHttpRequest;
    api.onreadystatechange = onreadystatechange;
    api.onerror = onerror;
    log.debug('connect');
    api.open("GET", "http://localhost/Test/Controller", true);
    api.send("");
    function onreadystatechange() {
    switch (api.readyState) {
    case 3:
    change();
    break;
    case 4:
    disconnect();
    break;
    function change() {
    connected = true;
    var buffer = api.responseText;
    var newdata = buffer.substring(byteoffset);
    byteoffset = buffer.length;
    while (1) {
    var x = newdata.indexOf("<activ>");
    if (x != -1) {
    y = newdata.indexOf("</activ>", x);
    if (y != -1) {
    processMessage(newdata.substring((x + 7), y));
    newdata = newdata.substring(y + 8);
    else {
    break;
    else {
    break;
    byteoffset = buffer.length - newdata.length;
    function processMessage(msg) {
    var objJson = eval('(' + msg + ')');
    perocessedMessages++;
    //if (perocessedMessages % 100 == 0) {
    // log.debug('' + perocessedMessages);
    function disconnect() {
    log.debug('disconnect');
    connect();
    function onerror() {
    log.debug('onerror');
    </script>

    I hope this post reaches Apple engineers. This is critical for us to resolve this. I am a member of the developer network, so if using incident support is necessary, it can be used.
    We're a user-to-user forum, ilyag. So it'd be better for you to use the Apple Bug Reporter if you want to ensure someone from Apple sees your post:
    http://developer.apple.com/bugreporter/

  • Can no longer download journal articles with Safari or Firefox

    As of three weeks ago I am no longer able to download and save journal articles, though I am able to read them.  I can save documents when there is simply a "save" or "view" button indicated next to a document in small blue letters if I click the "save" button.  Using OSX 10.6.8 on a MacBookPro
    Any help would be greatly appreciated!

    Try deleting the cache associated with Safari ...
    Quit Safari.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy / paste:   ~/Library/Caches/com.apple.Safari
    Click Go then move the Cache.db file from the com.apple.Safari folder to the Trash.
    Relaunch Safari to test.

  • Frustrated with Safari and Leopard

    I am at wit's end trying to figure out what to do. There are dozens of websites to which I cannot connect. ESPN. Mac Daily News. Just about anything that requires a flash plug-in, but not always. I've deleted and reinstalled Flash. I've gone to an older version of Flash. I've fixed permissions. I've deleted plug-ins. I've spent an hour cleaning out preferences (wow, I cannot believe some of the stuff I've kept over 5 years of using Mac OSX, and migrating from Mac to Mac to Mac--but that's not relevant). I've removed every program associated with Safari. I've deleted plists. I've done everything I've read on here to fix safari. And yet, I cannot make Safari work with these websites.
    Firefox and Opera both do not work with the same sites as Safari, so there is some commonality that is beyond my understanding. All three programs worked with all of the different websites in my bookmarks just a month ago. Everything stopped working as soon as I moved to the newest version of Safari. I just can't uncover what is causing it.
    I hope someone knows what to do.

    ESPN.com and Macdailynews.com are the two I use the most and the two most problematic. I must have some setting wrong. I can tell you that one of my iMacs has not been upgraded to Safari 3.1, and it's working fine.

  • I'm told there is a virus associated with Adobe Reader. How can I tell if my machine is effected and if so what is the cure. I'm running OS X10.6.8 on an iMac with safari 5.1.5

    I'm told there is a virus associated with Adobe Reader. How can I tell if my machine is effected and if so what is the cure. I'm running OS X10.6.8 on an iMac with safari 5.1.5

    There are no viruses currently affecting the Mac but there is something called Flashback which is malware that has been doing the rounds and affected many Mac users. Apple have released some updates to Java that should remove it and improve protection. Run Software Update to see if there is anything for downloading.
    A few precautions that can help prevent your Mac becoming infected:
    If you use Flash only download it directly from Adobe.
    In all web browsers disable Java (but do leave Javascript on as that's something else).
    In all web browsers make sure downloaded files aren't set to automatically open after downloading.
    Consider disabling Java completely (launch Java Preferences in the Utilities folder and disable it - you'll likely rarely, if ever need it. If you do just turn it on and off again when your done).
    You can also check out this link:
    http://lifehacker.com/5900434/how-to-find-out-if-your-mac-was-infected-by-the-fl ashback-trojan-in-one-click

  • I've lost the icons associated with my bookmarks. I've tried restarting my Mac, reinstalling Safari, and the add-ons suggested in other forums without any success. Is there a way to fix this issue?

    I've lost the icons associated with my bookmarks. I've tried restarting my Mac, reinstalling Safari, and the add-ons suggested in other forums without any success. Is there a way to fix this issue?

    Hi rmmilleriii,
    You should take a look at [https://support.mozilla.org/kb/latest-firefox-issues#os=mac&browser=fx9 this article] that discusses some of the issues with the latest build of Firefox.
    There is some information in there that should help you to resolve your issue. Luckily, it is a very easy fix.
    Hopefully this helps!

  • HT5622 My wife and I both have MacBooks and both are associated with my apple ID since I bought them. However, this means that Safari is linked for both her and I as well as our contacts etc. Can I still use mine for apps for her but associate hers with h

    My wife and I both have MacBooks (I have MacBook Pro and she has Air) and both are associated with my apple ID since I bought them. However, this means that Safari is linked for both her and I as well as our contacts etc. Can I still use mine ID for apps for her but associate hers with her own ID that I have yet to make?

    Well with the MS Hotmail/Outlook.com account that is hard. But she should be able to link all of it to the iCloud system using her Apple ID.
    I suggest you do a Google search for "link contacts, Calendars, iMessage with iCloud".
    For some stupid reason MS has limited the syncing/linking of only emails and Notes with the Hotmail/Live Mail/Outlook.com system.
    They have not included any Exchange features for syncing all that info. That is unless you are using Outlook 2013 and that is only for Windows.

  • I have a MacBook running a 10.7.5 OS.  Of late it has started hanging, especially when I use Safari.  Can anyone help?

    I have a MacBook that's four years old, runs on iOSX 10.7.5 but of late has been hanging, especially when I use Safari.  Can anyone help?

    Carolyn,
    I searched my whole system and couldn't find
    com.apple.systemuiser.plist
    So that is a mystery.  However the part about:
    Go back to System Preferences > Network
    Make sure the box is selected next to:  Show Wi-Fi status i menu bar. Solved the problem.  Somehow the box had been unchecked.  Gremlins I guess!
    Thanks so much for your help.
    L.

  • Has anyone noticed that comcast does not play well with safari, especially around e-mail and voice mail?

    Is anyone else having trouble with safari working with comcast?  I've spoken to both the comcast people (no help what so ever) and the apple people with no success at all.  I like the safari format and don't want to change.
    Teresa

    MacBook Pro
    MacBook Pro Apple Support
    Mail Troubleshooting email messages
    Mail and Address book
    Mail Support Apple
    Safari
    Much better forums to bookmark and use rather than one devoted to workstations.

  • Problems with Safari 6.0.1 on OS 10.7.5

    I'm having massive freezing problems with Safari 6.0.1 freezing up on me in the last 10 days or so. I'm running OS 10.7.5 on 27" iMac Intel circa mid 2011. Any help appreciated.

    Okay. At the beginning of this discussion I was on 6.0.1. However, I responded to an update since then and since I didn't realize 6.0.2 wasn't compatible with Lion I responded and updated.
    Now, with your message, a clean 6.0.1 installation sounds like a great idea. However, I've downloaded it from your link and when I install just from the install program, I still have an "About Safari" showing 6.0.2. I then tried setting up a separate Safari folder in the Applications folder and installed into that. I only got some Safari-associated folders and items there but no new Safari app icon... and the Safari 6.0.2 icon (which I hadn't gotten rid of since I don't want to lose my bookmarks, etc... want to transfer those once the 6.0.1 is there) is still there.
    All the hanging-up problems are still happening, btw... and probably even worse. Right now I'm using Camino, a good browser but Safari has features I'd like to get back to... got Firefox, too, and like it, but I've got it set up for other family members to use and Safari here for me.
    Any help on how to get 6.0.1 installed again without losing bookmarks greatly appreciated.

  • Refresh the object associated with a Row in a Data Control?

    I am using EclipseLink & have an issue with multiple updates of the same Row. During an update, a new instance of the entity is returned by the update method. The instance bound to the Row is not updated with this new version and subsequent updates fail with an optimistic locking exception since the entityVersion hasn't been updated.
    Question: Is it possible to refresh the instance associated with a data control Row? I can remove rows, create rows, but it is not apparent to me how to update a row. I am trying to avoid doing a full retrieve on the bound iterator.

    Hi!
    The issue here is, by my opinion, a gap between ADFm and EJB 3.0 in use-cases with large data sets. If you search this forum, you may find related thread by Pedja about problem of feasible "scrollable" af:table with large number of entities in EJB finder result list. Unfortunately, the ADFm "paged" fetching is in mismatch with EJB support for "paged" (or scrollable) results lists. The all results of EJB finder method are retrieved from data source, stored in memory (thus breaking the heap) and transferred to ADF datacontrol. Then, and only then, ADFm paged fetching and caching mechanisms are employed – but they are just cosmetics as the main data set is permanently stored in memory as List<?>. The workaround is, as Pedja discovered, to write completely proprietary TableCollectionModel which completely evades ADFm and is implemented by set of EJB Session methods for paged acces to datasource through TopLink and native database queries (enabling retrieval of particular range of rows instead a complete result set). Of course, this is very complex coding experience and I find it a not acceptable for efficient development of modern applications on ADF + EJB stack, especially as it brakes a technology independence promoted by EJB and EclipseLink and other standards-based technologies (as you have to use database-specific native query implementation for paged /scrollable access!).
    What I want to say is that I have feeling that ADF support for EJB is not complete in full extend and that ADFm is still much better suited for BCs then for EJBs. I hope that this will be solved in future as this issue may pose a significant issue on application development in enterprise-level area where it is supposed that we are dealing with BROWSING also a large data sets.
    Yes, I emphasize a BROWSING as I strongly oppose a dogmatic approach that SEARCHING is a solution for every use-case. From theory of information, the system SHOULD NOT limit the user in accessing ALL information (based on access rights, of course). So the idea that SEARCH forms should be used to bridge a architectural gap between a ADFm and EJB is not acceptable, as the search MAY limit the user in acquiring the information he (or she) is not able to describe in adequate manner based on search criteria offered by the developer. So, the developer may be responsible for misinformation of user, by limiting his access to information, jus for technology limitations of ADFm which forces a development of purely SEARCH-based functionalities.
    I hope that development team would appreciate and consider this remarks, and invest effort in closing (not bridging!) the gap between ADFm and EJB.
    Regards,
    PaKo

  • Problems with Safari, Firefox and Flash player

    Ever since I got my new iMac that has Snow Leopard I've had problems with Safari and Firefox freezing or crashing. It appears that part of the problem is the Flash plugin because sometimes a screen pops up and says something like: the flash script is having problems. I've tried uninstalling & reinstalling Flash, Safari and Firefox but the problem is still there. My browser seems to hang up or freeze a lot no matter if I use Safari or Firefox.
    Any ideas?
    I just discovered the Chrome browser from Google this morning and so far its working very well. No freezes and it appears to handle Flash video without any problems.
    How can that be?
    Thanks

    Ah! The proverbial missing information. Why the regrets? Most people are having no issues migrating from previous computers; it's the preferred method. See Best Practices and Setup new Mac. You're a long way from starting over.

  • How can I open an app from an e-mail link that is associated with link.

    I get e-mails with links in them all the time (from forms, online shopping, etc).  Some of those links are for websites that have an iphone app associated with them (especially forums).  When I click on the link it tells me as much, and if I click "ok" to that dialog, it takes me to the App Store and to that specific App, where I can download it.  Even when I have that app installed, rather than taking me to that app when I click on the link, I get the dialog again telling me that there is an app associated with their website (which I already know because I have the app).  Is there any way to get these links to open in the associated App, rather than trying to open them up in the browser?

    This question has been answered before, see the page linked below:
    https://discussions.apple.com/message/15123175#15123175

  • Open source shopping cart wont open with safari

    Hi all...
    I'm designing cart templates for a company that supplies an interface for uploading product to an open source shopping cart. The problem is I can't open the shopping carts with safari. They are fine with firefox and on a PC. (forgive me for swearing) The sites are open source carts based on php scripting with a lot of compressed data. A software interface is used to upload products etc... The error I get is
    "Safari can’t open the page “not sure if I can put the link here as it is a business”. The error was: “bad server response” (NSURLErrorDomain:-1011) Please choose Report Bug to Apple..."
    It's the same for all the sites using the carts.
    Is there a fix at the user end or does safari simply not have support for these carts. Any help would be awesome....

    PCI Compliance. As a merchant (online or brick & mortar store), you must take necessary steps to ensure your customer's CC info doesn't fall into the wrong hands.  One way to do this is to pass your online customers off to a 3rd party processor like PayPal or Authorize.net. These companies are experts in safely gathering sensitive data, encrypting it and transmitting it to your payment Gateway and Merchant Bank account.  This way, your customers never enter any sensitive data into your site's databases which avoids a lot of headaches for the web developer and merchant.
    Server Security. Use a reliable web host. I can't emphasize this enough.  Cheap hosting is no bargain especially if your host doesn't take reasonable steps to secure their servers at their end.
    Lock down your php scripts & form log-ins to defend your site against possible hackers & robot exploitation.  If your site is ever compromised, you will need reliable backups of your Site files and MySql data.  Make sure to backup these files regularly and store them in a safe place.
    Backend log-in.  Use strong, encrypted passwords -- 17 characters, upper & lower case with symbols.  If you can remember your passwords, they're not strong enough.  I keep mine written down in a Rolodex.
    Change the Admin log-in name to something less obvious like GrandHighExhaltedMysticRuler or something only you will recognize as the site's admin level user.  It's also a good idea to change your server, database and backend log-ins regularly.
    Finally, consider running SecureLive on your web server. I have it running on a dedicated server and this software has more than paid for itself.  It identifies hacker attempts, blocks the user and sends the hacker's IP address to an FBI database.  SecureLive - Home
    Nancy O.

Maybe you are looking for

  • How do I get the date of a file in an FTP?

    As stated in the subject. I am at wits end trying to get the date of a file from FTP(Stuck for days). I tried the "URLConnection" Class but could only get me the size of the file with "getContentLength()" "getContentDate()" & "getLastModified()" both

  • Adobe Acrobat Pro crash

    I have an iMac OSX (version 10.9.2).  Adobe Acrobat Pro crashes every time I try to use the "find" function.  Anyone else have this issue?

  • I just got a nano 7th generation but came in  chinese language and don't understand

    Hi I new at this, I just got the nano 7th generation. Took it out of the package and discover that is in chinese language and don't understand and don't know which one of the setting in the one for changing the language. Can anyone help one Annie

  • Consolidating MacBooks and updating systems. Help?

    So, my husband and I decided to move down to one MacBook and instead we purchased an ipad.  His MacBook is newer and works much better (early 2008 model).  I easily moved my music and documents over to his computer already.  I can't move my photos ye

  • Af:table filter date format : task-flow navigation issue

    hi When trying to use the date format configured on the Entity Object, with Format Type as Simple Date and Format as "dd-MM-yyyy", there seems to be a problem when using task-flows. The approach involves an explicitly configured attributeValues bindi