I'v just downloaded Firefox4, but still seem to be on Firefox3.5.6

I've just clicked onto your message that keeps flagging up whenever I go onto the internet, to "click here to download Firefox 4." I clicked on and the download took place, it took about a minute or so to do, but I still seem to be on Firefox 3.5.6. Can you help please?

It sounds like what you did was to download the file, but not run it.
The easiest way to update Firefox is to go to '''Help '''| '''Check For Updates'''.
After you update, please visit the [http://www.mozilla.com/en-US/plugincheck/ Plugins Check] page and update where necessary.

Similar Messages

  • How do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

    how do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

    how do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

  • Want to playback archived webcast recorded using Cisco webex recording. Downloaded Cisco webex meeting software from apple download page but still cannot play recording

    Want to playback archived webcast recorded using Cisco webex recording. Downloaded Cisco webex meeting software from apple download page but still cannot play recording

    You will probably find better support about the features of the Webex app on their support page here: http://www.webex.com/products/web-conferencing/mobile-iphone-ipad-faq.html
    Doesn;t look like it's listed as a feature of the iPad app.

  • I have just downloaded firefox but when I try to access the internet it comes up with the message "firefox could not download the search plugin from ...

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    I have just downloaded firefox but when I try to access the internet it comes up with the message "firefox could not download the search plugin from: http://toolbar.inbox.com?search_plugin_firefosx.aspx.tbid=801398language=en" Can you help please
    == User Agent
    ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.2.0; FunWebProducts; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)

    Uninstall the Inbox Toolbar, following steps here:
    http://toolbar.inbox.com/faq.aspx?faqid=2876&faqmod=WST_Install#1
    Then retry opening Firefox.
    You can also try opening Firefox in [[Safe Mode]] (use Continue in Safe Mode first).
    If that works, reopen Firefox Safe Mode, but use the dialog option to '''Restore default search engines''' as shown at https://support.mozilla.com/en-US/kb/Safe+Mode#Safe_Mode_window and press the '''Make changes and restart''' button.

  • I have just downloaded Yosemite but I find that Photoshop Elements 11 does not work properly. If I use a tool like a paint brush or spot healer I cannot paint a full stroke?

    I have just downloaded Yosemite but I find that Photoshop Elements 11 does not work properly. If I use a tool like a paint brush or spot healer I cannot paint a full stroke does anyone else have this issue or know a solution?

    Many thanks that does work. But it now leads to another question is this simply a trackpad issue and if so will it be fixed? I use Elements every day and was thinking I would have to go back to Mavericks.

  • Just downloaded book but did not get all the way down now cant play it  any answers

    just downloaded book but did not get all the way down now cant play it  any answers

    in iTunes, access your purchase history via your account in the iTunes store, find the file in question, and click on the report a problem button. report the problem. more info in this support article. 
    clicking here  should take you directly to your iTunes store log-in window.

  • To download file but still the Save Dialog box still not show? Please help.

    Hi All,
    Below is my full code to download file but still the Save Dialog box still not show..
    <%@ taglib prefix="cs" uri="futuretense_cs/ftcs1_0.tld"
    %><%@ taglib prefix="asset" uri="futuretense_cs/asset.tld"
    %><%@ taglib prefix="assetset" uri="futuretense_cs/assetset.tld"
    %><%@ taglib prefix="commercecontext" uri="futuretense_cs/commercecontext.tld"
    %><%@ taglib prefix="ics" uri="futuretense_cs/ics.tld"
    %><%@ taglib prefix="listobject" uri="futuretense_cs/listobject.tld"
    %><%@ taglib prefix="render" uri="futuretense_cs/render.tld"
    %><%@ taglib prefix="siteplan" uri="futuretense_cs/siteplan.tld"
    %><%@ taglib prefix="searchstate" uri="futuretense_cs/searchstate.tld"
    %><%@ taglib prefix="locale" uri="futuretense_cs/locale1.tld"
    %><%@ taglib prefix="dateformat" uri="futuretense_cs/dateformat.tld"
    %><%@ taglib prefix="blobservice" uri="futuretense_cs/blobservice.tld"
    %><%@ taglib prefix="satellite" uri="futuretense_cs/satellite.tld"     
    %><%@ taglib prefix="date" uri="futuretense_cs/date.tld"
    %><%@ page import="COM.FutureTense.Interfaces.*,
    COM.FutureTense.Util.ftMessage,
    COM.FutureTense.Util.ftErrors"
    %><%@ page import="COM.FutureTense.Interfaces.*,
    COM.FutureTense.Util.ftMessage,
    COM.FutureTense.Util.ftErrors"
    %>
    <%@ page language="java" contentType="text/html;charset=UTF-8" %>
    <%@ page import="java.io.File" %>
    <%@ page import="java.io.OutputStream" %>
    <%@ page import="java.io.FileInputStream" %>
    <cs:ftcs><%-- france/test_template
    INPUT
    OUTPUT
    --%>
    <%-- Record dependencies for the Template --%>
    <ics:if condition='<%=ics.GetVar("tid")!=null%>'><ics:then><render:logdep cid='<%=ics.GetVar("tid")%>' c="Template"/></ics:then></ics:if>
    <%
    String fileToFind = request.getParameter("file");
    if(fileToFind == null) return;
    File fname = new File(fileToFind);
    System.out.println("Save As: "+fname.getName() );
    if(!fname.exists()) return;
    FileInputStream istr = null;
    response.setContentType("application/octet-stream;charset=ISO-8859-1");
    response.setHeader("Content-Disposition", "attachment; filename=\"" + fname.getName() + "\";");
    try {
    istr = new FileInputStream(fname);
    int curByte=-1;
    while( (curByte=istr.read()) !=-1){
    out.write(curByte);
    out.flush();
    } catch(Exception ex){
    ex.printStackTrace(System.out);
    } finally{
    try {
    if(istr!=null) istr.close();
    } catch(Exception ex){
    System.out.println("Major Error Releasing Streams: "+ex.toString());
    try {
    response.flushBuffer();
    } catch(Exception ex){
    System.out.println("Error flushing the Response: "+ex.toString());
    %>
    </cs:ftcs>
    Can anybody help me with this??? What is lacking...
    Thank you in advance.

    Put this code into a servlet rather than a JSP.
    JSP are for returning text based HTML pages. It adds extra carriage returns into the response that will corrupt the file, and prevent the dialog showing up.
    This code is much better off being in a servlet
    If you are using a FileInputStream, you should be using a ServletOutputStream rather than the JSP writer: response.getOutputStream()
    When dealing with file input in a JSP/Servlet you should use the methods of ServletContext. getRealPath() turns a website relative file into a real location on disk. getResourceAsStream() opens the file for you. getResourceAsStream() is more reliable as it will work even if the web app is deployed in a packed WAR.
    Cheers,
    evnafets

  • I have just downloaded itunes but it did not ask me where I wanted to put it so it has downloaded to my pc C drive automatically but I want it in my D drive. How can I fix this please?

    I have just downloaded itunes but it did not ask me where I wanted to put it so has put it into my (pc) C drive by default. I want it in the D drive. How do I do this please? I have already tried uninstalling & reinstalling (this is what I'm doing now) but clearly without success.

    All purchases are considered final, but you can try contacting iTunes support and explain what happened and see if they will refund or credit you : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    To try and stop it happening again, you should be able to turn off in-app purchases on your device via Settings > General > Restrictions > In-App Purchases 'off', and (depending upon what iOS version that you have on the device) you might also be able to set 'Require Password' to 'Immediately' on the Restrictions (the default is a 15 minute period during which it doesn't need to be re-entered)

  • I am trying to download Firefox4, but the Firefox character appears w/ a circle w/slash through superimposed over it. Drap this to app. folder gets me no where??

    I am trying to download Firefox4, but after download the Firefox character appears w/ a circle w/ a slash through it superimposed on top. Drap this to app. folder gets me no where??

    Firefox 4 requires at least OS X 10.5 and an Intel Mac. There is a third party version of Firefox 4 that runs on OS X 10.4/10.5 and PPC Macs, for details see http://www.floodgap.com/software/tenfourfox
    If you prefer to use Firefox 3.6, you can get it from http://www.mozilla.com/en-US/firefox/all-older.html

  • New gen 4 touch. first time on itunes window comes up needs at least version 10.6.3...i downloaded this but still asks every time and cant load music

    New gen 4 touch. first time on itunes window comes up needs at least version 10.6.3...i downloaded this but still asks every time and cant load music

    See the futher information area of Troubleshooting issues with iTunes for Windows updates for download advice and direct links if required.
    See this migrate iTunes library post for advice on moving the library over from a previous computer and this post on deduplication.
    tt2

  • Have just downloaded FP11 but it is not functioning, any ideas?

    Have just downloaded FP11, but it is not functioning, any ideas?

    What is your operating system & version?
    What is your web browser?
    What exactly means "not functioning"?

  • Video download failed but still charged me!!!!

    I had just recently bought a music video from itunes but the download didn't work then when i looked it still charged me for the incomplete download!!!!! how do i get my money back?

    If your download gets interrupted mid-flow it usually resumes next time you start iTunes. Just occasionally however the item may complete the transfer to your download folder, but fail to be copied into your main library. Have a look inside the download folder to see if you can see any evidence of the file in question. It might also be worth checking the Movies section in case iTunes has failed to set the Media Kind as Music Video.
    tt2

  • HT201210 I just downloaded ios7, but now all my apps are gone. What can I do?

    I downloaded IOS7, but I lost all of my purchased apps and most of my music.  The only apps on the phone are the ones it came with.  Is there any way to get them back?

    Hi Catman1960,
    The steps in this article explain how to download your purchases again:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    Cheers,
    - Ari

  • TS3694 hi just tried to update my iphone 4s with latest version of itunes and has stalled on reset with an error code of 36. have tried re installing i tunes and switched off security and new lead an windows update but still seems to recognize phone.

    Hi
    just tried to update my iphone 4s and it has failed to restore settings. comes up with error code 36.have tried all suggestions in help but to no avail. any help would be appreciated
    john

    if you have tried ALL suggestions then your phone is obviously broken beyond reparing by user
    but if you might not have then you can try reading these
    https://discussions.apple.com/message/21571280#21571280
    http://www.techisky.com/how-to/easy-fix-iphone-in-recovery-mode-upgrading-to-ios -6-2.html
    more
    restore iphone error 36

  • I have an older computer and could not read a pdf file so I just added the Adobe software for $14.95 and downloaded it but still can not open the reader.  If I can't open it, please refund my money.

    downloaded new software and still can't open files

    Hi [email protected] ,
    In order to read the PDF file, you need to download and install Adobe Reader. Please download it from the link below:
    http://get.adobe.com/reader/enterprise/

Maybe you are looking for

  • Possible to fix bad clusters on iPod HD ?

    Hello Everyone, I got a 3G 40 gb ipod ... i recently started having trouble with the ipod , it keeps freezing whenever i upload/download stuff to it .. but it plays mp3s fine ! i restored it a few times , but it wont fix the problem ... i tried forma

  • Automatically download podcasts directly to iPod?

    I'm trying to find a way to have my iPod automatically check for a new podcast (via my home WiFi), download new content, and shut itself off again. Does anyone know of something like this? The reason I want this is that I would like to keep my iPod i

  • Ora-01219 database not open; only queries on fixed tables and views.

    Hi everyone There is another post stating this error, but since the source is different, I think is okay to make a different post as well. Our database was working fine until the other day, when suddenly power went off, UPS was damaged and didn't hol

  • Problems installing Leopard Server on Xserve

    I have an Xserve with no monitor or keyboard access. I need to install Leopard server upgrade, I read the instructions on-line and in the booklet that comes with the software. Obviously, I cannot press C upon boot since I cant see the monitor nor can

  • NO DTP EXECUTION FOR 0ASSET_CLAS

    Hi gurus, I am executing the DTP for 0ASSET_CLAS infoobject to load text master data ,but it is giving error : <b>"Messages for data records saved; request is red acc. to configuration"</b> and the error message text is : <b>0ASSET_CLAS : Data record