Safari is slow/unable to load pages

I believe the problem relates to linking to necessary files in system/library/frameworks. Other apps are also affected...my printer(no connection)and Xcode does not work properly. The required files are on the computer, but there is a problem linking to them.
Does anybody have suggestions for identifying the problem?
emac G4 700   Mac OS X (10.3.9)  

The X code problem was caused when we updated Quick Time. We regained the necessary frameworks when we went went back to the previous version.

Similar Messages

  • Why do I get the error message "unable to load page (HTTP 502) when I try to open Mobile Web?

    I have an LG Octane 3 basic phone.   Does everything I need, phone and text, and I never was interested in web or e-mail capabilities until I recently upgraded our plan to the "More Everything" and was able to use data and check e-mail and access the internet.   Whenever I try to open Mobile Web, I get the error message "unable to load page (HTTP 502)".    As of March 31, 2015, all of us basic phone users lose the "Mobile Email" app on our phones, and will have to access web versions of our e-mail via the web.  Which is currently unavailable and doesn't work.
    Over a week ago, did a chat session with a tech support rep, and she indicated that either she or an engineer would contact me with how to fix the problem.   Have not heard anything from anybody, and the deadline is approaching quickly.   Have no need of all the excess features of a smart phone, nor do I wish to be forced to jettison a perfectly working phone for my needs and buy something I don't want to be able to do 2 simple things.............check e-mail to see if there's something that needs to be answered right away, and to check traffic reports when I'm on the road, or find something in an area with which I'm not familiar.     Not really too much to ask, you would think....   )
    Has anyone else had this same problem, and if so, how do we fix it....???  My next move is a phone call, but those haven't always been very productive.
    If any of you have any ideas why this error keeps coming up and the web can't load, and some on how to fix it, I would really appreciate some advice.
    Thanks in advance.
    Karen

    Since the chat session got no reply, I contacted Verizon by phone and a very nice level 2 tech created a trouble ticket and sent it up the food chain.  Got a call back, maybe 2 days later, and had a nice, although very long session with a higher level tech.  They had determined that the browser for the LG Octane is an old one and no longer supported by Verizon.    We tried everything we could to download the Opera browser, but since I was totally unable to get Mobile Web to work, couldn't do it.   The only other possible "fix" was to totally reset the phone to factory specs and try it again.   That would mean a lot of work on my part to move anything I didn't want to disappear off the phone, and find a place to forward texts that had to be saved.   Caught our tenants lying about why the rent was late (again), and need that for when I put them back on a lease....  
    Long story short is that unless we try this total reset, which isn't a sure fix, either, anyone who isn't able to access the Mobile Web with the LG Octane will have to change their plan to avoid paying for data that you can't access using any method. 
    I ran a test with an app that I knew was no longer valid.....that was sending photos to PixPlace.   Got the exact same error message as when trying to access Mobile Web to get the web version of my e-mail.   That just verified that the 502 error is, at least in the LG Octane, for an app that no longer works.   After today, we'll get the same thing when we try to access Mobile E-Mail.
    Have to admit, it's a real ****-off, but this shouldn't surprise me, since Verizon won't repair older copper phone lines if you are in an area where FIOS is offered. 
    I am going to immediately change my husband's and my cell phone plan to one without data, and see what I can find that will still give unlimited calls and text.  The way my luck runs, they won't offer one for a decent price.  The other half has some very long-winded friends and he was always running over minutes, and some months are very text-heavy and I'd go over my limit.   Absolutely HATE touch screens, and am not looking forward to having to get a new phone.  

  • Unable to load pages after update to 3.6.8

    unable to load pages with any browser after update to 3.6.8
    windows update only online function that works

    try this
    download and run norton removal tool. this woked for me
    http://www.symantec.com/norton/support/kb/web_view.jsp?wv_type=public_web&docurl=20080710133834EN&ln=en_US

  • I am unable to load some web pages, I get an error message saying unable to load page due to invalid or unsupported form of compression, this happens on the BBC news page for example. Any ideas how to overcome???

    OS is Windows7. I'm using the latest version of Mozilla Firefox
    I am unable to load some web pages, I get an error message saying unable to load page due to invalid or unsupported form of compression, this happens on the BBC news page for example. Any ideas how to overcome???

    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"

  • Windows Vista Home ( with SP2) constantly reporting that Safari 5.1.2 has crashed ( usual Windows prompt to close program) yet Safari is still running although loading pages slowly. Any one seen this recently ( note no recent install or changes to Windows

    Windows Vista Home ( with SP2) constantly reporting that Safari 5.1.2 has crashed ( usual Windows prompt to close program) yet Safari is still running although loading pages slowly. Any one seen this recently ( note no recent install or changes to Windows

    Windows reports that Safari stopped working . Windows Task Manager shows webkit2webprocess.exe  process still running even after I respond to Windows prompt and close Safari ( Safari continues running after this action )

  • I am not able to open any web site. I get an "Unable to load page" message.

    Firefox crashed last night. When I tried to reopen, it gives me "unable to load page" error. I tried several websites and same message. I removed firefox and re-downloaded it. Same thing.

    Still not able to open sites.

  • Luakit and magnet links - "Unable to load page"

    Hi,
    I've got luakit with working magnet links handling, but there's one annoying issue. Everytime I open magnet link luakit opens transmission and goes to  "Unable to load page" page. Is there any chance to disable this behaviour? It also spawns new tab to execute transmission. It would be nice to make it "more in the background".
    webview.init_funcs.magnet_hook = function (view, w)
    view:add_signal("navigation-request", function (v, uri)
    if string.match(uri, "^magnet:") then
    local cmd = string.format("%s %q", "transmission-gtk", uri)
    luakit.spawn(cmd)
    return false
    end
    end)
    end
    Thanks in advance.

    Also try changing your code to the following and it'll open magnet links and mailto links using xdg-open. * Note I haven't really tested this, as I have been modifying the webview.lua file.
    webview.init_funcs.navigation_request_decision = function (view, w)
    view:add_signal("navigation-request", function (v, uri)
    if string.match(string.lower(uri), "^magnet:") then
    luakit.spawn(string.format("%s %q", "xdg-open", uri))
    return false
    elseif string.match(string.lower(uri), "^mailto:") then
    luakit.spawn(string.format("%s %q", "xdg-open", uri))
    return false
    end
    end)
    end
    Edit: Any queries about luakit should probably be directed to its main thread in Community Contributions. The project isn't particularly active but occasionally the devs check there.
    Last edited by zoqaeski (2014-06-03 17:00:44)

  • Running Firefox 35. Unable to load pages or view videos without moving mouse.

    Running Firefox 35. Unable to load pages or view videos without moving mouse.

    A possible cause of this issue is the presence of malware on your computer.
    Do a malware check with several malware scanning programs on the Windows computer.
    Please scan with all programs because each program detects different malware.
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked
    *https://support.mozilla.org/kb/troubleshoot-firefox-issues-caused-malware

  • Unable to load page with Safari

    My access to the internet with Safari has been incredibly slow recently, I think especially for sites that require a logon, secure or not, including my online banking, Wall Street Journal, Comcast Email. I get an unable to load error message after a long wait. I recieved a security update recently and I think the problem started about then. I have read this forum and tried what I could for slow Safari like resetting but without improvement. I can't access the Apple website because it takes too long to load. I can access iTunes.

    Hi
    Welcome to Apple Discussions
    Secured sites are affected by the Keychain file contents, especially the X509 Anchors. Go to your Utilities folder>Keychain Access.app - open the application. On the left you'll see your various collections. Please confirm you see x509 Anchors. While there, go to the Keychain Menu>Keychain First Aid. Select, then enter your password and select "repair". If any errors appears, rerun until you get a clean pass.
    If errors were present, restart the system, and try Safari. If no errors...
    Another possible avenue of resolution is to reapply the 10.4.9 combo update. After the install/restart (don't use the computer for other tasks while the installer is running) "repair permissions" using Disk Utility in your Utilities menu.
    Post back

  • Safari is unable to load pages

    I am having a problem with Safari where it is unable to completely load pages. This only started a few days ago.
    It is able to load Google, but when I try to load Facebook, it stops at 12 of 13 items. Then no other pages will load unless I restart Safari. Sometimes Facebook will load, but I am unable to click on sidebars or any links. This happens with other webpages after 5-10 minutes, but Facebook causes it to happen immediately.
    I am using Safari 5.0.6 on Leopard 10.5.8 and am unable to change to Firefox or Chrome. The internet connection works fine. Other computers (non-Macs) work on the wireless connection, and the Macbook I am using is unable to work even on a wired connection. However, I can ftp from a terminal with upload and download speeds of 5+MB/s.
    I have already tried the following:
    Reset Safari
    Cleared the cache
    Removed all plugins
    Added the open DNS connections
    Turned off the DNS fetching
    Is there anything else that anyone can think of to do or has anyone else experienced this problem with Safari?

    Is Flash disabled?
    About Safari 5.1.7 and Leopard Security Update 2012-003
    Summary
    Learn about Safari 5.1.7 and Leopard Security Update 2012-003.
    Products Affected
    Mac OS X 10.5, Product Security, Safari 5.1 (Mac OS X 10.6), Safari 5.1 (OS X Lion)
    Safari 5.1.7 for OS X Lion, Safari 5.1.7 for OS X Snow Leopard, and Leopard Security Update 2012-003 disable out-of-date versions of Adobe Flash Player.
    Out-of-date versions of Adobe Flash Player do not include the latest security updates and will be disabled to help keep your Mac secure. If Safari 5.1.7 or Leopard Security Update 2012-003 detects an out-of-date version of Flash Player on your system, you will see a dialog informing you that Flash Player has been disabled. The dialog provides the option to go directly to Adobe's website, where you can download and install an updated version of Flash Player.
    Additional Information
    If you need to re-enable an out-of-date version of Flash Player, you can do the following:
    Navigate to the /Library/Internet Plug-Ins (Disabled) folder.
    Drag "Flash Player.plugin" into /Library/Internet Plug-Ins.
    If the browser is running, quit and restart it.
    http://support.apple.com/kb/HT5271

  • Safari quits unexpectedly, won't load pages

    Multiple times a day, Safari quits unexpectedly, mostly when I'm in my email and trying to download attachments. It's been running very slow and hasn't been loading pages properly, mostly after it quits on me. I've uninstalled files that might have been harmful, but it's still doing it. What's going on?

    Welcome to the forums!
    We need to see the latest crash report.
    Go to your Applications Folder and open your Utilities Folder. Open the application Console.
    In the left-hand column, click on Crash Reporter.
    Click on the small triangle under Crash Reporter in the l/h column and they will all be listed.
    Scroll down to the latest Safari report and click on it.
    Now click on the r/h column (which now only shows THAT crash report and then Command-a to copy it all.
    Come back here and Command-v it to post it here!

  • HT5271 Adobe flash 11.2 install but Safari 5.1.7 not loading pages

    I'm very frustrated after spending an hour looking into why, once installing updates, Sarfari no longer loads pages.  I have the most current version of Adobe Flash, so that should not be an issue. 

    Hi..
    Make sure there is not an earlier version of Flash on the drive. Safari 5.1.7 disables prior versions, but make sure and try uninstalling then reinstalling new >  Troubleshoot Flash Player | Mac OS
    Quit then relaunch Safari. From the Safari menu bar click Safari > Empty Cache
    Then try a Flash based video.

  • Safari running slow and not loading all of the page

    A couple of days ago Safari, started to runn slow on some sites and won't fil the hole progress bar. for several minutes, leaving the website with bitts missing. Im also getting wre it won't load the pages at all. But when i try the site using firefox or Opera they work ok. When safari stop working its is as if safari is not requesting any data as i have a meter that checks my upload and download rates and it is not moving at all. But then next day safri will work ok on all sites and then stop with no worning.
    Pls help.

    Try this:
    Empty Safari's cache (from the Safari menu), then close Safari.
    Go to Home/Library/Safari and delete the following files:
    form values
    download.plist
    Then go to Home/Library/Preferences and delete
    com.apple.Safari.plist
    Repair permissions.
    Start up Safari again, and things should have improved.
    If not, MacFixit have published a very detailed (very!) article on speeding up a slow Safari, here:
    http://www.macfixit.com/article.php?story=20070416000657464

  • Safari unable to load page after iPad wakes from sleep

    I have my WiFi iPad running 4.2.1. Whenever the iPad goes to sleep, when I wake it to access Safari, Safari cannot load a page or reload a page. It says the page cannot be accessed and times out. I always have to go to settings and turn the wifi off and back on. Is there some way to resolve this issue with iPad's Safari?

    Philly_Phan wrote:
    Likespez wrote:
    This is definitely an iOS 4 issue and Apple needs to correct the bug.
    Then what do you want from us? We're all users like you. By the way, mine works fine.
    LikeSpez: if you read Philly's response to Carol's post you should note that the renew lease solution is a) faster to execute, b) addresses the bug more directly and c) eliminates several unnecessary steps.
    We are all seeing the same issue on a variety of routers with the common denominator being the iPad on 4.2.1. My 3GS iPhone running on 4.1 has never needed a renew lease while employing the exact same hnetworks that the iPad is using.
    We need an app to do renew lease. We could just tap it instead of wading through the setup screens.

  • Problems with safari screen grayed out unable to load pages from search

    Using IPAD last night and did a google search and google suggestions dialog box remains open along with keyboard, does not allow me to select any search results as the page is grayed out. When I try to select a new page, bookmarks of the back arrow I get NO RESPONSE. Thought the IPAD I charged it last night with same results this AM. Any suggestions!
    Natoulia

    Some websites do this but I have found that the iPad is not frozen, it's just the way the website is (poorly) designed and you just need to scroll ALL THE WAY UP to see the page results. Verizon is one such culprit with their site. Try it, I bet it works

Maybe you are looking for

  • Error while creating OM Infotype

    Dear All I am trying to create a custamized info type in OM module. I have created a HRI9009 structure in SE11 .... in ppci  I am trying to create in 9009 info type .. when I click on create button it's saying 9009 info type has not created message I

  • QTVR in 64 bit Vista

    I am using the latest QT (7.6.4) and recently created a QTVR file from ArcSoft's PanoramaMaker. When I look at the file on our laptop, which is running Vista 32-bit, it works fine. When I run it on my tower which is running the 64-bit version, Quickt

  • [SOLVED][ext4]Tuning "bytes-per-inode ratio" ?

    Hi, I'd like to format two partitions (under LVM) with ext4, a / (20GB) and a /home (890GB). The usage pattern for the /home partition will be fairly standard (smalls documents, configuration files, a lot of media). The wiki mentions something about

  • Safari & Flash

    I have a Macbook running 10.6.8 with 4 GB RAM (I doubled the standard memory when I bought it 5 years ago so it would last longer). I don't intend getting a new Mac just yet. But recently I am having a problem which I've seen discussed many many time

  • WM view not appearing

    I am new to WM and am trying to a MVT 501 in MIGO to bring stock into my warehouse...But am not getting the WM view, when i press enter after entering sloc..... 1) MM-WM interface done 2) MMWM view maintained in material master Any suggestion guys, S