Why are these problems starting to appear on OS 10.6.8?

Downloads and app updates hang for several seconds a couple of kb's short before finally completing.
Occasionally clicking on a bookmark, even repeatedly, fails to open the page.
When clicking back to a previous page I often get a message stating that the browser can't find the server.  Clicking the "Try Again" button or clicking the page's bookmark fails to resolve the problem.
These problems occur no matter which of my five browsers i use so the problem must be in the system.  Disk Utility, Disk Warrior and all my monitoring devices say everything "seems" to be ok.
What could the problem be?

It's rather difficult to diagnosis the issue, could be your machine, the router, the network or the ISP.
We can take some harmless procedures on your machine.
First backup your files off the machine to a regular storage drive (not TimeMachine or TimeCapsule) and disconnect this drive.
Next stick in the 10.6 disk that came with your computer (or upgrade) and reboot the machine holding the c key down, now simply install 10.6, will just overwrite OS X and bundled programs.
Reboot, log in and immediatly update to 10.6.8 under the Appel Menu>Software update, that will bring OS X and bundled programs current with your files and security updates.
What that did was basically kick any crap out of OS X itself (not users or applications) and make sure OS X itself is fine.
Next you may have to reinstall certain programs that place "hooks" into OS X, make sure they are updated to work with 10.6.8.
If your still having problems, it could be confined to your User, create another one in System Preferences, log into it and try things out again. If things are running normal there, you might decide to just use the "Users"/Shared folder to transfer your personal data to the new user, eventually deleting the old user. You need to have enough space on the drive to do this, preferable a external drive for transfer would be a better choice.
Lastly, if your problems return, it could be a program your running or installed.  Or it could be a issue with your network.
Some ISP's are testing out IPv6, or are having DNS issues. Only time and using other networks can tell if this is the issue.
Another possibility is your WiFI has been compromised, it's either got a open, weak standard or weak password and someone is hogging your bandwidth where your not getting any.
Only WPA2 (AES) with a 20+ random character, letter, number, symbol, case password for both the Admin (kept off all machines) and a Guest Internet access password is strong enough to defeat these new "bot net based" and "GPU based" router cracking malware.
Another possibility is your router needs a firmware update. If it's older G, it's likely not going to get one as they all want you to buy N routers now.
The only thing I can suggest is try to develop a plan to narrow down the culprit, sometimes it's a loose cable that a tree branch fell and hit, slightly pulling the coax out of the connector someplace, analog TV connects fine, but then the Internet keeps dropping out.
You might have to install 10.6 on a external GUID OS X Extended (J) drive, hold option boot from it and see if the problems continue or not, if it's a hard drive issue.
Really hard to narrow something like this down, you just have to play detective and narrow down the possibilities.

