I am getting browser needs updating from various web sites since getting 10.0 update.sites are taking forever to load.I have to click stop then reload to get them to work.

I have had web site page loading problems since I started beta Firefox.I took the update from beta 9 to 10.0 and since then I am getting a message from various web sites that my browser needs to be updated for site to work with links to all browser update pages including Firefox.Sony premium services support is one of the pages I got the update needed notice.

Hi,
You can try using the [https://addons.mozilla.org/en-US/firefox/addon/user-agent-switcher/ User Agent Switcher] and create a generic entry like '''Mozilla/5.0 (Windows NT 6.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1''' and switch to this on problem sites.
Useful links:
[https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
[http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
[http://kb.mozillazine.org/About:config_entries about:config Entries]
[https://support.mozilla.com/en-US/kb/Page%20Info%20window Page Info] Tools (Alt + T) > Page Info, Right-click > View Page Info
[https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
[https://support.mozilla.com/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin Viewing Video without Plugins]
[http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
[https://developer.mozilla.org/en/Command_Line_Options#Browser Firefox Commands]
[https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting Basic Troubleshooting]
[https://support.mozilla.com/en-US/kb/common-questions-after-upgrading-firefox-36 After Upgrading]
[https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
[http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
[https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
[https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins Troubleshooting Plugins]
[http://kb.mozillazine.org/Testing_plugins Testing Plugins]

Similar Messages

  • Page won't load on first try -- but stop then reload works

    Several pages, most notably my.yahoo.com and worldofwar.net won't load on the first attempt. Eventually I get a timeout error. But while the load is trying, if I stop loading manually, then reload, the page finishes loading. It's then fine, until the next wake up after sleep, and it starts all over again.
    I'm also noticing something similar with mail. When I send mail, it goes into the outgoing folder and I get an error that the message couldn't be sent. But if I exit mail and restart it, the pending message is sent without my having to do anything other than restart mail.
    Any clues what to look for? This only began to happen after I moved. The only difference in my configuration is that I'm using a new DSL modem and dynamic IP address from my ISP now, where I was using a static address before with an older model modem.
    I've checked the console logs, before/during/after observing the problem, and no new entries are made.
    Thanks for any suggestions.
    G5 PPC dual 2.7   Mac OS X (10.4.6)  

    Please post in the Boot Camp forum, thats where you will find the MS Windows and Boot Camp gurus. Note also it's Boot Camp, and not Bootcamp which is something you do when you enter the military.

  • My new iphone 5 s never finishes a sync.  it stays on the "finishing sync" stage forever, and I ultimately have to click the done button without getting finished.

    anybody else having the problem.  I can't get my iphone to finish a sync.  it just keeps going on and on.

    Take it to an Apple Store for testing. If you don't get immediate satisfaction, exchange it for another one, which you can do at no cost, no questions asked, within 14 days of delivery.

  • I can't get anything to print from my ipad mini since I got the new update.  Does anyone know how to remedy this situation?   Thanks.

    I can't get anything to print from my ipad mini since I did the software update.  It recognizes the printer, but nothing happens when I tap print.  Can anyone help with this situation?  Thanks!

    Hi Justinescc,
    The bottom of this article contains some steps you can try if you're unable to AirPrint:
    AirPrint Basics
    http://support.apple.com/kb/HT4356
    Cheers,
    - Ari

  • My home button is not very responsive and I have to click it few times to get it to work. What do I need to do to get it fixed?

    My home button is not very responsive and I have to click it few times to get it to work. What do I need to do to get it fixed?

    TROUBLESHOOTING iPhone Hardware
    http://support.apple.com/kb/TS2802
    http://support.apple.com/kb/TS1630
    The Home button is slow to respond
    If the Home button is slow to respond when exiting one application, try another application.
    If the issue exists only in certain applications, try removing and reinstalling those applications. For further assistance in installing and troubleshooting applications see this article
    If the issue continues, turn iPhone off and back on.
    If the issue continues, reset iPhone. Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds or until the Apple logo appears.
    Restore iPhone. Follow the steps the steps in the iPhone Troubleshooting Assistant.

  • How can I get the context-parm from a web.xml file using struts?

    Hello:
    I need get the context-param from the web.xml file of my web project using struts. I want configurate the jdbc datasource connection pooling here. For example:
    <context-param>
    <param-name>datasource</param-name>
    <param-value>jdbc/formacion</param-value>
    <description>Jdbc datasource</description>
    </context-param>
    and then from any Action class get this parameter.
    Similar using a simple server can be:
    /** Initiates new XServlet */
    public void init(ServletConfig config) throws ServletException {
              for (Enumeration e = config.getInitParameterNames(); e.hasMoreElements();) {
                   System.out.println(e.nextElement());
              super.init(config);
              String str = config.getInitParameter("datasource");
              System.out.println(str);
         public void doPost(HttpServletRequest req, HttpServletResponse res)
              throws ServletException, IOException {
              // res.setContentType( );
              System.out.println("Got post request in XServlet");
              PrintWriter out = res.getWriter();
              out.println("nada");
              out.flush();
              out.close();
    but only this works for init-params, if I use
    <servlet>
         <servlet-name>MyServlet</servlet-name>
         <display-name>MyServlet</display-name>
         <servlet-class>myExamples.servlet.MyServlet</servlet-class>
         <init-param>
         <param-name>datasource</param-name>
         <param-value>jdbc/formacion</param-value>
    </init-param>
    </servlet>
    inside my web.xml. I need something similar, but using struts inside the action class for that I can get the context-params and call my database.
    Thank you

    To get context parameters from your web.xml file you can simply get the ActionServlet object from an implementing action object class. In the perform (or execute) method make the following call.
    ServletContext context = getServlet().getServletContext();
    String tempContextVar =
    context.getInitParameter("<your context param >");

  • Can I download the Illustrator 3.3 update from the web?

    How can i update Illustrator 3.3 without an internet connection for the auto updates at home???
    is there anyway to do it?
    i was able to download the Indesign update at work and take it home for my home machine....but i don't see the Ilustrator updates or patches

    Illustrator 3? You sure about that?
    You don't necessarily need to do the Auto-Update procedure. But in this day and age, it is assumed there is a www connection somewhere.
    You can download updates from the web site at any time. Look to the top of this page ^^^^^
    Click Downloads > Updates. Then choose the product you want an update for.
    You can then copy that file to any system and run it.
    If that's just not at all possible, call Adobe Customer Service. They may be able to ship you an update CD or something.

  • HT1386 The first time I synced my iphone with my mac, I didn't realize that all of my photos from iphoto would transfer over to the phone.   Now, I need to remove some, as they are taking up too much space.  I cannot figure out how to remove them from the

    The first time I synced my iphone 4 with my mac, I didn't realize that all of my photos from the iphoto library would transfer over to the phone (more than 3,000).   Now, I need to remove some, as they are taking up too much space.  I cannot figure out how to remove them from the phone.  I tried to uncheck boxes and sync again, but I get a message that there is no room on the iphone.  I've read as many articles as I can find, but still cannot manage this.  Thanks for any help.

    Open itunes, connect iphone, select what you want, sync

  • When I try to eject my ipod after sync I get the following message:"The iPod cannot be restored because it contains files that are in use by another application.". I tried to restore but it doesn't work and I get the same message

    When I try to eject my ipod after sync I get the following message:The iPod cannot be restored because it contains files that are in use by another application.". I tried to restore but it doesn't work and I get the same message

    Go to your computer's System Tray and try ejecting.  If you can't eject, there is an application that is trying to access your iPod.
    Go to http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx and download ProcessExplorer.
    Go to http://support.microsoft.com/kb/555665 and follow the instructions under Resolution.
    Note that this is a good, general process any time you can't access any file.
    In my case an update to RealPlayer installed a program called RecordingManager that was accessing my iPod.

  • How to get the return values from a web page

    Hi all :
       how to get the return values from a web page ?  I mean how pass values betwen webflow and web page ?
    thank you very much
    Edited by: jingying Sony on Apr 15, 2010 6:15 AM
    Edited by: jingying Sony on Apr 15, 2010 6:18 AM

    Hi,
    What kind of web page do you have? Do you have possibility to for example make RFCs? Then you could trigger events (with parameters that could "return" the values) and the workflow could react to those events. For example your task can have terminating events.
    Regards,
    Karri

  • FaceTime and iMessages have stopped working since i updated to 7.0.3, saying there is a network error and to try again later. Have tried reinstalling Find my iPhone to see if it works. It doesn't for me. Can u please help???

    FaceTime and iMessages have stopped working since i updated to 7.0.3, saying there is a network error and to try again later. Have tried reinstalling Find my iPhone to see if it works. It doesn't for me. The message says "FaceTime (iMessage) Activation: Could not sign in. Please check your network connection and try again". My network is perfectly alright as I keep buying on the App Store. can u please help out???

    (A) Reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.
    (B) Reset all settings
    Settings>General>Reset>Reset all settings
    Note: Data will not be affected but settings will be reset.

  • Every time I sign into my Macbook, I get an error message from Automator; "The data couldn't be read because it has been corrupted.". I have never created an Automator workflow. How do I find out what Automator is trying to run and stop it?

    Every time I sign into my Macbook, I get an error message from Automator; "The data couldn't be read because it has been corrupted.". I have never created an Automator workflow. How do I find out what Automator is trying to run and stop it?

    Maybe it's set as a login item:
    - System Preferences: Users and Groups:
    - Highlight your user account in the left pane/list
    - Click "Login" tab at the top.
    See if you have an Automater action on the list
    - Note, you can select it, then right-click, and can then select "Reveal in Finder". That way you might have an idea what installed it.

  • I have ipod 4th gen, just updated ios 6, after all... i lost all of my photos, and i don't have any idea what to do to get my photos back, i have thousands photos at my ipod, pleeeaasseee... help me....

    i have ipod 4th gen, just updated ios 6, after all... i lost all of my photos, and i don't have any idea what to do to get my photos back, i have thousands photos at my ipod, pleeeaasseee... help me....

    I updated to ios 6 on my iPod touch earlier and had the same issue. I think iCloud has been backing mine up though. I freaked out because all 500 of my photos were gone and my stupid self didnt do a back up... But then they all reappeared :..) Maybe i just got lucky? Good luck though..

  • Just installing a few updates from the Mac App Store for mountain lion on my 2010 MacBook Pro, during this it made a noise and then the screen and keyboard went off, like it is off. What happened, is it off...or should I just wait it out?

    Just installing a few updates from the Mac App Store for mountain lion on my 2010 MacBook Pro, during this it made a noise and then the screen and keyboard went off, like it is off. What happened, is it off...or should I just wait it out?

    What kind of noise?
    The only things I can think of that make noise are fans and disks. Fans usually will not cause the computer to shutdown as you describe. My guess is your disk drive died. I hope you made a backup prior to start the ungrade.
    Allan

  • Before this last upgrade, when I would create a file and do a "Save As" it would always open "My Documents" by default, which is what I prefer. But since the upgrade it opens in some annonomus file, to which I have to go through several steps to get to My

    Before this last upgrade, when I would create a file and do a "Save As" it would always open "My Documents" by default, which is what I prefer. But since the upgrade it opens in some anonymous file, to which I have to go through several steps to get to My Documents, and I can't seem to select the default in my preferences. HELP PLEASE!!!

    Before this update of what software from what version to what version using which OS?

Maybe you are looking for