Problem displaying pictures in some sites, sites do not complete loading

Hi,
I'm experiencing a problem which I think is not from Safari, because it happens in FireFox also. Pictures in some sites most of the time do not display (sites like YouTube and Qik.com). These sites do not completely load.
I consulted a friend of mine (remotely) who is a network administrator, but he didn't find anything wrong with the router or net setup.
This problem didn't exist earlier this year. I switched to 10.5.5 lately copying settings from a backUp of my 10.4.
Any ideas would be greatly appreciated.

I have the problem using Firefox 8.0.1.
Particularly when loading any '''https:// '''websites and control panels.
This occurs in XP Pro SP3 / Windows Vista Ultimate / and Windows 7 Ultimate.
This did not occur in Firefox 8.0

Similar Messages

  • Reporting Services 2012 - "Database is up to date, but some sites are not completely upgraded"

    Running SharePoint 2010 SP1 (Feb-Mar 2012 CU)
    Is there any official word from Microsoft regarding the issue with SQL Server Reporting Services 2012 for SharePoint where 2 of the reporting service application databases show "Database is up to date, but some sites are not completely upgraded".
    ReportingServiceDB  -  Database is up to date, but some sites are not completely upgraded
    ReportingServiceDB_Alerting  -  Database is up to date, but some sites are not completely upgraded
    I'm building the new Reporting Services into a new DEV environment and I'd like to know what the official word is from Microsoft.  Is Reporting Services 2012 ready for production?
    Thanks!

    Hi mikea730,
    Thanks for your psot.
    Based on my research, I found a similar thread about this issue at Microsoft Contect site. For more information, please see:
    http://connect.microsoft.com/SQLServer/feedback/details/721067/database-is-up-to-date-but-some-sites-are-not-completely-upgraded
    It might be a known issue of SQL Server 2012. I would suggest opening a case with Microsoft Customer Support Services (CSS) (http://support.microsoft.com), so that a dedicated Support Professional can assist you
    in a more efficient manner.
    Regards,
    Bin Long
    Bin Long
    TechNet Community Support

  • My Sites database status changed to "Database is up to date, but some sites are not completely upgraded."

    We have a brand new SharePoint 2013 farm which we just put into production. As users have begun creating their My Sites, the My Sites web application database changed to a status of "Database is up to date, but some sites are not completely upgraded."
    Huh?
    Prior to deploying to production, we had some test users that had created My Sites, and everything was fine. The database status was "No action required".
    Anyone know why the creation of My Sites would cause the database status to flip to this warning?

    HI Kleung,This seems to be that after the patch upgradation some of the sites are not upgraded properly.Please check the below thread that exactly talking about the issue that see in your enviornment.
    http://expertsharepoint.blogspot.de/2014/03/data-base-is-up-to-date-but-some-sites.html
    First of all, to identify what site collection doesn't got upgraded.
             Run: stsadm.exe -o localupgradestatus > upgradestatus.txt
    or
    PSConfig.exe -cmd upgrade -inplace b2b -force -cmd applicationcontent -install -cmd installfeatures  (Run from one of the WFE server)    
    In below as you see, there no site collection that need upgrade. If you have any, you can identify
    them by searching by word "Needs upgrade" in this file.                  
    Secondly, run the command in the Power Shell:
    For resuming the upgrade, you’ll need the ID for the database :
    Get-SPContentDatabase -Identity <your content database name>
    When you got the GUID for the database you can then resume the upgrade
             upgrade-spcontentdatabase -id <database
    GUID>
    Finally, check the upgrade status by running stsadm again:
    stsadm.exe -o localupgradestatus > upgradestatus.
    Thanks
    Anil Avula See Me At: http://expertsharepoint.blogspot.de/

  • Database is up to date, but some sites are not completely upgraded.

    in SharePoint 2010 Central Admin>Upgrade and Migration....given below is appearing and we are unable to resolve this..how we can fix?

    Whether this is central admin content database or a web application's one?
    If this is web application, execute the next PowerShell script from SharePoint Management Shell:
    $db = Get-SPContentDatabase -Identity <Name of your database>
    Upgrade-SPContentDatabase -Identity $db
    If this is Central Admin content database, then:
    Get-SPWebApplication -IncludeCentralAdministration | Get-SPContentDatabase
    # Found and write down Guid of central admin content database
    $db = Get-SPContentDatabase -Identity <GUID>
    Upgrade-SPContentDatabase -Identity $db

  • I've noticed that since version 7.0 (and in 8.0) FF is either hijacking on incorrectly displaying fonts on some sites, regardless of what is defined in the site's CSS.

    version 7.0 (and in 8.0) : FF is either hijacking on incorrectly displaying fonts on some sites,''' regardless of what is defined in the site's CSS'''. Example: in Safari, the informationweek.com homepage '''always''' displays the fonts correctly. Recently, it's '''RARELY''' correct in FF, but occasionally it will "suddenly" displays right. The CSS has NOT changed. Multiple users are experiencing this issue, on multiple platforms (FF7, in windows)
    Example: in Safari, the informationweek.com homepage always displays the fonts correctly. Recently, it's RARELY correct in FF, but occasionally it will "suddenly" display right. The CSS has NOT changed, code has not changed (that I'm aware of).

    There are lots of CSS errors shown in the "Firefox/Tools > Web Developer > Error Console" (Shift+CtrL+J) on that website.
    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    Use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed the maximum file size (1 MB).
    You can do a check for corrupted and duplicate fonts and other font issues:
    *http://www.thexlab.com/faqs/multipleappsquit.html - Font Book 2.0 Help: Checking for damaged fonts
    *http://www.creativetechs.com/iq/garbled_fonts_troubleshooting_guide.html

  • Problem displaying picture stored in mySQL

    Hi, i just have got problem displaying picture stored in database as BLOB and presented on JSP over servlet. Below is my code i am using to upload file into database, than download it and display again. The result is the picture can not draw inself and there is always only empty picture space on the web page i am displaying. Please help me to find why it is not working, thanx.
    servlet uploading picture to database
                   boolean isMultipart = FileUpload.isMultipartContent(req);
                   DiskFileUpload upload = new DiskFileUpload();
                   List items = upload.parseRequest(req);
                   Hashtable textFields = new Hashtable();
                   byte[] data = new byte[4096];
                   if(isMultipart)
                        Iterator iter = items.iterator();
                        while(iter.hasNext())
                             FileItem item = (FileItem)iter.next();
                             if(item.isFormField())
                                  textFields.put(item.getFieldName(), item.getString());
                             }else{
                                  data = item.get();
                   String sqlStatement = "INSERT INTO cds VALUES('" textFields.get("id")"'," +
                                            "'" textFields.get("album") "','" textFields.get("interpreter") "'," +
                                                      "'" textFields.get("gr1") "','" textFields.get("gr2") "','" textFields.get("price") "')";
                   String sqlStatement2 = "INSERT INTO pics VALUES('" textFields.get("id") "','" data "')";
    servlet to download picture
    String SQL =
         "SELECT Picture " +
         "FROM pics " +
         "WHERE id = '" + request.getParameter("id") + "'";
         ResultSet rs = stmt.executeQuery(SQL);
         rs.next();
         Blob blob = null;
         blob = rs.getBlob(1);
         response.setContentType("image/jpg");
         request.setAttribute("blob", blob);
         System.out.println("just above OutputStream");
         InputStream in = blob.getBinaryStream();
         ServletOutputStream sout = response.getOutputStream();
         int b;
         while ((b = in.read()) != -1) {
         sout.write(b);
         in.close();
         sout.flush();
         sout.close();
    img tag in JSP
    <img src="LoadImageServlet?id=some id>
    plus i am using
    Tomcat 5.0
    mySQL 4.0
    debuging in eclipse
    thanx for help once more, Libor.

    1:
    are there any exceptions throws by the jdbc code
    2:
    is the code in a doGet
    3:
    you should do a if(result.next())
    4:
    Is your mapping code working

  • Even when i have updated version of adobe flash player, some sites do not play video

    Hi,
    Even when i have updated version of adobe flash player and active x from adobe.com, some sites do not play the video. A request box, install the plug in comes. When i click it, it again tries to install the same version of adobe, which i have already downloaded. it is only for some sites.
    May be it is because, it is site problem? How to overcome it

    ActiveX is part of the Windows operating system. Plus the ActiveX version of Adobe Flash is for Internet Explorer. Other browsers need their own version of Flash' Firefox needs the Plugin version of Flash.
    If you go to the Adobe website to download Flash while using Firefox, Adobe will provide the correct version of Flash automatically. Just make sure you de-select any other programs that Adobe may want to stick you with before you actually download Flash. Then close Firefox and run the Adobe Flash installer.

  • I recently updated my IOS software on my IPAD with the latest version and now video from some sites does not run. I did not do the update on my other IPAD and the video runs fine. Any idea why.

    I have an IPAD 3 and recently updated the IOS software with the latest version and now video from some sites will not display where it did prior to the update. When I go to those same sites on my other IPAD that I did not do the softward update the video still works. Any idea why and what to do to fix it?

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430http://support.apple.com/kb/ht1430
     Cheers, Tom

  • Some sites are not reachable in FF however they were before.(In other browser they work). Why?

    Some sites are not reachable in FF however they were before.(In other browser they work). Why
    It is like some sites are blocked but FF says :
    "The connection was reset
    The connection to server was reset while the page download..."
    == URL of affected sites ==
    http://www.profession.hu http://www.hirkereso.hu

    See "Error_loading_some_websites": http://kb.mozillazine.org/Error_loading_websites

  • Web sites will not fully load. MSNBC, Fox and CNN load a partial page or load a text only version. this issue just started about a week ago.

    Some news web sites will not fully load. MSNBC will only show the head line and advertisers. CNN and Fox show a text only version with very limited pictures and the same for . Durdge report loads fully as will the Chicago Trib. seems like only certain news sites are subject to this partial display. have not seen this on commercial sites.

    Try deleting cookies and cache:
    1. Tools| Clear recent history
    2. Time range to clear: Everything
    3. If it isn't already selected, select '''Cookies''' and '''Cache'''
    4. '''Clear now'''
    Test for the problem
    Also see: [[Websites look wrong]] and [[Troubleshooting Extensions and themes]]

  • After installing Firefox6 many sites will not finish loading. I click on "stop loading this page" and then click on "reload this page" and the page loads. Also if I disable javascript the page will load.

    After installing Firefox 6 MANY web site will not finish loading. I disabled all add-ons and still have the problem. If I disable javascript, the pages will load. When the page is trying to load, if I hit "stop loading this page" and then hit "reload this page", the page will load; but sometimes I have to do this 2-3 times for the page to finish loading. No problem with these pages using IE8.

    I see that you ave changed some network.http prefs.<br />
    Doing that can cause all kinds of problems because not all servers like such changes, so you can try to reset those prefs on the about:config page.<br />
    network.http.max-connections 48<br />
    network.http.max-connections-per-server 16<br />
    network.http.max-persistent-connections-per-proxy 16<br />
    network.http.max-persistent-connections-per-server 8<br />
    network.http.pipelining true<br />
    network.http.pipelining.firstrequest true<br />
    network.http.pipelining.maxrequests 8<br />
    network.http.proxy.pipelining true<br />
    network.http.request.max-start-delay 0<br />
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • After seeing the production in London I purchased the whole sound track and it did not completely load. I've never had this problem Today I am downloading an album only to find out it's missing the voacals. Do I have to start just settling for this kinds

    After seeing the production of Matilda in London I purchased the whole sound track and it did not completely load. I've never had this problem before so I just forgot about it. Today I am downloading an album only to find out it's missing the voacals. Do I have to start just settling for these kinds things. I'm feeling taken.

    Hello MarkFKenny,
    If you feel that there is an issue with a purchase made, you can report an issue with said purchase to the folks in our iTunes Store.
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/HT1933
    Cheers,
    Allen

  • Firefox does not load long images, pixelates images if they are not in their original size, and has problems with thumbnails (in some sites)

    Firefox has problems with images.
    In sites like deviantART or ImageShack with full-view option, images that are not in full size/thumbnails get slightly pixelated e.g. http://img251.imageshack.us/f/screenshot2tq.jpg/
    Long images get completely messed up if full-viewed e.g. http://img689.imageshack.us/f/screenshot5z.jpg/ (though if the file is only big, it loads just fine)
    Also, thumbnails in some sites get messed up e.g. http://img201.imageshack.us/f/screenshotyr.jpg/
    And in general, Firefox has more 'glitches' like not allowing to add more search engines. It wasn't like that before and I can only assume that it got messed up somewhere with updates, but I'm not really sure.
    I've tried cleaning out cache, re-installing Firefox (multiple times) and even downloaded Firefox 4 beta, but the problem remains.
    I use Ubuntu.
    Does anyone else have similar problems? Or know where the problem lies?

    Do you have the latest driver for your graphics display card?
    Create a new profile as a test to check if your current profile is causing the problems.
    See [[Basic Troubleshooting#Make_a_new_profile|Basic Troubleshooting&#58; Make a new profile]]
    If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)
    See http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Safari does not display text on some sites.

    I am running OSX 10.10.2 and Safari 8.03
    Some sites I visit do not display text at all.
    For example: This site (http://neflin.org/) looks fine in Chrome, Firefox, whatever. But in Safari, it has no text at all. See below.
    Mail is having difficult with some text in html email too.
    I have rebooted, reset the PRAM, deleted preferences and turned off extensions. I checked the Guest account and created a new account and in all cases the problem persists.
    I have validated fonts in Font Book, restored standard fonts and looked for duplicates. Nothing.
    Flash and Java are up to date.
    Any thoughts?

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this test is to determine whether the problem is localized to your user account. Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault in OS X 10.7 or later, then you can’t enable the Guest account. The "Guest User" login created by "Find My Mac" is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.

  • Problem Sending messages on some sites.

    Hi, I have the 64GB playbook and it worked fantastic for 2months I have had no problems with it at all until this past week when the software updated.
    Now on some sites and msn messenger when I type out my message and press the enter key to send the message it does not send, instead it drops me down to the next line like enter does on here.
    The rest of the websites work fine, just the 1 problem with the enter key but it is a major nuisance and renders the whole websites useless if I cannot send messages.
    Please does anybody know anything I can do? It worked fine before the recent update when i pressed enter it sent the messages.

    I see the same problem:
    Trying to send WLM messages in online outlook (Hotmail)
    GE2012OCT17

Maybe you are looking for