Safari is not showing some images from web properly

Hi. Since last week some pictures from web are not showing properly on safari & mail apps.
Whenever I go to websites with relatively many images, some of the images are only showing top halves and the bottom halves are solid black.
This has never happened before.
As it was so annoying, I've tried deleting safari history, cookies, and web data, and I also tried network reset.
None of them worked.
What's weird is that this issue doesn't happen when I'm using wifi, but happens when I use LTE.
My signal dots are full 5, and LTE is still faster than my wifi.
what can I try next?

You can fix the issue temporarily by going to Settings > Safari > Clear History and Website Data.  Note that this will log out of any website you were logged in to, and will clear your browsing history (if you use suggested websites from your history when going to new pages), but it will reset the cache containing the incorrect images.
Another way to fix this issue temporarily is to use Settings > Safari > Advanced > Website Data and swipe to delete only those domains that have incorrect images.  This does the equivalent of clearing website data, but only for the specific site removed.  Note that images are frequently served from different domains than the host site, so you must clear the domains where the images are stored.  Also, this page doesn't have a way to filter the list, so you must look through it manually, which is why I don't suggest it as the first option.
BTW, the majority of posts reporting this issue appear to be AT&T customers.

Similar Messages

  • Photos 1.0 not showing all images from Photos Library.photoslibrary folder/file after update install

    I installed the update that changed my iPhoto to Photos 1.0, and the new Photos program is not showing all images from Photos Library.photoslibrary file/folder (not sure to call it file or folder since it is actually a folder with all my pics but it acts more like a file) after update install.  The Photos Library.photoslibrary file/folder shows to be 55 gb in size, and it shows to be loaded into the photos program, but there are maybe a few weeks of pictures showing instead of a few years.  Lots of pictures in the 55 gb are not showing for some reason. 

    No - iPhotos has not replaced anything - it is new and an addition - iPhoto is still on your system in the applications folder and still works just fine
    Outlook is not supported by Photos - not sure if the support must come form Apple or MS as Photos uses a different interface to external packages than iphoto did
    LN

  • Crystal HTML viewer will not show embedded image from Infoview image store

    I am having an issue with the html and dhtml viewers not showing an image I have embedded inside a crystal report.  The image has been stored in infoview and embedded into the report from that source.  Using the Crystal ActiveX viewer works fine in this case and shows the image.  The html viewers however show the blank box with the red X in the top left corner when Internet explorer can't find an image.
    Now, if I right click on the image and get it's properties I get this URL:
    http://vsx2af0x/crystalreportviewers115/imagehandlerdotnetbridge.aspx?dynamicimage={B8FDE586-08D3-4A14-896C-0FE19AC3DB90}.png
    If I take that url and try to load it directly through Internet explorer I get the following error:
    Exception of type 'System.OutOfMemoryException' was thrown.
    The file is small and only about 20k in size.  If someone can help that would be greatly appreciated.
    Thanks

    Unfortunately I have been unable to remove the plug-in. The files is not locked, or shared, but my operating systems thinks it is.
    What happens, when you try?
    When I try to delete the plug-in from
         /Library/Application Support/Aperture/Plug-Ins/Google/Analog Efex Pro/
    with ⌘⌫, I simply get the pop-up panel to enter my administrator password, and the plug-in will be moved to the Trash:
    Don't forget to quit Aperture, before trying to remove the plug-in and to log off and on.

  • Servlet not showing BLOB image from Oracle in JSF

    hi forum.
    i have a table in oracle in which i m storing images in a BLOB field and file extention (mime type) in a varchar2 field. i can successfully store image. but i want the stored image to be displayed in a graphicimage tag from BLOB. i searched net and found it has to be done using servlet. the code that i used is as following. but i get null pointer exceptions. i know i should get these exceptions but i dont know how to tackle them since there were few things left vague in every site i searched. so i opted to ask the forum.
    here is the code for my jsp page
         <h:graphicImage value="/DisplayImage"/>
    web.xml is amended as follows
                  <servlet>
      <servlet-name>DisplayImage</servlet-name>
      <servlet-class>imageDisplay.DisplayImage</servlet-class>
    </servlet>
    <servlet-mapping>
      <servlet-name>DisplayImage</servlet-name>
      <url-pattern>/DisplayImage</url-pattern>
    </servlet-mapping>
              the servlet itself....
       package imageDisplay;
    import java.sql.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.pa.utils.HibernateUtils;
    import org.hibernate.Session;
    public class DisplayImage extends  HttpServlet{
      public void doGet(HttpServletRequest request,HttpServletResponse response)  throws ServletException, IOException
                Session hibernateSession = null;
              hibernateSession = HibernateUtils.currentSession();
              Connection connection;
              connection = hibernateSession.connection();
              Statement st1;
      try{ 
           Class.forName("oracle.jdbc.driver.OracleDriver");
             st1=connection.createStatement();
             ResultSet rs1 = st1.executeQuery("select APP_FILE from EMPLOYEE_DETAILS where EMP_ID = 2");  //APP_FILE IS THE BLOB FIELD
             System.out.println("----------------#@$#@$$%^$%^%&^*^&*(&(*&^%$#$%@#%^%^%&*&^*$^&#%^$%@#$%@#$--------------------");
           String imgLen="";
           while(rs1.next())
           imgLen = rs1.getString(1);
                      int len = imgLen.length();   //THIS IS LINE 35 WHERE ERROR IS EMERGED...............
                     byte [] rb = new byte[len];
                     InputStream readImg = rs1.getBinaryStream(1);
                     int index= readImg.read(rb, 0, len); 
                System.out.println("index----#@$#@$$%^$%^%&^*^&*(&(*&^%$#$%@#%^%^%&*&^*$^&#%^$%@#$%@#$------------"+index);
                response.reset();
                response.setContentType("image/jpg");
                response.getOutputStream().write(rb,0,len);
                response.getOutputStream().flush();
      st1.close();
      response.getOutputStream().close();
    } catch (Exception e){
      e.printStackTrace();
      the error i get is
    index----#@$#@$$%^$%^%&^*^&*(&(*&^%$#$%@#%^%^%&*&^*$^&#%^$%@#$%@#$------------
    java.lang.NullPointerException
         at imageDisplay.DisplayImage.doGet(DisplayImage.java:35)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:291)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
         at java.lang.Thread.run(Unknown Source)bundle of thanks in advance for reading my problem persistantly and your help that i am desperately looking for
    Edited by: jaykio77 on Jan 11, 2012 4:09 AM
    Edited by: jaykio77 on Jan 11, 2012 4:12 AM

    In stead of copying/pasting code, take the time to read about how JDBC works. Yes that is going to take some time, but when you gain the knowledge you prevent yourself from having to dump your problem on other people, in this case a bunch of friendly strangers.
    This code:
    imgLen = rs1.getString(1);
                      int len = imgLen.length();   //THIS IS LINE 35 WHERE ERROR IS EMERGED...............
                     byte [] rb = new byte[len];
                     InputStream readImg = rs1.getBinaryStream(1);Really doesn't make much sense. This would assume that the first position in the resultset is both a String and a Blob.
    In the mean time, break down your problem. What you want to do is read a blob from a resultset. Right? Thats it, who cares that a servlet is involved, that is not what you are having trouble with. You cannot read the blob.
    That is vital to realize as you can narrow your google search to "java resultset blob". Guess what popped up as the first hit for me:
    http://www.java2s.com/Code/Java/Database-SQL-JDBC/GetBLOBdatafromresultset.htm

  • Safari is not showing any "Images" on any site.

    e.g. on google the images that accompany an article are not shown. only the outlined box.

    HI and Welcome to Apple Discussions..
    From the Safari Menu Bar, click Safari / Preferences - Appearance.
    At the bottom of that pane select: Display images when the page opens.
    You may have to Quit Safari and relaunch Safari for this to take effect.
    Carolyn

  • Adobe Bridge not showing some images

    After a crash of my PC (Windows XP Home), I had to re-install Photoshop CS2.  Now, however, when I'm trying to review images in Bridge (in filmstrip view) only some of the thumbnails appear as photos; the remainder appear only as icons.  There appears to be no consistency; some are PSD files, some are TIF files. The rotating "clock hands" on the lower left (when images are loading) do not even appear in those cases.
    Any idea how to get this back?  It's really tough reviewing images when I can't even see them!  
    Thank you in advance for your help.    --Dennis

    DMammana wrote:
    Guess I wrote too soon... I just purged the cache and that seemed to take care of the problem.  Thank you!!
    Good! Good!   I was wondering what I missed! Glad you're up and running
    Gene

  • OneNote not showing some images

    On some pages, screenshots, which have been inserted with OneNote 2010 are not shown in OneNote 2013. I only see a frame with a red X in it. Other users with the 2010 version still see the screenshot. Any ideas?

    Hello there,
    Slight background on my environment: Went from Windows 7 x64 with OneNote 2010 x86 on one machine, to Windows 8 x64 with OneNote 2013 x86. Used to keep these files on our network share, but now I keep them in SharePoint.
    ---- I've had this same issue come up after getting Windows 8 Enterprise and Office 2013 Enterprise on a new machine we have here at the office. OneNote 2010 was working on my old machine, but suddenly I started noticing pictures on some of my most crucial
    Tabs were missing (Box with Red X, like you've mentioned) on my new Windows 8 box.
    Luckily, I managed to copy my old cache files from AppData\Microsoft\Office\15\OneNote... etc.. from my 2010 box to my 2013 box, which seemed to fix the issue, but then my situation was reverted. After this change, I noticed that my old box with OneNote
    2010 on it wasn't seeing the pictures... which threw me for a loop!!
    After looking over the situation, I thought of a plan to 'Export' the Tab that had the working pictures and replace this with the Tab that was causing me issues (pictures with Red Xs).
    I exported the Tab off of my Windows 8 box and placed that Export onto a network share that both my Win7 and Win8 boxes could see, I then opened the Section from that network share and used the 'Move' option to get that duplicate Tab into my Notebook that
    had the trouble Tab as well.
    To finalize this move, I renamed the Exported Tab and deleted the old, non-working tab with the Red X symptom. After trying to sync, you may be prompted with an error on file locations being moved or renamed. To counter that, I went onto our SharePoint,
    where the OneNote is being stored, and saw that the newly named Tab was appearing there. After opening the newly named Tab from there, the sync finished in a matter of seconds, and my tab had been restored!!! For honor and glory!

  • Safari do not display some images

    when i go to ichatclub and in the gallery section the images are replaced with a ?
    whith firefox is the same
    whats wrong ?
    thanks to respond me
    iBook G4 12",iMac G5 iSight PPC 20"   Mac OS X (10.4.8)  

    Hi Eme !
    I make new account and disabled all plugins,the probleme is the same
    perhapse its a php probleme
    flash version 9.0.20.0
    plugins: /Library/Internet Plug-Ins/Disabled Plug-Ins
    /Library/Internet Plug-Ins/Flash Player Enabler.plugin
    /Library/Internet Plug-Ins/Flash Player.plugin
    /Library/Internet Plug-Ins/flashplayer.xpt
    /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
    /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.webplugin
    /Library/Internet Plug-Ins/iPhotoPhotocast.plugin
    /Library/Internet Plug-Ins/Java Applet Plugin Enabler
    /Library/Internet Plug-Ins/Java Applet.plugin
    /Library/Internet Plug-Ins/JavaPluginCocoa.bundle
    /Library/Internet Plug-Ins/NP-PPC-Dir-Shockwave
    /Library/Internet Plug-Ins/npdivx.xpt
    /Library/Internet Plug-Ins/NPSVG3Carbon
    /Users/sachaazimi/Library/Internet Plug-Ins/PDF Browser Plugin.plugin
    /Users/sachaazimi/Library/Internet Plug-Ins/Word Browser Plugin.plugin
    /Library/Internet Plug-Ins/nsIQTScriptablePlugin.xpt
    /Library/Internet Plug-Ins/Quartz Composer.webplugin
    /Library/Internet Plug-Ins/QuickTime Plugin.plugin
    /Library/Internet Plug-Ins/QuickTime Plugin.webplugin
    /Library/Internet Plug-Ins/RealPlayer Plugin.plugin
    /Library/Internet Plug-Ins/VerifiedDownloadPlugin.plugin
    /Library/Internet Plug-Ins/DivXBrowserPlugin.plugin
    Thanks for you interest
    Sacha :o)

  • Safari does not show correct format of web page

    I belong to Butterfly Conservation's Upper Thames Branch. They have recently set up a new website, but I cannot get two of their pages to display properly (although they are quite ok in Netscape). They should include a list of butterflies and moths, with photos, but none of the photos show at all, while the lists go off the page at the right-hand side. Can anyone tell me what is wrong? The URLs concerned are:
    http://www.upperthames-butterflies.org.uk/utb_butterflies.html
    http://www.upperthames-butterflies.org.uk/utb_moths.htm

    It looks like they need to add a new line after line 139: the new line just needs to contain <td>. That's for the butterflies page. I'm getting 404s on the moths page, so I can't tell what's up there.
    eMac Combo 1GHz/1GB/60GB   Mac OS X (10.4.8)   CanoScan D646U, Canon iP1600, CrossFire 120GB, DSL, D-Link DI-624

  • Safari is not opening some webpage showing the error:  /usr/local/cache/files/block.html;400

    Hi
    safari is not opening some webpage showing the error:  /usr/local/cache/files/block.html;400
    Please help me.
    thanks

    Hey blissfull71,
    If you are having issues loading certain webpages in Safar, you may find the information and troubleshooting steps outlined in the following article helpful:
    Safari 6/7 (Mavericks): If Safari can’t open a website
    Cheers,
    - Brenden

  • Safari not showing some of the fonts

    Safari is not showing the fonts on a lot of websites, and it is safari because i opened the same page on chrome and they are showing up on chrome.

    That's the LastResort font showing where the intended fonts should be. Usually, this is caused by bad font cache data.
    Close all running applications. From an administrator account, open the Terminal app and enter the following command (or copy/paste it from here):
    sudo atsutil databases -remove
    This removes all font cache files maintained by OS X. Both for the system and the active user account. After running the command, close Terminal and immediately restart your Mac.

  • I have backed my Mac Book pro up to my external hard drive using time machine. My iPhoto now does not show any images, even when I upload from my iPhone

    I have backed my Mac Book pro up to my external hard drive using time machine. My iPhoto now does not show any images, even when I upload from my iPhone

    Mac 101: File Sharing
    Mac OS X 10.7 Help: Transfer files between two Mac computers
    Mac OS X 10.7 Help: Set up a Windows computer to share files with Mac users
    Mac OS X 10.7 Help: Use iDisk to share files
    Mac OS X: Sharing your files with non-Apple computers
    How to share a Mac's files with a PC and vice versa.

  • Images from web path won't show in Crystal Reports XI R2

    Hi, I have a problem with my Crystal Report XI R2. I am trying to get images from web as well as static google map using OLE object. After setting the Graphic Location. No images are shown. I am using Windows XP SP3.
    Also, I tried to create a simple report using same program and version installed in my Windows 7 Laptop. I inserted OLE object with graphic location from web like http://www.domain.com/image.jpg and it appears... same as with google static map with given latitude and longitude. And it works!
    Is there any problem with my windows XP machine? any video card issue or dot net version issue or firewall issue?
    Please help. Thanks

    To add to Don's reply. Fiddler is a great HTTP sniffing utility that should be able to tell you what is happening as far as the permissions, etc., etc.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • SSRS MHTML Report showing chart image from a previous email

    Hi there,
    I am having an issue with SSRS reports subscription emails.  I am sending a report as MHTML with some charts, which are end up as images within the email body.  The issue is that outlook is inconsistent with what it is deciding to show as the image.
     At times it will show an image from a previous days email, effectively delivering the wrong information.  It is obviously using some caching.  I have read others having similar issues with iPhone/safari, but have yet to see this issue with
    Outlook.  I am wondering if there is a way to control the naming of the images to force the mail client to render the intended image.  There is huge risk in delivering the wrong information.  Or alternatively, if there is a way to modify the
    MHTML output after the subscription runs to add some meta information, if that would even work.

    Hi Jamie,
    According to your description, there are charts in the report, you configured subscription for the report and render format is MHTML. The problem you are facing is that sometimes the information of subscription comes from previous days.
    To troubleshoot the problem, please refer to the following steps:
    By default, the Subject of subscription includes following variables: @ReportName, @ExecutionTime. Please validate that the @ExecutionTime in email body is the same with schedule of the subscription, and make sure that the report is delivered correctly.
    Please login web-based email and validate that the information of delivered report is correct. If the information of web-based email is not the same as outlook, then the problem may be cause by using caching in outlook. If that is the case, we can resolve
    the problem by disabling Cached Exchange Mode. Please refer to the link:
    http://technet.microsoft.com/en-us/library/cc179175(v=office.15).aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu

  • Mail app not showing some png and pdf attachments.

    I'm using the iPhone 4s and recently, both mobileme and yahoo email accounts are not showing some png and pdf attachments. I'm seeing the attachment is there, but it doesn't load. Load remote images is turned on in settings. Does anyone have the same problem and a solution/explanation?

    My work email account is an IMAP account.
    I removed my work email account on my home computer this morning to test out this problem on my computer at work. I just sent a test message to my work account from my iPhone. My iPhone, iPad and computer at work still have my work email active on them and all the devices are showing the test message as new and unread. The problem seems to be that when I have my work email activated on my home computer, the messages do not show new and unread on the rest of my devices.

Maybe you are looking for