Tagged Questions
0
votes
0answers
14 views
Cache viewer for Google Chrome [closed]
I want to make a simple cache viewer for Google Chrome with C#, I didn't find any sample about how to access Chrome cache
I found that the cache existing on ...
0
votes
1answer
21 views
Manually renewing cached resources before browser does
I have some resources that my pages are using, defined as:
<script type="text/javascript" src="dictionary.js"></script>
Where dictionary.js is actualy created on the fly and returned ...
0
votes
2answers
13 views
Test a webpage without having downloaded its resources yet
Each time I want to test a webpage that I modified, let's say I added or changed the source of an image, the browser loads that image from that page for the first time, and then when I keep refreshing ...
0
votes
1answer
41 views
page speed font link google fonts
I have made an application in Symfony2 and passed the test as GTmetrix or pigdom and return this error:
The Following resources are missing a cache validator. Resources que no not specify a cache ...
0
votes
0answers
43 views
How to clear browser cache in android
I am developing an application, in which user can add URL to be blocked, means those URL can not be opened in browse. I add a URL block observer for this purpose.
...
0
votes
0answers
38 views
Leveraging browser cache not working in Wordpress site (tried htaccess and plugins)
I'm trying to get the Wordpress site I'm working on setup to run as fast as I can. Used Google's pagespeed and was advised to leverage browser caching.
Since then I've tried (multiple different) ...
0
votes
1answer
27 views
Android/iOS/Win: force browser to save HTML/JS/CSS indefinitely
We're going to create a data-driven mobile HTML5 app. I was thinking we can just access it using the default browser on each platform. I read about caching behavior of browsers on latest versions of ...
1
vote
2answers
122 views
How do browsers handle non-cacheable resources that are referenced more than once?
This Yahoo Developer Network article says that browsers handle non-cacheable resources that are referenced more than once in a single HTML differently. I didn't find any rule about this in the ...
0
votes
0answers
25 views
Not getting browser caching or gzip to work
I'm trying to optimize a new redesign I'm ready to launch, but I'm having trouble getting the browser caching, proxy caching, and compression to work. I've never done it before so I apologize for my ...
0
votes
1answer
27 views
dynamic DOM and browser back button
In test participated Ff, Safari, Opera, IE and Chrome
FF, Safari and Opera are behaving as expected. When i modify DOM dynamically, leave the page and press back button - the content will remain as ...
1
vote
0answers
38 views
When pressing Back button, what determines whether the browser hits the server again or re-renders what it had in memory?
I'm developing a Rails 3 app, and I noticed that when pressing Back, the browser re-shows the page it already has in memory, instead of hitting the server.
That said, I'm 99% confident that in ...
0
votes
1answer
35 views
Is there any evidence that browsers ignore Cache-Control and Max-Age headers?
I've heard it suggested by several different sources that browsers sometimes ignore caching headers and instead use stale content. However, I've never actually observed this.
Is it true that ...
0
votes
2answers
107 views
IE caching ajax request does not execute javascript function
I have a javascript file loading via jQuery.getScript on the client and I'm setting cache-control headers with 1hr browser caching on the server side. It looks like IE caches ajax requests and the ...
1
vote
1answer
86 views
Webpage has expired
Code to forces the page to load when the browser back and forward button are used.
Response.Buffer = true;
Response.ExpiresAbsolute = ...
0
votes
0answers
15 views
set some values in borwser cache
Want to set a image in cache. How can I set some values in browser cache. I think, DOM cache is not useful for my purpose. Need is if someone reload a page, cached image come from cache and it is not ...
0
votes
5answers
71 views
How do I set caching headers for my CSS/JS but ensure visitors always have the latest versions?
I'd like to speed up my site's loading time in part by ensuring all CSS/JS is being cached by the browser, as recommend by Google's PageSpeed tool. But I'd like to ensure that visitors have the ...
1
vote
2answers
26 views
Will my users old cache file not render my new design correctly?
I may be wrong by saying it is my users browser but i have a question when updating my online store.
I have recently redesigned my homepage store which i am currently in the middle of completing.
It ...
0
votes
1answer
71 views
What is the difference between using the back-button to return to a page and hitting the refresh button while on that page? (for jGrowl)
There is a bug I am researching that during the process I discovered different results between the following two scenarios:
Scenario 1) A link with no get or post data brings me to page A. On page A ...
2
votes
2answers
137 views
Disable autofill on a web form through HTML or JavaScript?
Is there a way to disable autofill in Chrome and other browsers on form fields through HTML or JavaScript? I don't want the browser automatically filling in answers on the forms from previous users of ...
0
votes
2answers
85 views
Let browsers cache my dynamic PHP stylesheet
I want to create a stylesheet in a PHP file (styles.php), such that the stylesheet becomes dynamic, depending on the user who requests is. For each individual user the stylesheet is constant, and ...
0
votes
0answers
101 views
caching content in Web browser in MVC3
Want to cache the contents of CSS and script folder in the MVC3 project .. searching on the internet, have found solution of adding web.config file in those folders. but it does not seem to work . ...
1
vote
2answers
56 views
Silverlight only makes one http request
I'm working on a Silverlight app which among other things makes Http requests in which it uploads a zip file from the web server. The zip file is picked up from the web server every n:th minute, a ...
0
votes
0answers
22 views
Direct browser to cache only stylesheets, javascripts and images
I am not knowledgeable on the way how browsers cache a website and what elements in a website they cache. I am wondering if there is any way to achieve this. I am looking for any form of solution ...
0
votes
1answer
147 views
Delete Cache Of Browsers With VB6
I want to delete browsers caches ( History , Cookies , Temp Dir , saved Passwords and Form Data ) with VB6 ( Visual basic : version 6 )
if i know where those stored in my PC i can do it . ( or ...
0
votes
1answer
280 views
how to prevent user to go back to logged in pageusing next button on login page
I want to prevent user to use next button to go back to logged in pages after using back button to go to login page.
For eg:
there are two pages login and default
first time user enters his login ...
0
votes
1answer
87 views
Load ALL css and javascript resources in a hidden iframe that will be used by inner pages, in the homepage
Hello Good Day Everyone!
My problem is that we have created a website that uses too many iframes.
The iframes or the loaded html in the iframes uses a common jQuery, different jscripts, and ...
0
votes
1answer
82 views
Enabling Caching for certain css and js files in MVC3
Would like to inquire if there is any method to Enabling caching for certain files/folder in ASP.Net MVC3
The target files are some CSS and Jquery js files which are likely not to change for a long ...
0
votes
0answers
61 views
Clear and turn off browser caching when classic answers doesnt works
I want to turn off caching in browser (because when I insert into database new data, browser select the cached data until I dont use refresh).
I tried to use:
header("Expires: Mon, 26 Jul 1997 ...
0
votes
1answer
92 views
What's default value of cache-control?
My problem is: sometimes browser over-cached some resources even if i've already modified them. But After F5, everything is fine.
I studied this case whole afternoon. Now i completely understood the ...
2
votes
1answer
54 views
Browser is caching JavaScript file where it shouldn't [closed]
We've implemented a way to go around js caching issue when deploying new app version but it seems that it doesn't work as expected. Our approach is to change timestamp like here:
...
2
votes
0answers
137 views
Browser Caching dynamic content using PHP output buffer and ETag
I have been researching some strategies to optimize a web application I am working on particularly related to web browser caching and dynamic data. Since potentially the same dynamic content may be ...
0
votes
1answer
35 views
Force fresh content, not from the cache
I used the following code in the htaccess to put my site under maintenance and show the visitors maintenance.html.
#Options +FollowSymlinks
#RewriteEngine on
#RewriteCond %{REQUEST_URI} ...
0
votes
5answers
277 views
How to disable browser cache?
I have an ajax function (in jquery) which update the html. It's ok.
Now, When I tap enter in the adress bar (to refresh), my html is not updated (old content).
Whereas, when I do cmd + R, my html is ...
0
votes
0answers
159 views
Browser cache expires correctly with Chrome, but not with Firefox or IE9
I have searched for answers to this problem, but most questions seem to be the reverse of mine, i.e., cache does not work at all in other questions. My problem is that Chrome handles image caching as ...
0
votes
0answers
23 views
Forcing browser to reload all images way - is this way browser safe?
Alright assume this is the image url
http://static.monstermmorpg.com/images/maps/Lily-Pond.png
Now i am going to make a global variable and change it whenever i change the image itself.
So it will ...
0
votes
2answers
194 views
How do I correctly ENABLE browser caching using codeigniter?
Every time I do I search on this I get information about how to disable the browser cache.
Never anything about enabling it.
How do I get the back button to use the cache and not regenerate the page?
...
1
vote
1answer
486 views
Java applet and cache issue
I have an applet shown in a webpage with
<applet code="foo.class"></applet>
When i change the foo.class file in the server and access the page, it shows the older version.
If I empty ...
1
vote
3answers
268 views
Cookies and cache, how to clean them from command line on Linux and Mac?
For Chrome and Mozilla, mainly,
is there a way to clear the cookies and the cache from command line on Mac and Linux?
When I'm developping, frequently I have to clear the cache and cookies, I would ...
1
vote
0answers
305 views
Avoiding page cache on back button press
I've done my homework on this and read these:
easiest way to prevent the back button of your browser from showing secure data after a user logs out?
Clear cache on back press to prevent going back ...
0
votes
1answer
62 views
Does web browser treat css/js/img different from text
I have a webpage and in it some images etc. I clear my cache and hit the URL. The page request has the following response headers:
Cache-Control:public, max-age=600
Connection:keep-alive
...
3
votes
2answers
114 views
Can you force a browser to always fetch the cached files and not do a round trip for a 304?
As I understand, this is how browser caching works. Assuming, a far future header has been set to let's say a year and foo.js is set to be cached. Here are some scenarios:
First visit to the page, ...
0
votes
0answers
123 views
Browser Caching for javascript files
I wanted to clarify my concept on browser caching.So,I did a small test of caching a javascript file.
I have used IIS 7.5 ASP.Net and Firefox.
Following are my findings.I need some clarification on ...
0
votes
1answer
76 views
How can I clear browser's cache?
I have a problem with cache. When I visit my site I see the old topic until I hit ctl+f5 to update the page. Is there any way to prevent browser from storing cache?
I have used these meta:
<meta ...
3
votes
7answers
287 views
Why does Firefox sometimes cache my CSS & Javascript code, even though it has changed?
On my product site, Firefox sometimes "doesnt detect" changes in my CSS & Javascript code. Rather it loads the old versions, so it seems that I need to clear the cache. In a situation like this, ...
1
vote
0answers
37 views
Cache browser images if no file extension provided
When a browser requests a jpg and the server returns the data but not as a reference to a jpg file but rather sends the jpg data itself, is it possible for the browser to cache the data?
For example:
...
0
votes
1answer
176 views
Re-rendering SVGs from the cache. Recomputed or remembered?
I can't find an answer to this question, when the browser takes an SVG from the cache does it re-compute the xml or not, does it store the 'IMAGE' that it has already created? (How?)
I would've have ...
0
votes
2answers
196 views
In Javascript how do you check if the User has a Cached version of a file? [duplicate]
Possible Duplicate:
How to detect when XHR returns a cached resource?
I built an auto loader that only loads a javascript file if it has not already been loaded on this page using jquery ...
0
votes
0answers
150 views
How to clear browser (All Browsers) cookies, caches, history etc in android by programming.?
I am making an app for android to increase internet speed by cleaning browser's cookies, cache, history etc. The main problem is to clean them by using programming.
I know that there are a lot of ...
0
votes
0answers
69 views
cache issue with private networking stream
I am wondering if possible what might the most efficient way be to resolve the following cache problem:
I recently finished a private networking stream a part of my CMF that utilizes the codeigniter ...
2
votes
2answers
136 views
Does Browser's caching take into account Parameters in the URL? (ASPX page)
I want a particular aspx page cached in the browser. I have valid reasons for having it as an ASPX page and I need the caching on the browser.
Now, on the server cache, I can vary the caching by ...





