To use browser cache

After a contents is gatewayed through the portal, 'Cache-Control' value is setted as 'no-store, no-cache' even though it is setted to use cache from the remote server.
We need to use browser caching function, but with the 'Cache-Control' value resetted in the portal while it is gatewayed, we cannot use browser caching function.
Is there anyway to keep 'Cache-Control' value to use browser caching when a content is gatewayed through the portal server?
Thanks,Young-Jin

The bug is related to client browser caching, but is rooted in the gateway. As you've noted, the gateway is erroneously adding no cache headers to the response for certain content types, thereby preventing the browser from caching them.
...stephan------- Young-Jin Kim wrote on 4/26/04 1:39 AM -------
Danil,
Is that right you are talking about browser caching?Actually, we want to use client browser caching.The bug that you said is related to client browser caching or gateway caching?

Similar Messages

  • Does the private browsing mode in FF3.6 use the cache from normal mode?

    While I'm in PB mode, does FF3.6 use the data from '''normal''' mode cache?
    The purpose of asking this Q is: I'm a web developer. I want to visit a site freshly (without any data used from cache). But I don't want to clear all my cache/cookies etc from all the sites I've visited so far. So I wish if I can switch to PB mode and visit this one site which doesn't use any data from normal mode cache .

    Firefox doesn't use the disk cache in Private Browsing mode, but does use the memory cache. See the about:cache page.
    In Private Browsing cookies from normal mode are not available and a new set of (session) cookies will be created that will be removed if you exit Private Browsing mode.<br />
    You can see that in the cookies manager: Tools > Options > Privacy > Cookies: "Show Cookies"

  • When i try to use hulu acc.i keep getting the same message / sorry we are unable to load the player please check your internet connection clear your browser cache and try again. i thought i did it right .

    Question
    when i try to use hulu acc.i keep getting the same message / sorry we are unable to load the player please check your internet connection clear your browser cache and

    I found a solution! (at least, for my platform; Windows XP Home SP3, Firefox 4.0.1) =) Go to http://labs.adobe.com and download the Release Candidate 1 version of Adobe Flash 10.3.181.5. I swear, the Second I installed this, it worked INSTANTLY xD. Best of luck to you! (and anyone else who sees this =)
    -Erik P.

  • Firefox Browsing caching issues when using OBIEE

    We have experience a problem when using Firefox. It seems the browser caches the results, of an analysis for example, and even though we have made changes to the data, flushed the OBIEE cache, we still see older results because the older results were cached in the browser. We have to go to options -> history -> clear recent history to get the new results. (And sometimes this doesn't seem to do the trick.)
    Anybody else seen this problem or have a resolution?
    Thanks,
    Brian

    There are different caches in OBIEE. Probably you hit stale entries in "Presentation Server Cache".
    This can be controlled by adding the following to your instanceconfig.xml
    <CacheMaxExpireMinutes>5</CacheMaxExpireMinutes>
    see also here:
    http://obiee101.blogspot.ie/2008/11/obiee-presentation-services-cache.html
    or here:
    http://unleashobiee.wordpress.com/2011/01/12/purging-obi-server-and-presentation-server-cache/

  • How do I stop Firefox from auto-loading websites on startup? Why doesn't it use the cache?

    When I open up Firefox, I see a row of "loading circles" swishing around. I don't want my browser to do this, because it slows down my internet connection, it's unnecessary 95% of the time (I often keep tabs open just to have quick access to some text), and sometime it's actually detrimental (for example, when the page has changed since the last time I loaded it, but I actually wanted the information from the former state of the page).
    How do I fix it so that Firefox uses the cached page instead of trying to load a new one?
    To clarify: I want Firefox to load the new page when I visit a bookmark, or click on a link to a page I've seen before, or press the reload button. I just don't want it to do this when all I've done is start up Firefox.
    Let the tabs sit there until I tell them to do something! Can anyone help?
    Using:
    Firefox 9.0.1
    Windows XP SP3

    Yes, but at least the start will be faster and only one tab ta the time is checked on the server.
    See also:
    *http://kb.mozillazine.org/browser.cache.check_doc_frequency

  • When I publish my site on one specific page where i've added {tag_pagecontent} I get the error:Some files on the server may be missing or incorrect. Clear browser cache and try again. If the problem persists please contact website author.

    When I publish my site on one specific page where I've added {tag_pagecontent} I get the error:
    'Some files on the server may be missing or incorrect. Clear browser cache and try again. If the problem persists please contact website author.'
    I'm trying to get a blog module going, I've even deleted the html insert bog with the tag in and re-published which then I don't get the error but as a result no blog either. But then I add the tag in again and publish the error comes back. I've used the dev console and it says that my musicians sample.css is out of date but why is it only out of date when I add in html to my muse site?
    HELP!!!! I've searched other threads and to no avail I'm publishing so no direct ftp going on. the only thing I changed in business catalyst was the module stylesheet in order to style the blog. I've tried uploading and replacing all files nothing seems to work. the site is here:
    http://www.musicstudentsforhire.co.uk/musicians-samples.html
    It's only this page as it has the blog on. Also I've noticed when I've re-published occasionally it will show the mobile version on my desktop and not the desktop version??? no idea why that's happening so I've had to turn that off. any explanation on why that is happening would also be much appreciated.

    I haven't received an answer as of yet, I'll post t on here when I do. I de-activated the mobile site because it's my clients site so he needs it to be operational during the day. I hope someone gives me an answer soon.

  • Session state and browser cache - Back button problem

    Hi all,
    I have a problem (and unless I'm missing something I think we all do) with session state and use of the browser's Back button. I really hope I'm just being dumb...
    Background scenario:
    Page P has a sidebar list allowing the user to select what content is displayed (e.g. 'stuff relating to X, Y or Z' where X, Y and Z are rows in, say, a table of projects). When a list entry is clicked, we branch to page P with the value of the list item placed in an application-level item (call it G_PROJECT). Reports on page P use G_PROJECT in their WHERE clauses.
    So, click list entry X and G_PROJECT is set to X and page P shows reports for project X.
    Page P also has a set of buttons which branch to various edit pages which allow attributes of page P's current project to be updated. These pages similarly use G_PROJECT in their WHERE clauses.
    Problem scenario:
    1. The user goes to page P and picks project X off the list. Project X's stuff is displayed (G_PROJECT = X).
    2. The user then picks project Y off the list. Project Y's stuff is displayed (G_PROJECT = Y).
    3. The user then clicks the browser's Back button. The page is served from browser cache, so project X's stuff is displayed, but G_PROJECT still = Y.
    4. The user clicks an 'Edit' button; we submit, and branch to an edit page which displays (and will edit) data for project Y because G_PROJECT still = Y.
    This is SERIOUSLY BAD NEWS - apart from being confusing, the user's edit permissions on projects X and Y may differ, and so the user may be able to perform 'illegal' updates.
    I've read what I can on this forum and the rest of the web looking for ways to a) inhibit browsers' 'Back' functions and/or b) prevent pages being cached by the browser, but none of them have worked for me.
    Short of waiting for browser manufacturers to recognise that the web is now full of applications as well as static pages, and enable robust programmatic control of cache behaviour, does anybody know how the problem can be avoided - or at least detected?
    Thanks,
    jd
    Failed attempts to date:
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="cache-control" content="no-store">
    <meta http-equiv="cache-control" content="private">
    <meta http-equiv="cache-control" content="max-age=0, must-revalidate">
    <meta http-equiv="expires" content="Wed, 09 Aug 2000 01:01:01 GMT">
    <meta http-equiv="pragma" content="no-cache">
    Disallowing duplicate submission (page attribute).
    window.history.go(1);

    Thanks Scott,
    I may be being dumb here but I don't see how that would help...
    P250_PROJECT and G_PROJECT are currently kept in sync by app logic. Whichever is used to drive, if the page is rendered from cache then the app logic is not executed, so the rendered page contents are not those keyed by P250_PROJECT, as illustrated in steps 1-4 of the problem above.
    The user sees X, the session items say Y. The engine doesn't know what the user is seeing.
    when page P is POSTed, its hidden item P250_PROJECT should always be used to derive the application item G_PROJECT. Then whether the page was pulled from cache or rendered anew via a click from the sidebar link, the project ID is determined by the contents of that page.
    As I said above I tried this, with the 'Edit' branch set to:
    Set these items: G_PROJECT
    With these values: &P250_PROJECT.
    but it makes no difference. The project ID is not determined by the rendered page contents - the engine gets the value of P250_PROJECT from session state.
    I can code the 'Edit' pages such that they check permissions and if necessary redirect back to p250 (conditional before-header branch), but that's a clunky cure rather than the prevention I was hoping for.
    Please tell me if my understanding is incorrect.
    jd

  • Can't get browser.cache.disk.parent_directory to work

    I've tried to use the browser.cache.disk.parent_directory method to move my disk cache, but this isn't working.
    Details:
    I did a clean install of Firefox 22 on Vista, and then, following instructions, went into about:config, created the browser.cache.disk.parent_directory key, and gave it the value of a directory I had created.
    I then visited many different sites (no, not in private browsing mode), and noticed nothing was being saved there. In fact, the new directory is absolutely empty (no hidden folders either).
    Looking at about:cache, I am informed:
    Offline cache device
    Number of entries: 0
    Maximum storage size: 512000 KiB
    Storage in use: 0 KiB
    Cache Directory: C:\Users\XXX\AppData\Local\Mozilla\Firefox\Profiles\XXX.default\OfflineCache
    And yes, browser.cache.disk.enable is set to true.
    This is true regardless of whether I am using my admin account with no extensions or my standard user account with several extensions.
    Advice?

    the-edmeister, I carefully read the material in your link before making the changes, and then again before posting this question, and yet again now. I hate to be snide, but can you point out what there is in this link that addresses my question? (And yes, browser.cache.disk.capacity is obviously set to a positive value.)
    If it helps, I'm attaching a screencap from about:config.

  • Browser cache ignore no longer works after windows update

    Just thought I'd share that after the windows update I did
    this week, the browser cache blocking trick described in many
    places where you put ?r=<randomnumber> at the end of a URL no
    longer works. Not exactly sure what happened, but it now causes a
    URL not found error, at least for me when I'm loading local files
    off my disk.
    This thread talks about the cache blocking trick:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&catid=665&threadid =1357763&highlight_key=y&keyword1=cache

    Here's a technique I use. In a php file:
    header("Expires: Mon, 20 Jul 1997 05:00:00 GMT");
    header("Cache-Control: no-store, no-cache, must-revalidate");
    header("Cache-Control: post-check=0, pre-check=0", FALSE);
    header("Pragma: no-cache");
    This must be wrapped in php tags.

  • Browser.cache.check_doc_frequency=1 doesn't work

    Hi guys, running FF27.01 on W7SP1.
    I have a lot of tabs open and I set FF to reopen them at every launch, my problem is that FF hardly ever checks whether those webpages were updated when I reopen it....Opera, Chrome & IE do it, why not FF? Who could possibly want to read an outdated webpage?
    So I did set "browser.cache.check_doc_frequency" to "1"(I tried all possibilities actually), now FF is kind enough to check whether the webpage was updated on some sites....very few sites actually.
    This is a known issue from what I found running a google search and the solution was either to clear the cache when FF closes or to use Chrome...I don't like either of those two options.
    This is my problem: https://support.mozilla.org/en-US/questions/754829
    Is this a bug? Am I missing something here?
    Hope you can help, I'm getting tired of being forced to manually refresh every tab :(

    It makes no sense to allow the browser to remember the open tabs from the previous session, add a hidden "browser.cache.check_doc_frequency=1" configuration option and ignore it altogether.
    Whatever IE, Chrome or Opera are able to remember the open tabs from the previous session and chech whether they've been updated.....it's hard to believe that the FF team finds the contrary acceptable?
    I couldn't locate any extension that would get FF to stop living in the past, I guess I'll install Chrome or Opera as it seems that this bug will never be fixed. Too bad I really like FF but manual refreshes are getting old.
    But it's definitely a bug as setting this option to "1" makes some webpages(head-fi.org for instance) auto-update but not others(forum.doom9.org), something's fishy in the HTTP headers checks.

  • Some files on the server may be missing or incorrect. Clear browser cache and try again. If the problem persists please contact website author.

    I've been building a site in Muse successfully until today when I get this error message in the browser, publishing to business catalyst as a test bed:
    Some files on the server may be missing or incorrect. Clear browser cache and try again. If the problem persists please contact website author.
    Clearing the cache has no effect and I have checked the assets and there are no error symbols. This happened after trying a google translate code in the <head> and a HTML snippet on the master template, I've since removed it but that the last action I took that I can think may have had an effect.
    Viewing the source of the page in Safari hash;t helped other than it shows ALOT of html (including some elements i can;t relate to in my site design) and states there are three errors:
    [Warning] Invalid CSS property declaration at: ; (index.html, line 1)
    the site is Kingsdown Holiday Homes - Self Catering Chalet Rental at Kingsdown Park, Kent | Home
    I started this site in Muse CC and then recently upgraded to Muse CC 2014, and I had install issues so deleted the original program (this then forced the download of the new version which was not automatically downloading even though CC notified me that an update was required.
    Any information gratefully received.
    Thanks,
    Andrew

    Same problem here but it has nothing to do with a cellular connection.
    Created the site http://www.blackdot.com in Muse 7.4.3 with no issues. Just updated the .muse file today to Muse CC 2014 and reloaded to our web server. Now I am getting the error "Some files on the server may be missing or incorrect." when viewing the site from the latest version of all browsers (Safari, Firefox, Chrome) on a Mac and all browsers on a PC (Safari, Firefox, Chrome, Explorer), also mobile Safari on an iPad.
    My connection is wired broadband, not a mobile or wireless connection. I am not using the Muse "Upload to FTP host…" option and will not be using it. I am simply exporting as HTML and copying the files to my server. I have deleted all files from the web server and recopied the updated site with the same error result. This is the exact same procedure I used to load the initial site with the prior version of Muse.
    It does not seem like there is an existing solution to this problem although many others are experiencing it. It looks like I will need to manually edit each page to remove the error message coding from the html files. Any tips on how to strip out the alert message from the html?
    UPDATE
    For anyone else experiencing this issue, I was able to edit the .html files for my site to remove the code responsible for this alert message. If you wish to edit your .html files you must make the same edit to every .html file in your site export including the top level "index.html" and all .html files inside the "tablet" and "phone" folders if you have them.
    The coding to remove is at the bottom of each .html file:
    (Muse.assets.outOfDate.length||Muse.assets.required.length)&&alert("Some files on the server may be missing or incorrect. Clear browser cache and try again. If the problem persists please contact website author.")
    Make sure you do not remove any semicolons or braces {} when making this edit. Just remove the text shown above. You will obviously need to remake these edits if you export your site as HTML in the future.

  • Sharepoint 2010 document library pdf files are storing in browser cache when it is opened in browser

     i have sharepoint 2010 site which consists of document library  with pdf files if we click on pdf file it will open in browser .But the thing is it is storing in browser cache  so i need to restrict that pdf to not store in browser cache.
    A,ny suggestions please

    Hi,
    We can use jQuery plugin to open the PDf file in browser.
    The following link for your reference:
    http://www.jqueryrain.com/2012/09/best-jquery-pdf-viewer-plugin-examples/
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Using system cache with AIR...

    Hi,
    I have been monitoring calls to download media from an AIR iOS app via Charles sniffer. What I am seeing is repeated downloads of the identical files, each and every time they are requested. Obviously, with large data lists, this represents a huge amount of data that shouldn't need to be redownloaded a second time. In this case, I have checked that the cache headers are "no-cache", so I will take that up with the server developers, but I am curious: do image downloads via AIR cache downloaded data using the system's browser cache or is it separate somehow?
    G

    You can cache read-only PL/SQL stored procedures in the DB Cache. I'm not sure about db built-in packages, but if they are read-only, should be ok.
    All DB Cache management functionality is available from DBA Studio. You can also use the supplied dbms_icache PL/SQL package to manage the cache. Refer to the DB Cache Concepts & Admin Guide for details.
    DB Cache is strictly a cache for read-only queries. All updates are passed to the origin db.

  • Clear browser cache

    I'm using LC Forms 6, and we have a form rendered in HTML. Once the form is submitted we want to be able to clear out the browser cache upon rendering the form in it's final format, which is a submitted successfully page. Is there a way to programatically clear the browser cache either through javascript in the form designer, or in the Java servlet?
    Thanks!

    http://www.wikihow.com/Clear-Your-Browser's-Cache

  • IWeb Browser Caches Huge Headache!

    I have (finally) successfully designed my website and for the most part, it's working well.  The issue I'm having at the moment is that when I update the website, I have to clear my browser caches each and every time in order to see the changes.  I have tried using Internet Explorer (on my boyfriend's PC-he's stil playing for the other team), Safari, Firefox (both PC and Mac) and Crome (both Mac and PC).  It's the same for all of them.  It's not a big deal for me but it is a HUGE deal for people that are wanting to see the most recent version of the site.  I have had a couple of friends check it out for me (Mac as well as PC users) and they are all having the same problem as well.  Surely not every person who wants to see my site will have to clear their caches each time???  Is there a setting or something that I can add to my site via iWeb so that it forces it to load the pages each and every time, rather than from a cache? 
    Just in case...the site is www.nhwctr.org
    Thanks!   

    Regarding your landing page URL, you should remove the apostrophe in the page name.
    Emptying the browser cache is one of these things that people should do at some point in any browsing session - but don't appear to.
    To force the browser to load from the server evry time, the following can be added to the html doc...
    <meta http-equiv=”pragma” content=”no-cache” />
    This can't, of course be done in iWeb and would have to be added every time you publish updates in the same way that you add the other meta data for SEO...
    http://www.iwebformusicians.com/Search-Engine-Optimization/Tags.html
    The end user can force the page to load from the server, rather than the cache, by adding a ? to the end of the URL.
    Normally you would be collecting your regular visitors' email addresses using a contact form and sending them an update newsletter. This is website marketing at its most basic...
    http://www.iwebformusicians.com/Website-Email-Marketing/Website-Marketing.html
    In the bulk emailed flyer, you can attach a ? to the URLs of the updated pages.
    You should, of course, keep the search engines up to date as well by submitting a new sitemap.xml every time you publish changes to your site...
    http://www.iwebformusicians.com/Search-Engine-Optimization/Sitemap.html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

Maybe you are looking for

  • Adobe 9 opening pdf's from web site

    We recently upgrade to Adobe 9 from 8 and have noticed a slowdown in the time it takes to download and open a pdf from a web page link. Adobe 9 shows a download to a temporary folder pop up before the pdf will open. Adobe 8 did not behave the same wa

  • Original Loops For Garage Band

    Hi Gang Anyone ever buy from this gentleman? He's got 100% feedback, and he claims that all his loops are 'ORIGINAL' not counterfeit Discs of Apple Jam Packs. http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=150417752948 Thanx Mike http://vimeo.com

  • Possible to Parse on(...) Script in Buttons ?

    Hi everyone, I've a "little" Problem that goes beyond my ActionsScript 2 Knowledge so I hope anybody has an Idea or can confirm that what I need to do isn't possible. I got an existing Flash-Project written with ActionScript 2 in this Project is a Gr

  • Ken Burns start and stop points

    In iMovie, when using the Ken Burns effect how can I set the start and stop points to be the same? I don't want to just use "Crop" because my understanding is that using the Ken Burns effect will result in a clearer still photo.

  • Cant deploy exploded Workshop application to managed server

    Hello, I tried deploying an open directory Workshop application to a managed server and it says that I am trying to deploy a split application and that I need to build the application and deploy as an open or packaged enterprise application. It deplo