Similar Messages

  • What are these files that keep appearing on my desktop and how can I stop them from showing up?

    Ever since I've upgraded to OS X Mavericks, I've had these strange files show up on my desktop. The trouble is that they show up even a little while after I delete them. Here's a few examples:
    141441.jpg.part
    IMG00019-20111209-2353.jpg.part
    IMG00062-20120927-2351.jpg.part
    I've done a few virus scans, but they showed no viruses. Why are these files always popping up and how can I prevent them from appearing on my desktop again?

    You need to delete Bitdefender from your Mac. It will cause you nothing but problems.
    Removing Bitdefender Antivirus for Mac
    The best way to prevent malware from being installed on your Mac is to enable Gatekeeper.
    Open System Preferences > Security & Privacy then select the General tab.
    Make sure either Mac App Store or Mac App Store and identified developers is selected. If that area is grayed out, click the padlock icon to proceed.
    OS X: About Gatekeeper

  • Why are the threads start and terminate randomly?

    Hi there,
    I got the program below. I am wondering why are the threads start and terminate randomly? Everytime, I run the program, it produces different results.
    I know that these four threads have got same normal priority (should be 5), and under windows there is something called timeslice. Then these four threads rotate using this timeslice. How do we know what exactly the timeslice is in seconds? If the timeslice is fix, then why the results are ramdom?
    Thanks in advance!
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package mythreadone;
    * @author Administrator
    public class MyThreadOne implements Runnable {
    String tName;
    Thread t;
    MyThreadOne(String threadName) {
    tName = threadName;
    t = new Thread(this, tName);
    t.start();
    public void run() {
    try {
    System.out.println("Thread: " + tName);
    Thread.sleep(2000);
    } catch (InterruptedException e) {
    System.out.println("Exception: Thread "
    + tName + " interrupted");
    System.out.println("Terminating thread: " + tName);
    public static void main(String args[]) {
    // Why are the threads start and terminate randomly?
    new MyThreadOne("1");
    new MyThreadOne("2");
    new MyThreadOne("3");
    new MyThreadOne("4");
    try {
    Thread.sleep(10000);
    // Thread.sleep(2000);
    } catch (InterruptedException e) {
    System.out.println(
    "Exception: Thread main interrupted.");
    System.out.println(
    "Terminating thread: main thread.");
    1. Firstly, I set in the main function:
    Thread.sleep(10000);
    and I run the program it gives:
    Thread: 1
    Thread: 4
    Thread: 2
    Thread: 3
    Terminating thread: 1
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: 2
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 10 seconds)
    Run it again, it gives:
    Thread: 2
    Thread: 4
    Thread: 3
    Thread: 1
    Terminating thread: 2
    Terminating thread: 1
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 10 seconds)
    And my question was why it outputs like this? It suppose to be:
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 1
    Terminating thread: 2
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 10 seconds)
    Why these four threads start and finish randomly each time I run the program? I use Windows, suppose there is a timeslice (i.e. 1 second), these threads have the same priority. Then the threads should start and finish in turn one by one. Am I right?
    2. My second question is:
    When I change the codes in the 'main' function into:
    Thread.sleep(10000); -> Thread.sleep(2000);
    it gives me the results like:
    Thread: 1
    Thread: 4
    Thread: 3
    Thread: 2
    Terminating thread: main thread.
    Terminating thread: 1
    Terminating thread: 4
    Terminating thread: 3
    Terminating thread: 2
    BUILD SUCCESSFUL (total time: 2 seconds)
    Run it again:
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 3
    Terminating thread: main thread.
    Terminating thread: 4
    Terminating thread: 2
    Terminating thread: 1
    BUILD SUCCESSFUL (total time: 2 seconds)
    I tried several times. The main thread always terminates before or after the first child thread finished.
    My question is why it doesn't output something like:
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: 2
    Terminating thread: main thread.
    Terminating thread: 1
    BUILD SUCCESSFUL (total time: 2 seconds)
    or
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: 2
    Terminating thread: 1
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 2 seconds)

    user13476736 wrote:
    Yes, my machine has multi-core. Then you mean that if I got a one core machine the result should always be:
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 1
    Terminating thread: 2
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 10 seconds)
    ???No.
    >
    How to explain my second quesiton then? Why the main thread always terminates before some of the child threads end? Thanks a lot.

  • Why are these Webservices not supported in VC ?

    Hi all,
    I am using NW04s SP9, and I plan to make MDM-Application with VC.
    Therefore I introduced MDM-WebService into NW and defined it on VC.
    but "searchRecords" of "MDMSearchRecords" was displayed with "Not supported"
    in the right frame .
    Mmm...
    So I decided to think from a beginning.
    [http://www.27seconds.com/Holidays/US/USHolidayService.asmx?wsdl|http://www.27seconds.com/Holidays/US/USHolidayService.asmx?wsdl]
    I defined above it on VC and I used "Getholidaydate" .
    Good! .
    However,,, "Getholidaysforyear" was also "Not supported".
    Why are these methods "Not supported" ? .
    and how will come to be usable these methods in VC? .
    Thanx in advance.
    Regards,
    k.sugimoto.

    Hi
    Visual Composer supports Web services that are compliant with the Basic Profile 1 standard of the Web Services Interoperability (WS-I) Organization (http://help.sap.com/saphelp_nw70/helpdata/en/e0/92583ab4da4b9cb524f61ba4267d25/content.htm)
    Best regards
    Vincenzo

  • F14, F15, F16 -- why are these keys on my Mac Keyboard ?

    *** !!
    Why are these keys added to my Macintosh Keyboard [circa September 2006] if the **** operating system won't allow us to use them ?
    What the **** Apple ??

    My 5+ year old keyboard has the F13 F14 F15 keys sitting all by their lonesome above the help, home, page up block of keys, and I set them to do the three Expose functions, so the system will use them (at least if you have the right hack). All the F keys used to be handier though, back in the OS 9 days, when I assigned them to do all sort of things.
    Francine
    Francine
    Schwieder

  • When are these problems gonna be solved?!

    When are these problems gonna be solved?! I don't want to install this with all these problems...

    So don't install Lion yet. Lots of people wait at least a week after a public release of a major OS upgrade just to see what the common issues might be. Others wait for the first update (x.1) which usually clears up most of the issues missed during the beta period.
    Or make a bootable backup on an external drive and then do the upgrade. Most people aren't experiencing any problems. I'm not. But if you're one of the unlucky ones, that bootable backup will let you go back to Snow Leopard until you're ready to try Lion again later.

  • Why are these words not acceptable?

    Following up from another question regarding the frustrating password validation, you answered back that these following words were not acceptable in one's password:
    1234
    4321
    qwert
    test
    skype
    myspace
    password
    abc123
    123abc
    abcdef
    iloveyou
    letmein
    ebay
    paypal
    I understand that it'd be a problem if someone used one of those alone without any prefix or suffix with it, but WHY are you blocking it altogether? Why not allow it at least in middle of a cryptic word, like !@#$skype**&& , or ()()skype<><> ?
    It seems your password validation rules just check for an occurance of those words (some of which are questionable as to why it's blocked in the first place) anywhere in the string.
    Why are you making it hard for your users to come up with a password they can remember?Pretty much every other services (gmail, facebook, twitter, etc.) are equally as important and used (if not more important/used than Skype, on a daily basis) and don't enforce as much password rules and blocked words.
    It would be nice to see Skype go in the direction of 2-step verification like Gmail has.
    Use a simple password, bind a Cell-Phone number to it, get your temporary code via txt-message (if it's your first time on that computer / non-cached in browser), Simple!

    Hi
    Visual Composer supports Web services that are compliant with the Basic Profile 1 standard of the Web Services Interoperability (WS-I) Organization (http://help.sap.com/saphelp_nw70/helpdata/en/e0/92583ab4da4b9cb524f61ba4267d25/content.htm)
    Best regards
    Vincenzo

  • SnippetPreview$.htm - Why are these not being deleted?

    I have the following files in my project folder:
    SnippetPreview$.htm
    SnippetPreview1$.htm
    SnippetPreview2$.htm
    SnippetPreview3$.htm
    SnippetPreview4$.htm
    I noticed them because they are not in Visual SourceSafe so they appear when I go to add files to VSS when I create new snippets. They contain the text of snippets I've created.
    I know they are harmless, but why are they not being automatically deleted from RH when no longer needed?
    Is this a setting or preference I can set?

    Sometimes temporary files are left behind. These are just files created on previewing a snippet and like any other temporary files are not deleted. Just delete them.
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

  • Why all these problems?

    im totally on hold after reading all these problems with the MBP SR. I thought long and hard and though my money is already paid in full Im not going for it yet! Might wait till Leopard is in it. Anyone having NO PROBLEMS!?

    I've had my MBP 2.4GHz for 3 weeks now, and I love it.
    I have had NO PROBLEMS whatsoever.
    It does seem to get very hot sometimes, and it worries me a bit, but apparently this is "normal".
    There is no screen "flicker".
    When I wear headphones, there are some barely noticeable electronic noises that are normal for an electronic (non hi-fi) device such as this, and a non-issue for me even as someone from an audio engineering background.
    I have seen the yellowish tint to the screen some have reported, but ONLY WHEN VIEWING FROM AN EXTREME ANGLE!
    This is a normal limitation of the technology and certainly not a defect.
    I come to this forum to find out what potential issues I should watch out for.
    I take all the negative reports with a grain of salt, knowing that they are typically far more rare than posts here would make it seem.
    You need to do your research, and realize that if a dozen folks report a problem, that is a fraction of a fraction of a percent of users.
    The ones to pay attention to are the ones with much larger numbers of reporters, such as this one http://discussions.apple.com/thread.jspa?threadID=986785&tstart=15 - about AirPort related kernel panics, which seems to be a very hardware-specific bug that doesn't happen to relate to me.
    I assure you, there are many more people, like myself, who are thrilled with their MBP purchases, than the ones that are having major problems - they just don't have a reason to post here.
    Also keep in mind that the unlucky few who do purchase a legitimately defective machine are understandably frustrated and angry. And it's human nature to want to believe that you are not just one of the unlucky few - misery loves company.
    So a lot of these folks try to convince themselves and others that the problems are wide-spread. Which, for the most part, they are not.
    Anyway, all that said, if you can comfortably wait until Leopard is released to buy your MBP, you absolutely should.
    My aging PBG4 couldn't run the software I'm being trained to use (FCP), so I couldn't wait any longer.
    It took every ounce of restraint I could muster to wait for the new MBP.
    I waited an extra couple of weeks after it was released, keeping an eye on these forums, just to rule out any major defects - which I did, despite the handful of reports that the sky was falling.
    At the rate technology improves and prices fall these days, it definitely pays to wait as long as you possibly can to make a high-end tech purchase (as difficult as it is to delay gratification).
    So - never fear - these machines are awesome! You can buy with 99.9% certainty that you'll be thrilled with your purchase.
    Sorry for the long post. Wait for Leopard if you can, if not buy without fear and ENJOY!
    -Dennis
    MacBookPro2.4GHz 15.4" matte, PowerBook G4 Ti 550 [FOR SALE], PowerMacG4 466   Mac OS X (10.4.10)   3rd gen iPod 30gig, 2nd gen Nano 8gig
    MBP 2.4GHz 15" Matte, PowerBook G4 Ti 550 [FOR SALE], PowerMac G4 466   Mac OS X (10.4.10)   3rd gen iPod 30gig, 2nd gen Nano 8gig

  • Why are my existing content pages appearing blank in RH7?

    I am working in RoboHelp 7.  Some of my existing pages appear blank in the tool, but when I do a Preview or generate the final output, the content appears in the viewer window.  It also appears to the end-user just fine.  I have tried importing the file again and also re-typing the information, to no avail.
    Kate

    Hi,
    Yes, they do.  It doesn’t happen to all of my pages, just some.  I normally don’t notice which pages are having problems, until I access the page in order to make an edit.  and then the page is blank!  it’s frustrating.
    I hate to change the layout of one page – to remove the drop-down, because all of my pages have drop-downs.  and in order to make the pages look consistent across the board, I’d need to update 3,000+ topics (and I’m the only writer in my division).
    I know – the next thing you’ll say is that my project is too big.  ☺  that’s one thing I’m working on…eventually I want to use DITA.
    Kate

  • Why are these protected- finalize() & clone()

    Why are the methods finalize() and clone() declared as protected in Object class when any class that we write extends java.lang.Object? I mean what design considerations made them being declared as protected?

    Object.clone() is protected so that it cannot be called unless the person writing the code intends it to be cloned.
    In other words to make a class cloneable one must over-ride Object.clone() with a public method that does the cloning. In this way the method can only be called if an implementation of the mehtod has been coded.
    Convinced this is poorly explained so reply if you don't get it!
    Cheers,

  • Why are there problems getting notification alerts and sounds in ipadv3.  My settings are set exactly like my iPad 1 and all alerts and sounds appear but not on new iPad.  Very frustrating.  I have rebooted and reset several times.  Hate to have to make A

    Apple Support Communities
    Welcome, Uwdawgfan(Sign out)
    NewYour StuffHistoryBrowse
    Search for:  Search
    Apple Support Communities > People
    Profile
    Your Stuff
    Notifications
    Uwdawgfan
    Level 1 (0 points)
    [email protected]
    Member Since:May 26, 2012Last Logged In:Jun 26, 2012 6:10 PM
    My Products
    iPad, iOS 5.1.1, Epson stylus NX 430     Delete
    Add a product
    Recent Activity
    Uwdawgfan asked
    Notification settings on iPad 3 are set properly but my new IPad does not get alert badges or rounds on apps with all notifications selected and in notifications center.  Why?  Others are reporting same problem.
    "i just bought the new iPad and even though notifications are set exactly the same for mail and my app is turned on and in the Notifications"
    in Using iPad • 0 bookmarks
    Less than a minute ago
    Actions
    Change photo &amp; avatar
    Edit profile &amp; privacy
    Edit preferences
    Manage email notifications

    Do you have system sounds muted?  Check the button above your volume control on the right hand side of the iPad.  If, when you change the button you see mute on your screen, you'll restore system sounds.  If you see lock orientation, you can restore system sounds by double tapping your home button to bring up the task bar (most recently used apps).  With your finger swipe those apps all the way to the right to reveal a mute icon on the left.  Touch that icon and you'll restore system sounds. 
    Let us know if that was the issue.

  • In Firefox 8.0, why are certain apparently random images appearing as solid black boxes? These images can be accessed when clicked on. (Cache has been cleared; no effect)

    In facebook, the images sometimes appear as they should, and then they gradually shift to black. Although it appears that the images affected are random, the images that initially turn black remain consistent in their behaviour upon return visits.

    Thank you for your reply.
    I followed the instructions implicitly and could find nothing amiss. I followed the directions at "https://support.mozilla.com/en-US/kb/Images or animations do not show" and disabled the security software. RealPlayer is not installed.
    The problem images remain blacked out.
    The issue also occurs with certain images I personally upload to Facebook.

  • Why are these srcollbars appearing in IE??

    I'm not sure if this is a flash thing or a dreamweaver so I've put it in both for now.
    I have just finished my flash website and it looks fine in Firefox and Safari but a friend sent me a snapshot of how it looks in IE and it has some weird scrollbars showing up, as well as the normal browser scrollbars...why is this?
    you can see it here:
    http://www.zoeglazebrook.co.uk/misc/test.jpg
    here is my site:
    www.zoeglazebrook.co.uk

    That happens for me with IE 6.
    I have nothing useful to suggest though.

  • Why are these files showing? and how do i get rid/hide them?

    can anyone tell me a fix to hide these greyed/faded out files and folders? they are littered around EVERYWHERE on my mac, even in my external hard drive. Also, why is there a file called .DS_Store on my desktop? i've tried putting it in the trash and emptying it but it just appears again! thanks in advance.

    1. Open the AppleScript Editor in the /Applications/Utilities/ folder and run the following:
    tell application "Finder" to quit
    if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is "1" then
    do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
    else
    do shell script "defaults write com.apple.finder AppleShowAllFiles 1"
    end if
    delay 2
    tell application "Finder" to run
    If you change your mind later, run the script again.
    2. To store the metadata associated with items on the desktop.
    (111308)

Maybe you are looking for