Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple Firefox Versions on Same PC

I develop various web apps, use CSS and JavaScript extensively, and need to be able to test them on both FF 3 as well as FF 3.5.

But, installing 3.5 overwrites 3.0, so I was wondering if its possible (and if so, how) to run both Firefox 3.0 and 3.5 on the same system, or am i stuck having to use 2 different systems?

I am using Windows XP.

Thanks

like image 856
OneNerd Avatar asked Jul 10 '09 20:07

OneNerd


People also ask

Why do I have 2 versions of Firefox installed?

Some 64-bit Windows users are experiencing parallel installs: their Firefox used to be under the 32-bit path, but an installer or updater installs the new version under the 64-bit path.

Can you have multiple instances of Firefox?

Firefox Portable is a 3rd party build that has its own way of launching multiple instances, far different that the official Firefox builds do. That said, Firefox doesn't need to have multiple different Firefox program installations to be able to launch multiple, simultaneous Profiles.

How do I open two Firefox browsers?

Creating a new profile You can also start a new instance of Firefox using a selected profile. Be careful of the option "Use the selected profile without asking at startup" which is selected by default and which will make the selected profile to be the default one being used when starting firefox without -P .

How do I remove old versions of Firefox?

Using your file browser, open the Programs Folder on your computer. If you downloaded and installed the binary package from the Firefox download page, simply remove the folder Firefox in your home directory.


1 Answers

Yes. Download and install them in seperate directories. Then, launch each one individually with the -p flag to set up different profiles for each version (or at least one for testing). Then, after you have two seperate profiles, create an icon for each on your desktop. Right click on the icon and select properties.

In the 'target' field, add the following flags.

c:\Programs\Firefox 3.0\firefox.exe -p Profile1 -no-remote c:\Programs\Firefox 3.5\firefox.exe -p Profile2 

This is assuming you will be using Firefox 3.5 as your main browser and 3.0 for testing. If you want it the other way around switch the -no-remote tag. This allows you to run multiple versions of Firefox side by side. For more information refer to the Mozillazine page on command line arguments.

like image 187
TJ L Avatar answered Sep 19 '22 23:09

TJ L