I still can not find the Firefox 8.0 download

I work for ChaCha and I need to go back to firefox 8.0 but I can not find where to download it. Please help!

English version of Firefox 8 can be find here
* http://releases.mozilla.org/pub/mozilla.org/firefox/releases/8.0.1/win32/en-US/Firefox%20Setup%208.0.1.exe

Similar Messages

  • After my first questio: can not find the link for free download firefox 6. You answered and I used the link you send. nr 5 was downloaded but it did not work on a minimac it said the version of the mac does not allow it. What to do use the 3.6

    The upgrade notification did not give a free download icon so I asked you and you replyed with an email with a link. I went to the page and could happily download nr 5 instead of 6 but well.
    Now firefox gives still the notification to upgrade and what i downloaded does not work on my mac with safari.
    So can i savely stay with 3.6 ?

    You can't use Firefox 4 on Mac OS X 10.4, on on 10.5 you need the Intel chip.
    It would be easier if you replied to your original question, so someone can see what you are talking about. There are a lot of questions asked even in a single day so we can't see what that was easily. If you need to redownload 3.6.17 then
    http://www.mozilla.com/en-US/firefox/all-older.html
    I tried a search on your name and that didn't work, but you could possibly have found your previous post via the "My contributions" link at the top of
    https://support.mozilla.com/questions
    I doubt that Firefox 5 or 6 would be any different, once support is dropped for hardware or operating system it stays dropped, you need to stay with version 3.

  • I have two small charges on my credit card from the itunes store. I tried to call for answers as to what they were for. A recording told me to go to this website and i still can not find the items charged anywhere.

    I have two small charges on my credit card from iTunes store and I would like to find out what they are. The number listed is a recording and tells me to come to the website for answers. There is no sign of any purcases in my itunes store. Where can I get a person to talk to from I tunes? Has any one had this happen to them?

    Look at you purchase history.
    Open itunes, click on your name in the top right corner and go to your account and look.
    BTW, there is no telephone support for itunes at all.

  • I had join the Photoshop Photography Program, but still can not use the photoshop cc, the photoshop just ask me the serial no, but i can't find my serial no.

    i had join the Photoshop Photography Program, but still can not use the photoshop cc, the photoshop just ask me the serial no, but i can't find my serial no.

    Hello,
    see >>> http://helpx.adobe.com/creative-cloud/help/install-apps.html  here >>> How many computers can I install on
    I quote: You may install software on up to two computers. These two computers can be Windows, Mac OS, or one each.
    If you install on a third computer, it will request you to de-activate on the other two computers. You can then reactivate one of the previous two computers, and use Creative Cloud apps on it.
    Good luck!
    Hans-Günter

  • Warnings in FileReference - can not find the cause

    I'm trying to make a loader of a few photos (use FileReference). I get the warnings, but I do not know the reason for their appearance.
    warning: unable to bind to property 'fr' on class 'Object' (class is not an IEventDispatcher)
    warning: unable to bind to property 'name' on class 'flash.net::FileReference'
    warning: unable to bind to property 'data' on class 'flash.net::FileReference'
    warning: unable to bind to property 'fr' on class 'Object' (class is not an IEventDispatcher)
    warning: unable to bind to property 'name' on class 'flash.net::FileReference'
    warning: unable to bind to property 'data' on class 'flash.net::FileReference'
    CODE:
    import mx.events.CollectionEvent;
    import flash.net.FileReferenceList;
    import mx.collections.ArrayCollection;
    [Bindable]
    private var photos:ArrayCollection = new ArrayCollection;
    private var frList:FileReferenceList = new FileReferenceList;
    private function init():void
    photos.addEventListener(CollectionEvent.COLLECTION_CHANGE,function():void
    startUploadButton.enabled = (photos.length>0);
    clearPhotosButton.enabled = (photos.length>0);
    frList.addEventListener(Event.SELECT,addPhotos);
    private function selectPhotos():void
    var fileFilter:FileFilter = new FileFilter("Images jpeg","*.jpg;*.jpeg");
    frList.browse([fileFilter]);
    private function addPhotos(e:Event):void
    for (var i:uint = 0; i < frList.fileList.length; i++)
    var elem:Object = new Object;
    elem.fr = FileReference(frList.fileList[i]);
    elem.fr.load();
    elem.fr.addEventListener(Event.COMPLETE,refreshThumb);
    photos.addItem(elem);
    private function refreshThumb(e:Event):void
    photosList.invalidateList();
    public function clearPhoto(data:Object):void
    photos.removeItemAt(photos.getItemIndex(data));
    photosList.invalidateList();
    private function startUpload():void
    photosProgressContainer.visible = true;
    var request:URLRequest = new URLRequest();
    request.url = "http://localhost/tempLoader-debug/upload.php";
    var fr:FileReference = photos.getItemAt(0).fr;
    fr.cancel();
    fr.addEventListener(ProgressEvent.PROGRESS,uploadProgress);
    fr.addEventListener(DataEvent.UPLOAD_COMPLETE_DATA,uploadComplete);
    fr.upload(request);
    private function uploadProgress(e:ProgressEvent):void
    photosProgress.setProgress(e.bytesLoaded,e.bytesTotal);
    private function uploadComplete(e:DataEvent):void
    photos.removeItemAt(0);
    photosList.invalidateList();
    if (photos.length > 0)
    startUpload();
    else
    photosProgressContainer.visible = false;

    In my opinion this is the line that is causing you the warning:
    <mx:Image source="{data.fr.data}" maxWidth="100" maxHeight="75"
    horizontalAlign="center" verticalAlign="middle" />
    That means that data should be a custom binable object and fr should be another
    custom bindable object.
    like
    public class BindableData
        public var fr:BindableData2;
    public class BindableData2
        public var data:String;
    I am not sure though what you are trying to do though, but I assume you try top
    load an image from your disk. This link will help you:
    view source enabled...
    http://www.everythingflex.com/flex3/flexcampItaly/
    the blog post ...
    http://blog.everythingflex.com/2009/09/08/flexcamp-presentation-filereference-load-part-1- of-3/
    C
    From: Astraport2012 <[email protected]>
    To: Ursica Claudiu <[email protected]>
    Sent: Sun, October 3, 2010 3:07:57 PM
    Subject: Re: Warnings in FileReference - can not find the cause
    I found the solution to the first part of the warning. Only need to modify the
    object as ObjectProxy
    public var elem:ObjectProxy = new ObjectProxy;
    But with the second part is still a problem (warning: unable to bind to property
    'name' on class 'flash.net::FileReference'
    warning: unable to bind to property 'data' on class 'flash.net::FileReference').
    I do not fully describe the problem in the first message. The main application
    calls the component and passes it parameters. They cause errors.
    It is this component photoThumb.mxml:
    <?xml version="1.0" encoding="utf-8"?>
       width="120" height="110"
       backgroundColor="#FFFFFF" backgroundAlpha="0"
       rollOver="{controls.visible=true;}" rollOut="{controls.visible=false;}">
    <mx:Image source="@Embed('t1.png')" width="100%" height="100%" alpha="0"
    horizontalAlign="center" verticalAlign="middle"/>
    <mx:VBox width="100%" height="90" y="5" horizontalAlign="center" >
    <mx:Image source="{data.fr.data}" maxWidth="100" maxHeight="75"
    horizontalAlign="center" verticalAlign="middle" />
    </mx:VBox>
    <mx:Label text="{data.fr.name}" width="118" truncateToFit="false" bottom="0"
    textAlign="center" />
    <mx:VBox id="controls" visible="false" y="65" right="10" horizontalAlign="right"
    >
    <mx:Button label="X" click="parentDocument.clearPhoto(data)" fontSize="6"
    width="30" height="15" />
    </mx:VBox>
    </mx:Canvas

  • I am having a problem adding a new tab, everyone is telling me to get rid of "ask toolbar" however I do NOT have ask, not at all. And yet I still can not find out what to do. Please help!

    Hello, I am having trouble opening a new tab on firefox. Everyone has told me to delete the "ask toolbar" but the thing is I do NOT have that, searched over and over and it is NOT on my firefox. Yet I still can not fix the new tab problem. Any help please?!

    Try this?
    * http://kb.mozillazine.org/Uninstalling_toolbars

  • I can't find the Firefox tab that takes me to edit and print et al. unless I have a little bitty screen.

    I just got a new computer and got changed to windows 8, and the guy set it up with internet explorer when I was accustomed to using firefox. My son put it on firefox, but I can't find the firefox tab with access to edit, print, print preview, etc. , except when I have the firefox box on three quarters of the screen, which is too small. How do I get it to fill up the screen and still give me the little box so I can print? Please don't answer with an avalanche of gibberish, because my computer understanding is negligible.

    Hi Senyax, how are you enlarging Firefox when you want it larger? These will give you different results:
    (1) Maximize the window (middle button between _ and X)
    You should still be able to see the top bar of the window with the orange Firefox button. If you can't see any of it, one of your Firefox settings files might be corrupted.
    (2) Full screen (F11 key or orange Firefox button > Full Screen)
    By default, nothing other than the website shows in full screen mode. Although you can have the tab bar and toolbar display (slide your mouse to the top of the screen and right-click a blank area of the tab bar, then uncheck "Hide Toolbars"), you cannot use the orange Firefox menu button in this mode.

  • I can not find mozilla firefox folder in Start All Programs how can i open firefox in safe mode i am using win7 and firefox 4.ob10 ?

    i can not find mozilla firefox folder in Start>All Programs> how can i open firefox in safe mode i am using win7 and firefox 4.ob10 ?

    A quick workaround - Go to Start > Run, and paste this in the box: "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" -safe-mode

  • I replaced my hard drive and lost iPhoto. Is there a way to retrieve?  I can not find the starter discs that came with my Macbook Pro.

    I replaced my hard drive and lost iPhoto. Is there a way to retrieve?  I can not find the starter discs that came with my Macbook Pro.

    Customer Service: Contacting Apple for support and service - this includes international calling numbers. You can purchase replacement discs from Apple.
    Or, you can upgrade to Lion or Mountain Lion:
    Upgrading from Snow Leopard to Lion or Mountain Lion
    You can upgrade to Mountain Lion from Lion or directly from Snow Leopard. Mountain Lion can be downloaded from the Mac App Store for $19.99.
    If you sign into the App Store and try to purchase Mountain Lion but the App Store says your computer is not compatible then you may still be able to upgrade to Lion per the following information.
    A. Upgrading to Mountain Lion
    To upgrade to Mountain Lion you must have Snow Leopard 10.6.8 or Lion installed. Purchase and download Mountain Lion from the App Store. Sign in using your Apple ID. Mountain Lion is $19.99 plus tax. The file is quite large, over 4 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mountain Lion - System Requirements
           Macs that can be upgraded to OS X Mountain Lion
             1. iMac (Mid 2007 or newer) - Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) - Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) - Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) - Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) - Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) - Model Identifier 3,1 or later
             7. Xserve (Early 2009) - Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
         Are my applications compatible?
             See App Compatibility Table - RoaringApps.
         For a complete How-To introduction from Apple see Upgrade to OS X Mountain Lion.
    B. Upgrading to Lion
    If your computer does not meet the requirements to install Mountain Lion, it may still meet the requirements to install Lion.
    You can purchase Lion by contacting Customer Service: Contacting Apple for support and service - this includes international calling numbers. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.

  • I have one folder with several projects all of which Aperure can not find the original.  I do not use referenced files.  I can't make any adjustments like cropping etc. What can I do to print any of these photos?

    I have one folder with several projects all of which Aperure can not find the original.  I do not use referenced files.  I can't make any adjustments like cropping etc. What can I do to adjust or print any of these photos?  IO have no ther projects with this problem.  My Aperture Library is automatically saved to two external drives.
    Dick Koos

    I have one folder with several projects all of which Aperure can not find the original.
    Have you checked inside your Aperture library, if the original files are still there?
    Try to find out, when the images in those projects have been originally imported, then open the Aperture library by ctrl-clicking it and using the command "Show package contents" from the pop-up menu. In the window that will open, select the folder "Masters" and browse the contents. You need to find the subfolder with the year you imported the images, then the folders with the month and the day.
    Are your original files still there?
    If yes, copy them to a folder on your desktop for safe-keeping, and then try, if repairing the permissions and the other Furst Aid tools will help Aperture to connect to these missing files again - see this link:  Repairing and Rebuilding Your Aperture Library: Aperture 3 User Manual
    If the First Aid Tools don't help, then check, if Aperture has moved the missing images to a "recovered folder". If not, reimport the images, you saved to your Desktop and use the Lift&Stamp tool to transfer any adjustment and captions to your reimported images.

  • HT4623 i can not find the botton SOFTWARE UPDATE on my Iphone 3G

    i can not find the botton SOFTWARE UPDATE on my Iphone 3G,
    I can t use whatsUp anymore because I need to update the system

    If you can upgrade you will have to do it through iTunes:
    See the chart below to determine whether you can upgrade your device and what you can upgrade to. If you do not have a Software Update option present on your iDevice, then you are trying to upgrade to iOS 5 or higher. You will have to connect your device to your computer and open iTunes in order to upgrade.
    IPhone, iPod Touch, and iPad iOS Compatibility Chart
         Device                                       iOS Verson
    iPhone 1                                      iOS 3.1.3
    iPhone 3G                                   iOS 4.2.1
    iPhone 3GS                                 iOS 6.1.x
    iPhone 4                                      iOS 6.1.x
    iPhone 4S                                    iOS 6.1.x
    iPhone 5                                      iOS 6.1.x
    iPod Touch 1                               iOS 3.1.3
    iPod Touch 2                               iOS 4.2.1
    iPod Touch 3                               iOS 5.1.1
    iPod Touch 4                               iOS 6.1.x
    iPod Touch 5                               iOS 6.1.x
    iPad 1                                          iOS 5.1.1
    iPad 2                                          iOS 6.1.x
    iPad 3                                          iOS 6.1.x
    iPad 4                                          iOS 6.1.x
    iPad Mini                                     iOS 6.1.x
    =====================================
    Select the method most appropriate for your situation.
    Upgrading iOS
       1. How to update your iPhone, iPad, or iPod Touch
       2. iPhone Support
       3. iPod Touch Support
       4. iPad Support
         a. Updating Your iOS to Version 6.0.x from iOS 5
              Tap Settings > General > Software Update
         If an update is available there will be an active Update button. If you are current,
         then you will see a gray screen with a message saying your are up to date.
         b. If you are still using iOS 4 — Updating your device to iOS 5 or later.
         c. Resolving update problems
            1. iOS - Unable to update or restore
            2. iOS- Resolving update and restore alert messages

  • HT1420 I can not find the location of the "authorize" button.

    I can not find the "authorize" button on the itunes menu?

    There's a couple of ways to get through to the authorisation controls in the 11.0.x versions.
    The control is still in the Store menu, but first (if you're using iTunes versions 11.0.x) you might need to bring up the menu bar to see the Store menu.
    If you're using 11.0.x, click on the wee boxy icon up in the top-left corner of your iTunes to see the "Show Menu Bar" control, as per the following screenshot:
    Then you'll find the control in the Store menu:
    Alternatively, if you don't want to bring up the menu bar, it's still possible to get into the authorise controls via nested menus accessible from the wee boxy icon. Here's a screenshot of where to find them:

  • HT1420 I can not find the autherize this computer menu

    I read the directions but can not find the authorization menu

    Authorization and Deauthorization
    Macs:  iTunes Store- About authorization and deauthorization.
    Windows: How to Authorize or Deauthorize iTunes | PCWorld.
    In iTunes you use the Authorize This Computer or De-authorize This Computer option under the Store menu in iTunes' menubar. For Windows use the ALT-S keys to access it.
    More On De-authorizing Computers (contributed by user John Galt)
    You can de-authorize individual computers, but only by using those computers. The only other option is to "de-authorize all" from your iTunes account.
      1. Open iTunes on a computer
      2. From the Store menu, select "View my Account..."
      3. Sign in with your Apple ID and password.
      4. Under "Computer Authorizations" select "De-authorize All".
      5. Authorize each computer you still have, as you may require.
    You may only do this once per year.
    After you "de-authorize all" your authorized computers, re-authorize each one as required.
    If you have de-authorized all computers and need to do it again, but your year has not elapsed, then contact: Apple - Support - iTunes - Contact Us.

  • On Hulu I keep getting ad loading errors that stops my movie/show. I can not find the disable add block. It is not under tools, options, the tool bar or add-ons

    On hulu I keep randomly getting the error message that Firefox is blocking the adds and i need to disable adblock in order to continue watching. Problem is I can not find the adblock option. It is not under tools, the addblock toolbar. I also tried enabling it under add-ons (under extensions) and it was not there either.

    Hi i_see_dumb_people88, it appears you only have two Extensions installed and both of them are disabled. Is that correct if you compare this list:
    orange Firefox button ''or'' classic Tools menu > Add-ons > Extensions
    In that case, you do not have the AdBlock add-on. However, it's possible that ads are blocked in some other way, for example, your security software (if it has this feature) or domains you listed in the Windows hosts file (if you downloaded a hosts file or edited it manually).
    If neither of those is applicable, they probably would affect other browsers as well as Firefox. Do you know whether the problem occurs in IE?

  • My phone is always off line and i still can not find my iPhone, what else can i do and on my part?

    My phone is always off line. I still can not find my iPhone, what else can i do and on my part?  Will the  local authorities help me find it if i show them the last location the phone was at cause I can always take matters into my own hands and probably end up in trouble with the law.  What options do I have available?

    In addition to using Find My iPhone to lock or erase your phone, the advice in the following link from Apple support is to change your iCloud password, report it to local law enforcement and to your cellular carrier: http://support.apple.com/kb/HT5668

Maybe you are looking for

  • Getting Error while accessing End to end Monitoring.

    Hi, We are running XI 3.0 on MS SQL Server. While we hit END to END Monitoring Button we getting some error. Here the Error. Service cannot be reached What has happened? URL http://lax05sesd02:50000/sap/bc/bsp/sap/spi_monitor/monitor.do call was term

  • HELP! MBP freezing and i dont know why!

    Hey there, I bought this macbook pro a few years ago and all has seemed to be fine with it, just recently it's started crashing and freezing and im not sure why, i cant seem to access anything to back up my data or re-install leopard... i really cant

  • Odd PAL Transition Occurrence

    Authored a DVD in NTSC (based in Canada) with main menu, series of sub-menus and then video footage activated from the sub-menus. Pretty basic stuff. Worked out fine when put to disk and presents well on TV. However, when trying to make a PAL version

  • How to disable Automatic UPPER case in SQL Developer

    Hi, I am using SQL developer more than two years. I have recently downloaded SQL Developer 2.1.1.64. My problem is, while editing the package body when move to newline the previous line get converted to UPPER case automatically. But, I don't want to

  • License terms

    We are a Software services company. Currently, we are planning to start work for a ISV customer. Can we install Oracle 10g Express Edition on each developer's machine for development activities? Customer have licenses for Staging and Production envir