Image Caching issues

I have a question regarding image caches in Safari. Why is it that when I change an image that is on my website, the changes do not show. I'll upload an image with the same name as the previous one and when I go to the browser and refresh the old image is still there. I've tried to refresh, empty cache, and reset safari. I've also done shift+refresh, option+refresh, etc. When i view the page on a pc the changes are made and if they don't show automatically I just use a shift+refresh on the pc and it works. I've also had the same problem with pdfs.
Has anyone had this problem and if so do you know if there is anything to be done about this?

Hi Scott,
I had the same with my website an I did the following ...
* Trash the whole Safari cache folder ... empty trash
Go to: Home>UserName>Library>Chashes>Safari
By the way to 'reload Safari' it is command-R
Dimaxum

Similar Messages

  • Image cache not working with Firefox and apex

    Hi,
    I'd like to cache all my images to save page rendering time and bandwidth because my images are all static and never change.
    I use the John Scott's caching technique Link: [http://jes.blogs.shellprompt.net/2007/05/18/apex-delivering-pages-in-3-seconds-or-less/], in a few words this technique consists of adding a header line "Expires: date in the future" in the http response.
    It works very well in IE, the images are cached and the same image can be accessed several times (within the same session or in different sessions) without issuing an http request to the server each time.
    with Firefox it does not work, the same image is asked again and again to the server (i'm using FF 3.5 and APEX 3.2).
    - Is it a date format problem? no, because when i type about:cache in FF, i can find my image in the cache with an expire date in the future.
    The weird thing here is that the counter is incremented each time u request the image, so FF knows it is in the cache and even if the expire date is in the future, FF asks it again to the server.
    - Is it a FF bug? If u read the http specs or if u google a little, u can come to the conclusion that FF does not follow the standards,
    but... images.google.com for example manages to get its images cached with FF.
    They use an http response header "cache-control: public, max-age=604800".
    I tried the same and all kinds of combinations but without success.
    When i compare my image with the one from google in the FF cache, they both have the same attributes.
    - It's not an apex issue neither because it works with IE, most probably an incompatibility between apex and FF?
    Maybe the use of cookie? or the http request (not the response) containing "cache-control: max-age=0"?
    I've found so far 2 half solutions:
    1) use ETag and modified date, see the Tyler Muth's note Link: [http://tylermuth.wordpress.com/2008/02/04/image-caching-in-plsql-applications/].
    with this technique FF continues to send request each time but the answer is shorter because it's just a "304 not modified" instead of "200 OK" (200 response is bigger as it contains the image).
    it's better than nothing but you still have 1 request + 1 response for nothing.
    Another problem is that you need SYS access to implement this, which is not possible on an hosted server. (note that for images from the file system it is already foreseen by apex 3.1, Tyler's note is for images from the db)
    2) if you preload the image (using myimage=new Image();myimage.src='...';), then there is max 1 request per browser session.
    There are 2 minor issues here:
    - no caching across sessions
    - if u don't want to preload all the images (example a page with lots of thumbnails, when user clicks it show a bigger image, in that case the thumbnails can be preloaded but overkill for the big images), then you need to load the image, wait until the image has loaded before displaying it, it does not slow down the execution, but requires some extra JS.
    I'm not asking anyone to investigate it, i can live with the 2 workarounds,
    but just in case someone encountered the same problem and already fixed it.
    Let me know if u managed to use the John Scott's technique with Firefox. (U can use Firebug to see the http traffic)
    Thx
    Tim

    Hi Anshul, hope these help. Let me know if you need to see anything else.
    Best,
    Menu Settings:
    Tab Hyperlink:
    Label Text with with hyper link option not available (works as a hyperlink in chrome and IE though):
    Thanks for the help in advance!

  • Reporting Service chart image switch issue in Outlook

    Hello~
    I'm receiving report as email everyday.
    That email is send by Reporting Service of MS-SQL.
    I receive several report similar format as one RDL.
    There are chart , table, image.
    All objects in Report Mail was rendered MHTML. 
    However, some Chart image cached in the outlook.
    Then sometimes cached chart image displayed other email.
    I've changed rendering option of subscription.
    It still occur my email.
    It might be solved as disable cache option of Outlook account, but outlook is very slow working.
    I'd like to know solution as RS side.
    Thank you.

    Hi,
    Have you tried to create a new Outlook profile
    for your account? The issue may be caused by the corrupted Outlook profile which is cached to local machine.
    After creating a new profile for Outlook using cached mode, the mailbox data is re-synced from server to Outlook client new profile. And hope the issue doesn't happen in the new profile.
    Regards,
    Winnie Liang
    TechNet Community Support

  • Image reloading Issue - Imagefix

    Hi all,
    I have requirement like a grid component with images (Thumbnails).I have used the code of from javafx site(Thumnails.fx etc)
    view style:Microsoft explorer view with thumbnail
    Problem:Image reloading Issue - Imagefix
    When i deleting selected image from the grid i am create the object of imagegrid for updated list of images.The problem i am facing after 3 o4 continious sequences the images were not displaying on grid.Every time insert/deleting on image grid functionality i am creating image grid object even though problem still exist.
    //Code is like
    def image :ImageFix =getImage();
    function getImage():ImageFix{
    if(url.endsWith(".pdf")){
    url=url.replaceAll(".pdf","001.png");
    var pdfThumbnai:File=new File(url);
    if(not pdfThumbnai.exists()){
    ImageFix{
    backgroundLoading:true
    preserveRatio:true
    height:100
    width:100
    url:"{__DIR__}images/pdf-file-logo-icon.jpg";
    //applicationContext.pdfThumbnail;
    else{
    ImageFix {
    height:100
    width:100
    backgroundLoading:true
    preserveRatio:true
    url:"file:///{url}"
    else ImageFix{
    backgroundLoading:true
    preserveRatio:true
    height:100
    width:100
    url:url
    // the image variable setting imageView for following variable
    def imageView : ImageView = ImageView {
    smooth: false
    cache: true
    image: image
    cursor:Cursor.HAND
    fitHeight:100
    fitWidth:100
    onMouseClicked: function(evt : MouseEvent) : Void
    println("count value in Image Grid is {count}");
    var id:Integer;
    if(evt.clickCount >= 2)
    applicationContextDMS.indexOfImg=count;
    println("fileVectorObj {fileVectorObj}");
    showOCRScreen(count,folderID,fileVectorObj);
    if(evt.clickCount==1)
    applicationContextDMS.indexOfImg=count;
    selectImage(this);
    // Scale the thumbnail up when the mouse enters.
    onMouseEntered: function(evt: MouseEvent) : Void
    gr.visible=true;
    onMouseExited: function( e: MouseEvent ):Void {
    gr.visible=false;
    Please help out resolve this issuse.
    Thanks in advance

    The only work around that I found was to rename the image file. Once renaming occurred, the image file when updated was rendered correctly. I have read an earlier bug report that claimed this was fixed. I do not believe it to be so. If anyone has any additional information please present it.

  • BitmapImage cache issue

    On WIndows 8 RP, I create a BitmapImage with the Uri of a file on disk. The user has the ability to change the image file (using a picker which will replace the file on disk that is currently being used). The issue is that even when the BitmapImage is recreated,
    because the Uri is pointing to the same file, the new updated image is never loaded. The only way to get the new image to load is to close and reopen the app. Clearly there is a cache issue.
    I have two questions:
    1. Is the issue with the cache of the BitmapImage that I construct using the Uri? Or is the issue with the cache of the Image UIElement that is displayed using the BitmapImage I mentioned previously?
    2. It looks like I have far fewer options when dealing with BitmapImages on WinRT. I cannot do bi.BeginInit() or bi.CacheOption. All I can do is bi.CreateOptions = BitmapCreateOptions.IgnoreImageCache; ... but this does not help.
    Here is how I'm constructing my BitmapImage:
    BitmapImage bi = new BitmapImage();bi.CreateOptions = BitmapCreateOptions.IgnoreImageCache;bi.UriSource = new Uri(currentFile.Path, UriKind.Absolute);
    Here is how I'm setting the grid cell BitmapImage (which is binded to a UIElement Image):
    gridViewCellObject.tileImage = bi;
    Here is the code for the gridViewCellObject tileImage get/set
    public BitmapImage muteImage
    get { return _muteImage; }
    set
    _muteImage = value;
    // Call NotifyPropertyChanged when the source property
    // is updated.
    NotifyPropertyChanged("muteImage");
    Here is the XAML which binds the Image to tileImage:
    <Image Source="{Binding tileImage, Mode=OneWay}" Width="140" Height="140" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,10,0,0" Stretch="Fill"/>
    Any advice on how get around this caching?
    Bryan L. Keller

    Here is the solution. As the comments in my code suggest, this is ridiculous and shouldn't even be necessary.
    Here is the revised getPhotos method. I copy each bitmap from its original source to the temp folder. I give it a random name that will never be repeated while the application is open. This is done by getting some information about the current system time.
    I calculated it out to be a 1 in 10^-8 chance of getting a duplicate file name using my method of naming.
    public async Task<List<BitmapImage>> getPhotos()
    photos.Clear();
    IReadOnlyList<IStorageFile> files = (IReadOnlyList<IStorageFile>) await folderHierarchy.Last().GetFilesAsync(); //gets storagefiles of original png files
    DateTime currentTime;
    foreach (StorageFile currentFile in files)
    if (currentFile.Name.EndsWith(".png")) //get only png files
    //copy to and read from temp to prevent bitmap caching. (It's ridiculous that I even need to do this)
    currentTime = DateTime.Now;
    String tempFileName = currentTime.Hour + " " + currentTime.Minute + " " + currentTime.Second + " " + currentTime.Millisecond; //generate unique name
    await currentFile.CopyAsync(Windows.Storage.ApplicationData.Current.TemporaryFolder, tempFileName); //copy to temp with unique name
    //because the name is new each time, the bitmap will never be cached. photos.Add(new BitmapImage(new Uri((await Windows.Storage.ApplicationData.Current.TemporaryFolder.GetFileAsync(tempFileName)).Path))); //add bitmap to array of photos. This is used by the rest of the app to populate the gridview
    return photos; //return array of photos
    Microsoft, I shouldn't need to waste time solving your API issues. This stuff should have been fixed in one of the Developer Preview builds, NOT the Release preview.
    Get your act together so developers can do their job.
    Bryan L. Keller

  • CC2014 Cache Issue/Bug?

    Has anyone had any Cache issues withe After Effects CC2014? I'm using the latest version and myself and a co-worker are having cache-related(we think) issues whenever we re-time something.
    Specifically I was trying to create a looping comp using a 1second comp that uses the loopOut expression. It's basically a rangefinder set of lines that continuously move to the right. Inside the 1s comp it loops perfectly, but when I use loopOut, no matter what I do, or check, it creates a huge amount of motion blur on the last frame of the comp(even though it doesn't happen at all in the precomp)
    My coworker was re-timing a scene with a person using twixtor pro, the footage is touched up to remove some wrinkles under the subjects eyes, but when twixtor is applied it appears to be using the wrinkled-eyed footage. It's 100% opacity and doesn't have a blend mode or any expressions. The original un-retouched image with wrinkles is a hidden(not shy) layer under the new footage for timing/matching purposes.
    When the original footage is removed from the comp and the cache is cleared it seems to clear up.
    Any thoughts/suggestions?

    hey sandeep--
    if i'm understanding you correctly, this does indeed sound like a cache issue. based on what i'm thinking is your expected behavior, it sounds as if you're forgetting to clear the cache for your other PARAM items when a value is selected from one of your PARAM items that, from a logical perspective, comes before it. so to use your example...
    After I get Report based on (1). And then go back & select (2). It works fine. But when I go back & select (1) again, it still shows the Regions displayed based on the (2).
    ...i'd say you'd want to add a process to your page that fires after submit and clears the cache for PARAM2 when the value of :REQUEST = 'PARAM1'.
    hope this helps,
    raj
    ps-if i've misunderstood your issue, please explain it in more detail.

  • Increase still image cache when working only with images?

    I've been having hundreds of out of memory issues when working on a still image project. Thought it was solved but it hasnt.
    If im working totally with still images (Jpegs, Tiffs and PSD's) should I increase the Still Image cache from its default amount? I have scoured the internet trying to find out what the Still Image Cache is but cant find an explanation anywhere.
    I increased it this morning and all is well so far.....
    Might this solve my problem.

    The Still image cache is the amount of RAM assigned to the playback of the stills. That's what that slider adds... it should help to make it larger when you are working with a lot of stills. They are cached to RAM instead of being read from disk...
    From the manual:
    Still Cache: This specifies the amount of RAM used to hold still images for real-time playback. The still cache that is allocated is a percentage of the excess RAM allocated to Final Cut Pro, so adjusting the Application slider also adjusts the amount of RAM available to the still cache. The more RAM allocated to the still cache, the more still frames can be played back in real time in the currently selected sequence. If another sequence is opened, the contents of the still cache are replaced with stills from the new sequence. If there is no excess RAM available, this slider is dimmed.
    Jerry

  • HTML Image cache

    I need to clear the html image cache that mail uses. I get a newsletter with a header image but always see the old image if they have updated it.
    How can I fix this ?
    TIA

    Ok, I found out how to do it, not sure if it will cause any other issues but you have to delete this file
    User/library/caches/com.apple.mail/Cache.db

  • The cache issue about indexcol function

    Hi Experts,
    We have one requirement as below,
    Firstly, we have some columns prompt created by JAVA in external portal page, not OBIEE internal prompts,such as Year, Month,Day.
    Secondly, we have one report contains one dynamic column which showes the lowest selected level value.
    For example,
    When users muti-select value in Year, and not select Month,Day, so this report will display as below:
    Dynamic--------Sales
    2010-------------1000
    2011-------------2000
    When users muti-select value in Year and Month, and not select Day, so this report will display as below:
    Dynamic--------Sales
    201001-----------100
    201002-----------300
    201101-----------500
    When users muti-select value in Year , Month, and Day , so this report will display as below:
    Dynamic--------Sales
    20100101--------50
    20100202--------80
    20110101--------100
    So we have one method to solve this requirement, but faced new cache or update issue immediately. More detail information as below:
    We create one temp table which has one flag column ,
    when users select Year level, it will record 0,
    when users select Month level, it will record 1,
    when users select Day level, it will record 2
    Then import this temp table into physical layer, and create session init block like below:
    select flag from temp
    Finially, we create new indexcol column in BMM :
    INDEXCOL(VALUEOF(NQ_SESSION.FLAG),Year,Month,Day) and drag it into presentation layer.
    When users select value in Year or Month or Day, and the flag will be record into database.However, the dynamic column in report will not be changed.
    I must click "Reload Server Metedata" firstly, it will show correctly.(Users do not click this )
    Is there any better method to solve cache issue? Or any other better methods for solving this requirement?
    Thanks very much.
    Note: I have disabled the cache in temp table in physical layer.

    Sorry to bother you again, I found I was wrong in describing my problem. I found out that I sent the CiscoIPhoneExecute xml to the phone last time, not the CiscoIPhoneImageFile xml.
    The CiscoIPPhoneExecute xml is like:
    http://192.168.1.2:8080/test/push2phone.jsp?action=get"/>
    And "http://192.168.1.2:8080/test/push2phone.jsp?action=get" returns the CiscoIPPhoneImageFile xml, like this:
    Image Title goes here
    Prompt text goes here
    0
    0
    http://192.168.1.2:8080/test/pngs/attention.png
    so when I send the CiscoIPPhoneExecute xml to a phone, the phone will display the file attention.png on the screen with the sound chime.raw, then I press the "exit" button, the attention.png on the screen disappears. But if I then send the CiscoIPPhoneExecute xml with the "http://192.168.1.2:8080/test/push2phone.jsp?action=get" that returns the CiscoIPPhoneImageFile that contains a different png file, for example "warning.png", the "attention.png" will appear for a short time during the time when "warning.png" is downloading, then "warning.png" appears. I have no idea why that happens. I don't want to see "attention.png" when I'm sending "warning.png". What can I do?
    I've tried to directly sent the CiscoIPPhoneImageFile xml to a phone, everything goes well, no "cache" problems. but I have no idea how to add the sound "chime.raw". I want the png files to be sent like short messages with sounds. Please help!
    Thanks a lot.

  • About cache issue when using push2phone and callerino

    I have made push2phone and callerino functions working well,but the issue is when we push messages to the phone,the phoen always displayed the message sent last time firstly then the message this time was displayed,seems there was cache issue,so does the callerinfo function.I have no idea about where the cache issue occurs,also how can I let the message be displayed as "tab" method on the phone? Please help !Thanks in advance.

    Sorry to bother you again, I found I was wrong in describing my problem. I found out that I sent the CiscoIPhoneExecute xml to the phone last time, not the CiscoIPhoneImageFile xml.
    The CiscoIPPhoneExecute xml is like:
    http://192.168.1.2:8080/test/push2phone.jsp?action=get"/>
    And "http://192.168.1.2:8080/test/push2phone.jsp?action=get" returns the CiscoIPPhoneImageFile xml, like this:
    Image Title goes here
    Prompt text goes here
    0
    0
    http://192.168.1.2:8080/test/pngs/attention.png
    so when I send the CiscoIPPhoneExecute xml to a phone, the phone will display the file attention.png on the screen with the sound chime.raw, then I press the "exit" button, the attention.png on the screen disappears. But if I then send the CiscoIPPhoneExecute xml with the "http://192.168.1.2:8080/test/push2phone.jsp?action=get" that returns the CiscoIPPhoneImageFile that contains a different png file, for example "warning.png", the "attention.png" will appear for a short time during the time when "warning.png" is downloading, then "warning.png" appears. I have no idea why that happens. I don't want to see "attention.png" when I'm sending "warning.png". What can I do?
    I've tried to directly sent the CiscoIPPhoneImageFile xml to a phone, everything goes well, no "cache" problems. but I have no idea how to add the sound "chime.raw". I want the png files to be sent like short messages with sounds. Please help!
    Thanks a lot.

  • JE as Image Cache

    Folks,
    We're considering using JE as an image cache for a large(ish) number of small(ish) images. The question is whether or not JE would be fit for this particular use. The requirements are simple: store a single Java object via DPL in the form:
    class Image{
    @PrimaryIndex
    String uuid;
    @SecondaryIndex(...)
    Date lastModified;
    @SecondaryIndex(...)
    Date expires;
    byte[] data;
    We expect to store 50K or so images with data[] sizes ranging from 1k to 50k. Any reasons why JE might not be a fit? We've stored blocks of XML in the past without issue, so don't expect issues here.
    Regards,
    -tyson

    Tyson,
    You're probably familiar with this already, but JE is agnostic about data types at the actual storage level. Only the DPL layer understands what type the data is. So in this case, the major factor to consider is the size of the data.
    We have certainly heard of uses cases with data in the 1 - 50K range, and it should be possible, but I'll explain the factors to consider in terms of the size of the data.
    1. Because of JE's append only storage architecture, an update to a record is a new, fully size copy of the record. So if a large data record is updated a lot, the log does grow. Of course, those older versions are obsolete, and the log cleaner removes them, but it results in log file growth and compression (cleaning) in larger degrees of granularity.
    2. In general, JE pulls data records in their entirety into cache. So a large data record takes more room, the cache fits fewer data records, and there may be more eviction activity going on to maintain the cache. One exception is the "Partial" option when fetching data entries, described in the Cursor javadoc under "Using Partial DatabaseEntry Parameters" here: http://www.oracle.com/technology/documentation/berkeley-db/je/java/com/sleepycat/je/Cursor.html. It lets you fetch only the key portion of a data record and avoid pulling the data portion into the cache, when using READ_UNCOMMMITED, and can be useful in some cases.
    3. We don't yet provide any streaming APIs, which would be handy for really large records.
    That's what I can think of! Maybe folks who have been storing large records can speak to their experience. But we do know that people do store records that large in JE.
    Regards,
    Linda

  • Directory Caching issue with Cisco Jabber client for Windows

    Hi ,
    I am facing cache issue with Cisco Jabber client for Windows. If I do any change related to modification or deletion of contacts in Active Directory/ Callmanager, it does not reflect in the Jabber. Because jabber takes the contacts from the locally stored cache file in the Windows system.
    Every time I have to remove the cache file to overcome this issue, practically it's not possible to do the same with all the Widows users. As, if any employee leaves the company and still I can see his contact appears in the "Cisco Jabber client". I have not seen this issue with Android/Apple iOS.
    Is there any automated way to remove the cache file? 
    Here is the detail of CUCM,Presence and Jabber.
    CUCM version: 9.1.x
    Presence          : 9.1.X
    Jabber              : 10.5 and 10.6

    Hello
    On our environment we had to install a dedicated Microsoft Certificate Authority "just for Cisco Jabber usage" to house the
    Network Device Enrollment Service.
    Our certificate for the CUPS were generated on this Certification Authority too.
    I discussed this certificate matter with my colleagues this afternoon and nobody seems to remember how these certificates were deployed into the
    Enterprise Trust store for the users.
    But I think they asked all 400 users to accept the 3 certificates by answering "yes" to the popup instead of using a script deployed by GPO...
    I wish you success with that deployment and really hope you have a technical partner that *Knows* this subject.
    Our partner left us alone with that unfortunately.
    Florent
    EDIT: If the "Certutil script method" works, please let me know. This could be useful in our own deployment.

  • Sql query cache issue

    I am trying to see the log file in Manage sessions for the sql query in Answers. I see that if we run the same report multiple times, the sql query is showing up only the first time. Second time if I run it is not showing up. If I do a brand new report with diff columns picked it is giving me the sql then. Where do I set this option to show the sql query everytime I run a report even if it is the same report run multiple times. Is this caching issue?

    It shouldn't.... Have you unchecked the "Cache" on the physical layer for this table? If you go onto the Advanced tab, is the option "Bypass the Oracle BI cache" checked?

  • WEB u2013 I cache issue.

    We have BO XI 3.1 PF 1.7 and SAP BW 7.0 SP 18
    We are facing strong caching issue  with WEB- I XI 3.1 , what we observed is it cache previously fetched data and does not recognize data been updated in BW Infoprovider ( in our case we have BEx query on Direct update DSO )
    I have tried u2013
    1.     I made caching inactive for that BEx query in BW side.
    2.     I have check caching setting in BO , they are not helping me much to in active cache in BO
    On executing BEx query in BW, I have checked RSRT cash monitor; the query result is not getting cached, and get up-to-date data. Query works perfectly file.
    Also observed Events in RSDDSTAT_OLAP table, I could find very well Event 9000. This shows me that BEx query hits database and bring data back.
    When I execute BO report on the top of same BEx query, I do not get up to date data , it shows me previously fetched data and does not recognize data been updated in BW.
    Now question is where this data being getting cashed , and how to make that inactive to make sure I do get up to date data in WEB-I .
    Many thanks for your kind response.
    Regards
    Ashutosh D

    HI Ashutosh,
    This would be stored in the C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\Data\servername_6400\storage folder.  Try renaming this folder and then testing again.  If this allows for updated records, then that proves that the Webi Processing Server is getting the cached data from this directory.
    There are also a few settings you can try to disable in the Webi Processing Server settings within the CMC:
    Disable cache Sharing (Checked)
    Enable Real-Time Caching (Unchecked)
    Enable Document Cache (Unchecked)
    Cache Timeout (1 min) - sets the cache to expire after 1 min.
    Try playing with these settings and see if that resolves the issue. 
    Thanks
    Jb

  • SharedObject and Caching issues

    Background:
         I am working on a project where I am using sharedObject to store data for a favorites list. The project contains 2 swfs, one in AS 3.0 (using Flex 4.5) and the other an AS 2.0 flash 8 project.  Basically the AS 2.0 project read and writes data to the shared object and the AS 3.0 project just reads the data.
    Setup:
         OS: Windows 7
         Flash Player: 10.3     Browsers: IE 9, IE 8, Chrome 14, and some misc Firefox testing -- Chrome seems to be working the best.  
    Problems:
         First off it has been extremely hard to get consistent results across different computers so if anyone has a suggestion as to why that would be (other than different browsers, different flash player versions, different flash player settings/global settings and different OS versions) because I have been making sure all that stuff is consistent across devices for testing purposes.
         1. It appears that some computers/browers won't store the shared object at all even though everything to allow it is turned on.
         2. Some computers/browsers will store it, but won't update until I refresh the page
    General Questions:
         1. Is the storage of sharedObject object data in a .sol file configured the same in both AS 2.0 and AS 3.0 and if so, would this be a means of communicating between two swfs running off the same domain?
         2. Is it possible to have a browser cache sharedObject data(the .sol file)?
          3. I have noticed as new flash player releases are coming out(especially recently i.e. 10.3) I have had to make a lot of repairs to the actionscipt 2 stuff.  Is actionscript 2 support slowly being phased out? Is anyone else experiencing the same problems? 
    Possible Solutions/Findings:
         I am starting to believe that it has something to do with browser caching since Chrome seems to perform the best and Chrome has performed best when it comes to browser caching issues.
    ** code is available if needed but since it was working before I don't think it is relevant.

    Hello,
    #1
    are you using explicit call to flush method immediately afer you're writing data to reference to SharedObject?
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/SharedObject. html#flush()
    If not you could have different data read by different browsers sessions run at the same time (e.g. IE/FireFox both hosting your test Flash movies) - as data are flushed only when given Flash runtime session is to be terminated (e.g. movie is to be unloaded) and in other cases as outlined in documentation.
    #2
    the SharedObject is reference to binary file stored on local machine by Flash runtime (Air runtime too). It has nothing similar to web-fetched content to be cached:
    http://en.wikipedia.org/wiki/Local_Shared_Object
    regards,
    Peter

Maybe you are looking for

  • WD For ABAP : cl_wd_table  HELP?

    Hi:    I have a problem to solve about web dynpro for abap.    I create a table and the first column is a LINK_TO_BUTTON(Function LIKE BBS),if there are 6   rows  data ,when i click the link_to_button of 1 row in 6,I want to konw which row i have cli

  • How to identifiy Faulty Driver in Boot Image (Reverse Engineering of Adding a Driver to Boot Image)

    Hello SCCM'lovers I'm having a new EliteBook 820 G2 here which Fails PXE boot due to a false corrupted Intel Advanced Network Service Virtual Adapter-Driver. The PROBLEM now is how to determine under Boot Images - Properties - Drivers ... the correct

  • Tip on Using "Folder" for performing Query Based Classification

    In setting up a TREX taxonomy for one of our intranet sites we concluded that the folder structure used by the web developers really helped classify the documents at a higher than an 80% level.  It seems that in many cases, the intranet, outlook publ

  • Product comparison color swatches

    Hello Everyone, I am implementing Product Comparison page. So i have to display color swatches in every product. I am using most of Out-Of-The-Box features to product comparison. In the repository level i have created clothing-sku and added to a prod

  • Imensaje y facetime no se me activan

    buenos dias saben que tengo un iphone 4s con iso 6.1.2 con operadora movilnet de venezuela e intento activar el imensaje y el facetime con mi numero y no me lo permite, se quedan en esperando activación y luego dice que no se pudo, como hago?