Application cache reinitiates download on every page load (even if manifest file is unchanged)

in safari & chrome my application cache initiates a new download only when the manifest file has been update (as expected). In FF5.0 it initiates the download on EVERY page load.
When I view the data @ ''about:cache > Offline cache device > List Cache Entries'' I notice all of the pages listed are "0 bytes" in size, while the CSS/JS/images are given correct size data...
Is this a bug or has anyone dealt with this issue before?

Anybody? This is a bit of a blocker for me :(

Similar Messages

  • WLS 9.2.2: JSP recompile for every page load with JAR'ed tag files

    I have a small custom tag library of three tag files. With the server running in development mode and the tag files in a JAR (included in WEB-INF/lib), the server appears to be doing a JSP recompile on every page load. However, it only compiles on the first page load if the tag files are included in WEB-INF/tags (no JAR). Also, running the server in production mode with the JAR'ed tag files avoids the recompile for every page load.
              Is that how the server should behave?
              For whatever it's worth, I'm also using Eclipse 3.3.2 with WTP and WebLogic Server Tools 1.1.2. The server is running the Sun JVM (1.5_10).

    Vikram,
              I went back and created a simple example to test. Below I'm posting the Java source code generated from the two relevant files: index.jsp, and hello.tag.
              __index.java:
              package jsp_servlet;
              import java.io.*;
              import java.util.*;
              import javax.servlet.*;
              import javax.servlet.http.*;
              import javax.servlet.jsp.*;
              import javax.servlet.jsp.tagext.*;
              public final class __index extends weblogic.servlet.jsp.JspBase implements weblogic.servlet.jsp.StaleIndicator {
              private static void _releaseTags(javax.servlet.jsp.tagext.JspTag t) {
              while (t != null) {
              if(t instanceof javax.servlet.jsp.tagext.Tag) {
              javax.servlet.jsp.tagext.Tag tmp = (javax.servlet.jsp.tagext.Tag)t;
              t = ((javax.servlet.jsp.tagext.Tag) t).getParent();
              try {
              tmp.release();
              } catch(Exception ignore) {}
              else {
              t = ((javax.servlet.jsp.tagext.SimpleTag)t).getParent();
              public boolean _isStale(){
              boolean stale = staticIsStale((weblogic.servlet.jsp.StaleChecker) getServletConfig().getServletContext());
              return _stale;
              public static boolean _staticIsStale(weblogic.servlet.jsp.StaleChecker sci) {
              if (sci.isResourceStale("/index.jsp", 1207926672370L ,"9.2.2.0","America/Denver")) return true;
              if (sci.isResourceStale("/null", 1207926783245L ,"9.2.2.0","America/Denver")) return true;
              return false;
              private static void _writeText(javax.servlet.ServletResponse rsp, javax.servlet.jsp.JspWriter out, String block, byte[] blockBytes)
              throws java.io.IOException {
              if (!_WL_ENCODED_BYTES_OK || _hasEncodingChanged(rsp)){
              out.print(block);
              } else {
              ((weblogic.servlet.jsp.ByteWriter)out).write(blockBytes, block);
              private static boolean _hasEncodingChanged(javax.servlet.ServletResponse rsp){
              String encoding = rsp.getCharacterEncoding();
              if ( "ISO-8859-1".equals(encoding) || "Cp1252".equals(encoding) || "ISO8859_1".equals(encoding) || "ASCII".equals(encoding) ){
              return false;
              if (_WL_ORIGINAL_ENCODING.equals(encoding)) {
              return false;
              return true;
              private static boolean WLENCODED_BYTES_OK = true;
              private static final String WLORIGINAL_ENCODING = "ISO-8859-1";
              private static byte[] _getBytes(String block){
              try {
              return block.getBytes(_WL_ORIGINAL_ENCODING);
              } catch (java.io.UnsupportedEncodingException u){
              WLENCODED_BYTES_OK = false;
              return null;
              private final static String wlblock0 ="<!--\n * $Id$\n-->\n \n<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \n\t\t\"http://www.w3.org/TR/html4/loose.dtd\">\n \n";
              private final static byte[] wlblock0Bytes = getBytes( wl_block0 );
              private final static String wlblock1 =" \n \n\t";
              private final static byte[] wlblock1Bytes = getBytes( wl_block1 );
              private final static String wlblock2 ="\n";
              private final static byte[] wlblock2Bytes = getBytes( wl_block2 );
              private final static String wlblock3 ="\n\n<html>\n<head>\n\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\" />\n\n\t<title>Tag File Test</title>\n</head>\n<body> \n\t";
              private final static byte[] wlblock3Bytes = getBytes( wl_block3 );
              private final static String wlblock4 ="\n</body>\n</html>";
              private final static byte[] wlblock4Bytes = getBytes( wl_block4 );
              static private javelin.jsp.JspFunctionMapper jspxfnmap = javelin.jsp.JspFunctionMapper.getInstance();
              public void _jspService(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
              throws javax.servlet.ServletException, java.io.IOException {
              javax.servlet.ServletConfig config = getServletConfig();
              javax.servlet.ServletContext application = config.getServletContext();
              javax.servlet.jsp.tagext.JspTag _activeTag = null;
              Object page = this;
              javax.servlet.jsp.JspWriter out;
              javax.servlet.jsp.PageContext pageContext = javax.servlet.jsp.JspFactory.getDefaultFactory().getPageContext(this, request, response, null, true , 8192 , true );
              response.setHeader("Content-Type", "text/html; charset=ISO-8859-1");
              out = pageContext.getOut();
              javax.servlet.jsp.JspWriter _originalOut = out;
              javax.servlet.http.HttpSession session = request.getSession( true );
              try {;
              response.setContentType("text/html; charset=ISO-8859-1");
              {_writeText(response, out, _wl_block0, _wl_block0Bytes);}
              {_writeText(response, out, _wl_block1, _wl_block1Bytes);}
              {_writeText(response, out, _wl_block2, _wl_block2Bytes);}
              {_writeText(response, out, _wl_block3, _wl_block3Bytes);}
              jsp_servlet._tags.__hello_tag __tag0 = null ;
              int __result__tag0 = 0 ;
              if (__tag0== null )__tag0 = new jsp_servlet._tags.__hello_tag ();
              __tag0.setJspContext(pageContext);
              __tag0.setParent(null);
              activeTag=_tag0;
              __tag0.doTag();
              {_writeText(response, out, _wl_block4, _wl_block4Bytes);}
              } catch (Throwable __ee){
              if(!(__ee instanceof javax.servlet.jsp.SkipPageException)) {
              while ((out != null) && (out != _originalOut)) out = pageContext.popBody();
              releaseTags(activeTag);
              pageContext.handlePageException(__ee);
              __hello_tag.java:
              package jsp_servlet . _tags ;
              import java.io.*;
              import java.util.*;
              import javax.servlet.*;
              import javax.servlet.http.*;
              import javax.servlet.jsp.*;
              import javax.servlet.jsp.tagext.*;
              public final class __hello_tag extends javax.servlet.jsp.tagext.SimpleTagSupport {
              private static void _releaseTags(javax.servlet.jsp.tagext.JspTag t) {
              while (t != null) {
              if(t instanceof javax.servlet.jsp.tagext.Tag) {
              javax.servlet.jsp.tagext.Tag tmp = (javax.servlet.jsp.tagext.Tag)t;
              t = ((javax.servlet.jsp.tagext.Tag) t).getParent();
              try {
              tmp.release();
              } catch(Exception ignore) {}
              else {
              t = ((javax.servlet.jsp.tagext.SimpleTag)t).getParent();
              public static boolean _staticIsStale(weblogic.servlet.jsp.StaleChecker sci) {
              if (sci.isResourceStale("/META-INF/tags/hello.tag", 1207926783175L ,"9.2.2.0","America/Denver")) return true;
              return false;
              protected static final String tagxTagInfo = "-84,-19,0,5,116,0,5,104,101,108,108,111,116,0,29,106,115,112,95,115,101,114,118,108,101,116,46,95,116,97,103,115,46,95,95,104,101,108,108,111,95,116,97,103,116,0,5,101,109,112,116,121,112,112,112,112,119,5,0,0,0,0,3,116,0,10,106,115,112,67,111,110,116,101,120,116,119,1,0,116,0,28,106,97,118,97,120,46,115,101,114,118,108,101,116,46,106,115,112,46,74,115,112,67,111,110,116,101,120,116,113,0,126,0,4,119,1,1,112,119,2,1,0,112,112,116,0,7,106,115,112,66,111,100,121,119,1,0,116,0,36,106,97,118,97,120,46,115,101,114,118,108,101,116,46,106,115,112,46,116,97,103,101,120,116,46,74,115,112,70,114,97,103,109,101,110,116,113,0,126,0,6,119,1,1,112,119,2,1,0,112,112,116,0,6,112,97,114,101,110,116,119,1,0,116,0,31,106,97,118,97,120,46,115,101,114,118,108,101,116,46,106,115,112,46,116,97,103,101,120,116,46,74,115,112,84,97,103,113,0,126,0,8,119,1,1,112,119,2,1,0,112,112,119,4,0,0,0,0,112,112,";
              protected JspContext jspContext ;
              public void setJspContext ( JspContext ctx ){
              super . setJspContext ( ctx );
              java.util.List nested = null ;
              java.util.List atBegin = null ;
              java.util.List atEnd = null ;
              this.jspContext = new javelin.jsp.JspContextWrapper(ctx, nested, atBegin, atEnd, null);
              }public JspContext getJspContext() {
              return this.jspContext;
              private java.io.Writer jspxsout;
              private javax.servlet.jsp.tagext.JspTag _activeTag;
              private static void _writeText(javax.servlet.ServletResponse rsp, javax.servlet.jsp.JspWriter out, String block, byte[] blockBytes)
              throws java.io.IOException {
              if (!_WL_ENCODED_BYTES_OK || _hasEncodingChanged(rsp)){
              out.print(block);
              } else {
              ((weblogic.servlet.jsp.ByteWriter)out).write(blockBytes, block);
              private static boolean _hasEncodingChanged(javax.servlet.ServletResponse rsp){
              String encoding = rsp.getCharacterEncoding();
              if ( "ISO-8859-1".equals(encoding) || "Cp1252".equals(encoding) || "ISO8859_1".equals(encoding) || "ASCII".equals(encoding) ){
              return false;
              if (_WL_ORIGINAL_ENCODING.equals(encoding)) {
              return false;
              return true;
              private static boolean WLENCODED_BYTES_OK = true;
              private static final String WLORIGINAL_ENCODING = "ISO-8859-1";
              private static byte[] _getBytes(String block){
              try {
              return block.getBytes(_WL_ORIGINAL_ENCODING);
              } catch (java.io.UnsupportedEncodingException u){
              WLENCODED_BYTES_OK = false;
              return null;
              private final static String wlblock0 ="\n<center><h1>Hello World</h1></center>";
              private final static byte[] wlblock0Bytes = getBytes( wl_block0 );
              static private javelin.jsp.JspFunctionMapper jspxfnmap = javelin.jsp.JspFunctionMapper.getInstance();
              public void doTag() throws JspException, java.io.IOException {
              javax.servlet.jsp.PageContext pageContext = (javax.servlet.jsp.PageContext) getJspContext();
              javax.servlet.http.HttpServletRequest request = (javax.servlet.http.HttpServletRequest) pageContext.getRequest ();
              javax.servlet.http.HttpServletResponse response = (javax.servlet.http.HttpServletResponse) pageContext.getResponse();
              javax.servlet.http.HttpSession session = pageContext.getSession();
              javax.servlet.ServletContext application = pageContext.getServletContext();
              javax.servlet.ServletConfig config = pageContext.getServletConfig();
              javax.servlet.jsp.JspWriter out = jspContext.getOut();
              javax.servlet.jsp.tagext.JspTag _activeTag = null;
              try {
              {_writeText(response, out, _wl_block0, _wl_block0Bytes);}
              } catch ( Throwable t ){
              if( t instanceof javax.servlet.jsp.SkipPageException )
              {throw (javax.servlet.jsp.SkipPageException)t;}
              if( t instanceof java.io.IOException )
              {throw (java.io.IOException)t;}
              if( t instanceof IllegalStateException )
              {throw (IllegalStateException)t;}
              if( t instanceof javax.servlet.jsp.JspException )
              {throw (javax.servlet.jsp.JspException)t;}
              throw new javax.servlet.jsp.JspException(t);
              finally {
              ((javelin.jsp.JspContextWrapper)jspContext).syncEndTagFile();
              Edited by Stephen Davison at 04/11/2008 9:02 AM

  • How to refresh canvas on every page load?

    Hi,
    I have a <canvas> added for electronic signature. Electronic Signature using SAPUI5?
    As there is no UI5 control I am adding the canvas from controller to xml view having  <core:HTML id="signature" width="100%" />
    When the page is loaded for the first time it works  fine but on successive load of the page, canvas is not being refreshed with different signature. I am getting data from backend as OData but I cant bind the property so that on model change canvas would refresh.
    How to fix the issue of canvas refresh on every page load?

    Hi Dennis,
    There is a slight error in your code: the last Undo button is missing a closing } for the press function, and the 'enabled' property contains a rogue comma, but other than that, kudo's for your work here!
    Rashmi, it seems like Dennis Seah has created the perfect case on why you should consider writing your own custom control instead of using the standard <canvas> element

  • Browsers Infected and Every Page Loads With Ad Banner

    Evidently something I installed on my computer has impacted my browsers with some malware or virus.  Every page that I now load in any of my browsers (Safari, Firefox, and Chrome) comes with a small white strip across thr top of the page with this ad:  "Make Money At Home http://www.PossibilityNow.com Join Now For The Best Money Making Opportunity For 2014. Go Now."  There is an x to click on to get rid of the box, but I am trying to figure out how to get rid of this.  I installed a few pieces of software yesterday trying to be able to download flash video from Safari and one of them did this to me.  The problem is that I'm not sure which programs I installed as I was playing around with a few to try and find one that worked!  Is there a way to find this specific software that is doing this to my browsers?  Thanks.

    There's likely something similar for Chrome and Firefox, but I suggest checking exactly what you installed, in case something else that's more hidden was also placed on your computer.

  • POWL: Refresh the cache results of POWL during page load.

    Hi Friends,
    I am using a feeder class for my POWL. Whenever the user clicks opens the POWL, he sees the cached data/results and he is expected to do a manual refresh to see current/new data. I want to eliminate this by refreshing the cache during the page load itself and show user current data. I already know about the exporting parameter in handle_action method which is used to do refresh. But it does not work in this case.
    Pls help.

    Hello Saud,
    In which release you are? in new release you can do refresh by personalization where options are there.
    There are other options also to refresh
    1) By passing URL parameter refreshA=X it will refresh all queies when loading
    2) By passing refreshq=X, it will refresh the current query
    best regards,
    Rohit

  • How to load the original manifest file

    Hi I wrote an application. Is lanunched by webstart.
    In the original jar file is set an property like a Program-version:1.5
    after launching the application I can fread resources from "/resources/images/myimage", but I Cant read the from the manifest file.
    just 2 properties: Manifest version and oanother one.
    What can I do?

    You have right! That is one of the advantanges of saying a lot
    of things - I am regularly wrong, but the number
    of times I am right, outnumbers them!
    ( Also, when I am wrong, I get to find out..
    in public! ;)
    Image url =
    jar:http://www.theWebServer.com/file/path/myApplicatio
    n.jar!/resources/images/logo.png
    Manifest url =
    jar:file:/C:/Program%20Files/Java/jre1.6.0/lib/javaws.
    jar!/META-INF/MANIFEST.MF
    Is not the same! :-))
    It is true: The first time when I want to read the
    manifest file. And I never imagene before: I read my
    application image, and I cant read the same manifest
    :-))Good. It is not good that they are 'not the same',
    but that you are beginning to understand some
    of the traps and pitfalls, and ways to find out what
    is going wrong. That is progress.
    But if in my main static method if I call:
    Thread.currentThread().getContextClassLoader().getReso
    urce("/resources/images/logo.png")
    this URL is null !!
    Why?
    I know I should learn something about classloaders,
    but when is changed the jnlp loader to a "normal"
    classloader. when I launch only the .jar file I have
    no problems, but I need webstart! :-)I am surprised it worked from within main(),
    in a jar file - it usually would not work for loose
    classes off the local file system (but that is a
    whole other story, to do with classloaders).
    In any case, I think Caffeine0001 recently posted
    some source that should help out, here. Check out
    the source example he(/she) posted in this thread..
    http://forum.java.sun.com/thread.jspa?messageID=4510193
    It shows a way to find the actual file-system location
    of a resource (your image, in this case), from which we
    might construct an URL directly to the MANIFEST.MF
    that you actually need.
    Have a look/play with that source, and see if you
    can include it into your code, so that we can see
    where the image is being cached to.

  • Firefox freezes/script errors with every page load

    Have had this issue for about a week now where every single page I load freezes for 20-30 seconds and comes back with a script error of some kind asking me to either stop it or continue on. Appears to be Java related but have tried everything to clear the errors (cleared Java cache, Reset Firefox, ran TFC) and they are still coming up.
    Both Chrome and IE work fine loading the same pages.
    Troubleshooting info from FF below if it helps
    Thanks,
    Application Basics
    Name: Firefox
    Version: 31.0
    User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0
    Crash Reports for the Last 3 Days
    All Crash Reports (including 3 pending crashes in the given time range)
    Extensions
    Graphics
    Adapter Description: NVIDIA GeForce GT 240
    Adapter Drivers: nvd3dumx,nvwgf2umx,nvwgf2umx nvd3dum,nvwgf2um,nvwgf2um
    Adapter RAM: 512
    Device ID: 0x0ca3
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.2.9200.16571)
    Driver Date: 1-18-2013
    Driver Version: 9.18.13.1106
    GPU #2 Active: false
    GPU Accelerated Windows: 1/1 Direct3D 10
    Vendor ID: 0x10de
    WebGL Renderer: Google Inc. -- ANGLE (NVIDIA GeForce GT 240 Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote: false
    AzureCanvasBackend: direct2d
    AzureContentBackend: direct2d
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    Important Modified Preferences
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.frecency_experiment: 1
    browser.places.smartBookmarksVersion: 7
    browser.sessionstore.upgradeBackup.latestBuildID: 20140716183446
    browser.startup.homepage_override.buildID: 20140716183446
    browser.startup.homepage_override.mstone: 31.0
    dom.mozApps.used: true
    extensions.lastAppVersion: 31.0
    gfx.direct3d.last_used_feature_level_idx: 0
    network.cookie.prefsMigrated: true
    places.history.expiration.transient_current_max_pages: 104858
    plugin.disable_full_page_plugin_for_types: application/pdf
    plugin.importedState: true
    privacy.sanitize.migrateFx3Prefs: true
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.6
    Version in use: 4.10.6
    NSS
    Expected minimum version: 3.16.2 Basic ECC
    Version in use: 3.16.2 Basic ECC
    NSSSMIME
    Expected minimum version: 3.16.2 Basic ECC
    Version in use: 3.16.2 Basic ECC
    NSSSSL
    Expected minimum version: 3.16.2 Basic ECC
    Version in use: 3.16.2 Basic ECC
    NSSUTIL
    Expected minimum version: 3.16.2
    Version in use: 3.16.2
    Experimental Features
    ---------------------

    Hi,
    I am sorry to hear about Firefox not responding on many websites. Please try to change the max time a script can load with these noted config preferences: [https://support.mozilla.org/en-US/kb/warning-unresponsive-script] The default preference may be hitting the limit?
    If it is java related, have you reinstalled Java or checked if it was up to date? [https://www.mozilla.org/en-US/plugincheck/]

  • Why do I have to keep "Stopping + Refreashing" every page load?

    Lately it seems every time I go to a new page I Safari stops for about 20 or 30 secs before it loads unless I hit stop and then refreash.
    Any ideas Please?
    Thanks tons
    T

    Thanks Tom.
    Here's suggestions for both Airport Express and your Network settings:
    Airport Express:
    Your Intel machine has an Airport Extreme card. Not sure about your G4 machines. To determine if they do, click on the Apple Menu for each machine (Apple Logo in the upper left of your screen) and select "about this Mac". Select "more info". When the Apple Profiler opens, select Airport Card on the left. If the description says "Airport Extreme", the following suggestion applies.
    For each machine -first, open AirPort Admin Utility.app in your Utilities folder.
    Double click your Airport Unit (if it doesn't appear in the list, select "rescan"). Once the panel opens, select the "Airport panel". Down the bottom, in the 'mode' drop down menu, change the setting to 802.11g only. If you do not have an Airport Extreme card, change the setting to 802.11b only.
    Also, click on the Internet panel. Mine looks like this:
    In the Airport panel, click on base station options:
    My panel looks like this:
    Make changes as necessary.
    When you are complete, select "update". Your Airport unit will reset. Wait for the green light to appear.
    If still having a problem with your internet connection on any of the machines, these two suggestions from MacFixit may help:
    Disable Remote configuration - If you are experiencing inordinately slow transfer speeds through your AirPort Base station though a strong signal exists, you may want to try this workaround which involves disabling remote configuration on AirPort Base Stations upgraded with the firmware included in the AirPort 4.2 updater package -- resulting in the removal of a potential speed bottleneck introduced with the new firmware.
    This workaround is accomplished via the following process:
    Open the AirPort Admin Utility (located in Applications/Utilities)
    Select the desired Base Station from the availability list
    Go to the "Base Station Options" tab
    Click on "WAN Ethernet Port"
    Uncheck the box next to "Enable Remote Configuration."
    Save your AirPort Base Station settings
    Sometimes, a simple hard reset can help: Hard Resets of Airport Express
    Network connection suggestions:
    Network Panel - these suggestions seems to help:
    Go to the System Preferences>Network panel
    - Location - set up a personal location by clicking on the drop down menu and selecting "add a location". Use a name familiar to you. Once established, select "apply".
    - Next, click on the "Show" drop down menu and select Network Port Configurations. Only Airport ought to be checked, unless you are using a Bluetooth device. Move Airport to the top of the list (you can drag it). Select "apply".
    - Back to the "Show" menu, select "Airport". Click on the TCP panel. There, enter 208.67.222.222 and
    208.67.220.220 (separate lines) in the DNS servers box and select "apply". Note: If you use Verizon, best code to use is 4.2.2.2. Also, some other Internet Providers have their own specific codes, such as Comcast. If in doubt, check with your Internet Provider.
    Creating a personal location, plus adding the DNS codes seems to speed things up. Otherwise, the "automatic" function has a tendency to "search" for available locations creating lag.
    Lastly, in the Finder for each machine, go to your Utilities folder and select "Terminal". Once the screen is open enter lookupd -flushcache (copy/paste this) and press return. This clears out the DNS cache. Once done, quit Terminal.
    Post back and let me know how this worked out.
    iMac G5 Rev C 20" 2.5gb RAM 250 gb HD/iBook G4 1.33 ghz 1.5gb RAM 40 gb HD   Mac OS X (10.4.8)   LaCie 160gb d2 HD Canon i960 printer, Airport Express (2 units)

  • Internet speed issues.  Fast Downloads, Really Slow Page Loads.

    Hi,
    I have DSL and I get really big delays when I try to open a page, but I get really fast Downloads. What could cause this. I did notice an error in my console that says;
    mDNSResponder: Repeated transitions for interface en1 (192.168.1.101); delaying packets by 5 seconds
    Could this have something to do with it? by the way, my PC on the same network does not do this. It has to be an issue with my powerbook.
    Any suggestions?
    adrian heredia

    Hi,
    I have DSL and I get really big delays when I try to
    open a page, but I get really fast Downloads. What
    could cause this.
    Bad DNS servers. Go to your network configuration and manually enter the DNS server address supplied by your ISP.
    I did notice an error in my
    console that says;
    mDNSResponder: Repeated transitions for interface en1
    (192.168.1.101); delaying packets by 5 seconds
    Could this have something to do with it?
    Probably not. That's a bonjour issue.

  • Where is my 'open link in new tab' option when right-clinking a link? and... why does every page load twice? and... why do i get 'internet explorer cant open link' errors when using firefox? and... why doesnt the red 'x' stop load icon work anymore? i jus

    i have all the issues stated in my question as of this morning. they werent there last night. WTF happened to my beloved firefox? BTW,
    I got an amd dual core 4000, nvidia gtx 9800, 4 gigs ram, running on windows xp sp3.
    BTW, windows updated last night, and thats when i got the problems
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; WWTClient2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; Creative AutoUpdate v1.40.01)

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • Download them all page loads with my home page on startup, how can i get rid of the download them all page?

    firefox 15.0.1
    windows xp
    * Shockwave Flash 11.4 r402
    * Adobe PDF Plug-In For Firefox and Netscape 10.1.4
    * DRM Netscape Network Object
    * DRM Store Netscape Plugin
    * Npdsplay dll

    It sounds like you accidentally had this page added to your "home pages" - you can reset the default Firefox home page or change your home page with the instructions in this article - [[How to set the home page]]

  • Slow page loading even though speed test is fine

    Hi all, I have noticed that pages and content are very slow to load over the last few days. I ran the speed test and the results are fine (37mb down 8mb up). I thought it may have been Firefox because it can play up. After testing with Chrome and IE9 I can confirm it is definitely not right.
    Anyone else having problems? I am on the Macclesfield exchange. Connected via ethernet directly to the HH3.

    Infinity fitted Tuesday. 37.8mb down, 1.8mb up. Pages are slower to load than before my upgrade ! As a non techy with computers, you must excuse any embarrassing blunders with technical issues, but, I have found if I use AltaVista instead of Google, everything is fine. If I type fast into the search bar on Google it can't keep up with me ! If I try to deleate the www entry a character at a time, it goes in fits and starts as it receeds back across the screen. I had no problems with the site till the upgrade. Is it just a problem with Google and the increased speeds or is that too simple an answer !!
    RAYH
    RAYH

  • When downloading a Web page, Firefox includes ALL information on site, plus the Web page. I am forced to eliminate Firefox and return to Safari for saving individual page.

    For further info, I have Safari as my Mac provider for the internet, and although I click on it, Firefox takes over when I wish to download a Web page. It saves two files--a folder, in which all kinds of massive-like data will appear, and a file with some of the information I wish to save from a page or two.
    I've tried to select only the page I wish to save in several ways. However, nothing has worked until I take Firefox out of "Applications" and put it in the trash basket.
    Ideally, I'd like Safari to be my default provider, and I'd like Firefox to be my secondary provider.
    Please advise.
    Arline Ostolaza
    [email protected]

    Did you try to save the page as "Web Page, HTML only" instead of "Web Page, complete", if that is what you want ?

  • CQ5 Client Context stores on page load undefined

    I have noticed on several page loads, even on reset,  the client context values for default stores are initially undefined.  What is the explanation for that occuring.

    Hello,
    As per my experience most of the time the values shows as undefined when it actually not set in store. some of the time i also experience when store component shows undefined eventhough data stored in stores. Most of the time it works fine with context reset option which actually refresh the context cached data from store and for some time you can say its because of how stores implemented (persistent store Vs not persistent store) and that probably you can validate via going to edit page of client context component page http://<host>:<port>/etc/clientcontext/default/content.html.
    And if your case is more wierd than this then check with day care.
    Thanks,
    Pawan

  • Bittorent FAQ page loads on startup -not my homepage

    Each time I start Firefox, a bittorent FAQ page loads even after I have removed all bittorrent programs- google is my homepage, not bittorent. How can I make this page go away?
    == This happened ==
    Every time Firefox opened
    == I had used the bittorrent FAQ page one time

    Such prefs shouldn't be in user.js as they will cause problems as you've noticed.
    Did you copy other prefs from prefs.js to user.js?
    You should be cautious with doing that and only place prefs in user.js that are either changed via the user interface in Tools > Options or prefs that can't be set via the user interface, but never prefs that are set automatically like the first run prefs for extensions. Even prefs set by extensions can cause problems if an extension updates.

Maybe you are looking for

  • ITunes store "Purchased" files do not show up on my hard drive

    I recently was thumbing through my files in iTunes, all of my "itunes store bought items" will not play. I also cannot find any of my "Purchased" files on my hard drive. When i try to play the song, it goes to the "Cannot find file" do you want to lo

  • Trying to understand Lenovo support - I just need a basic question answered

    I have a few Thinkstation S20 desktops that are now out of warranty and I am trying to re-purpose them for lab machines.  These desktops do not have any Windows 7 product key stickers on them and I would like to put Windows 7 Pro on them.  I assume t

  • Problem with DC to DC communication

    Hi All, I have totally 3 DC's. first and second DC's have a button. On click either of these buttons in 1st and 2nd DC's, 3rd DC application should open. So user can come from either first DC or second DC. Depending on where the request came from i h

  • Apple Outlook DAV Config crash when Icloud synch

    When I run ICLOUD and try to synch Contacts, calendars, notes, etc. it copies the items and then crashes with the above error message. I deleted the ICLOUD program and downloaded it and re-installed it but the same thing happens. How do I get this fi

  • No progress seen in OATM migration

    Hi Gurus, I am performing OATM migration on my 11.5.10.2 applications with 10.2.0.4 database. I see the status is 99.96% completed - Generating Migration progress report for all schemas. Please wait... Migration Progress Report Report Date : April 13