Customize Firefox 4 to look like Firefox 3

I have just upgraded from Firefox 3 to Firefox 4. Firefox 4 is fast! And it looks snazzy. But unfortunately, there are quite a number of inconveniences:

  • The menu is hidden, where I use the View, History and Bookmarks items constantly
  • There is no more status bar, which means there is no more NoScript button, which I use constantly
  • The position of the home button has changed. A habit of 20 years doesn’t break easily. So I prefer to have it back in the old position!

Here is how to solve those inconveniences.

1. Showing the Menu bar

That’s an easy one. It’s as simple as reactivating it in the ‘View’ options. This can be done in 2 ways. Either press F-10 (on Windows), and the menu bar (temporarily) re-appears. Choose View, then click Menu Bar. Alternatively, press the new Firefox button at the top left, choose Options and reactivate the Menu Bar there.

2. Reinstalling the Status Bar

In Firefox 4, there IS no more status bar, which gives one more screen real estate, but also makes it no longer possible to have the buttons there for add-ons! As I constantly use a number of add-ons, this is not acceptable!

The only solution is to install a new add-on which recreates the status bar. You can get it here:

https://addons.mozilla.org/firefox/addon/235283

If you like the extra screen real estate, you can hide / show the add-on status bar by pressing CTRL+/ which gives you the best of both worlds: one key combination, and you’ve got access again to the status bar.

3. Adding Noscript to the add-on bar

Right-click on the add-on bar. Click Customize. Look for the Noscript Icon and drag and drop it to the position you want it.

PS: you don’t have to add the NoScript button to the add-on bar, of course. You could add it to any bar: menu bar, … in the same way, i.e. by customizing it.

4. Repositioning the Home Button

I prefer the home button on the left, next to the back and forward buttons. To achieve this: right-click over the current position of the home button. Choose Customize. Drag and drop the home button to the location you want it.

Enjoy!

 

Apache mod_rewrite doesn’t seem to work in Windows

I had this strange phenomenon that mod_rewrite instructions in the .htaccess file worked online on my ISPs server, but not on my local Windows machine that also has an Apache server running on it.

I kept getting 404 errors: page not found.

Which is a bit annoying: I’ve got drupal, joomla and other software running on my local server, but none of them could use ‘clean URLs,’ which is what I want to use.

It turns out that the default configuration of Apache on windows is to NOT allow .htaccess to be used.

So the problem wasn’t that the mod_rewrite didn’t work. The real problem was that the .htaccess file was just ignored.

The best solution for that is to modify your httpd.conf file. (Stop the Apache service before you modify it. Start it again when completed).

If you’ve installed, e.g, drupal in a directory “c:\websites\drupal” and you want to use mod_rewrite for clean URLs, then you’d have to add the following lines to the httpd.conf file:

<Directory “C:/websites/drupal/”>
AllowOverride All
Order allow,deny
Allow from all
</Directory>

You have to do this for each directory / folder you want to use .htaccess in.

The – far less secure- alternative is to change the default settings of your Apache and by default allow .htaccess to be used.

Firefox personas icon disappeared after update

Today, while using Firefox, I got notified that a new version of ‘personas’ was available.

I installed it, but things went wrong: new tabs in Firefox started showing https:/// (with three forward slashes) instead of the blank line. When I closed Firefox, it did not want to start again.

I started Firefox in safe mode, and that worked. I closed it down again, and then started it normally. Everything seemed fine but the Personas icon at the bottom left had disappeared. In the ‘Tools’ menu, as well, the ‘Personas’ option had disappeared. However, in ‘Tools > Add-ons >Themes’ they still were present.

Restarting Firefox didn’t help.

The solution was to (re-)install the Personas Plus Extension, which can be found at: https://addons.mozilla.org/en-US/firefox/addon/10900/

Hello World

Every once in a while I run into problems while programming or working on the computer. I thought I’d document the solutions I find, so others can use them, too.