Mozilla bugs

We recently started using JSPWiki with the clean template at work for our intranet. Sadly there are two major issues all the Firefox and Mozilla users in the office are facing (and there are an awful a lot of them):

  • links to locations and files on the internal network don’t work (i.e. file:/// URLs which work fine in IE)
  • printing inserts random pagebreaks

Of course, this means that every time you want to follow a link to a directory on the network (e.g. a link to “all the necessary docs are in this folder”) or print a page out, we’re having to copy the URL, load up IE, paste the URL in and then do whatever it was (or, ok, in the first instance just right-click the link, “Copy Link Location” and paste it into the URL bar, which, strangely works – it’s just clicking the link which doesn’t). Very frustrating.

I understand the first bug. It’s a security restriction. There’s probably a way around it, but I have absolutely no idea what that solution might be and neither bug 163410 or bug 238093 give any help (possibly because my bug is “Security Error: Content at http://xxx may not load or link to file:////yyy.” which is not the same as either of those bugs). But the second (which may or may not be bug 187486, which was the closest thing I could find) is completely bizarre. I know I should spend some time making up a minimal test case, and I will, but printing always seems to be the one big thing that IE really does do better than the Gecko browsers.

But anyway, these two are pretty much showstoppers as far as getting anyone else in my office to use Firefox goes – one of the first things they’ll try and use will be the intranet, and *bam* it won’t work. If anyone out there has any ideas what I can do about either of these problems, please let me know.

Published by

6 thoughts on “Mozilla bugs”

  1. Phil, to be honest I normally find Mozilla makes a far better fist of printing than IE, although the print preview sometimes does not match the printout.

  2. Since about Mozilla 1.4 printing has been pretty good although I think historically that’s not been the case. You only have to take a look through the closed bugs in Bugzilla to see that there were some quite major problems in printing for a good long while.

  3. Go to ‘about:config’ and use a filter of ‘checkloaduri’.

    Set that value to false (double click on it) and you should be able to load from file:// urls.

  4. Hi guys
    i have a similar problem.
    its to do with php and javascript.
    Security Error: Content at http://localhost/PROJ_PHP/jobsandassets/index.php may not load or link to file:///C|/Program%20Files/Apache%20Group/Apache2/htdocs/PROJ_PHP/jobsandassets/templates/res/menu1.js.
    version of mozilla
    Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8) Gecko/20051111 Firefox/1.5

  5. Hi anonymous, I don’t think this is quite the same thing. It looks like your PHP page is including a JavaScript file but linking to it using a file URI like:

    <script src=”file:///C|/Program%20Files/Apache%20Group/Apache2/htdocs/PROJ_PHP/jobsandassets/templates/res/menu1.js” type=”text/javascript”></script>

    you should be using the HTTP URI instead:

    <script src=”http://localhost/PROJ_PHP/jobsandassets/templates/res/menu1.js” type=”text/javascript”></script>

Comments are closed.