You are here

firefox portable live cd helper app mime types

6 posts / 0 new
Last post
paleozogt
Offline
Last seen: 16 years 4 months ago
Joined: 2008-04-13 01:31
firefox portable live cd helper app mime types

According to the firefox portable support page, firefox supports configuring mime types for other portable helper apps. It also says that firefox portable supports running from a cd.

While the portable helper apps configuration will work on writable media, it breaks once you run firefox on read-only media. Specifically, it breaks when you use the FirefoxPortable.ini file (as described in the firefox portable live directions).

What appears to be happening is that the helper app paths get changed to the temporary directory, rather than the portableapps path. It seems to assume that the helper apps have been copied there (?). This is strange, since most (if not all) portableapps will run fine from read-only media.

Perhaps this is a bug? Or perhaps some adjustments need to be made to the FirefoxPortable.ini file?

Incidentally, I was able to get firefox helper apps working on a cd through this workaround. However, this is a kludge-- I'd rather have it just work.

Thanks,
aaron

Simeon
Simeon's picture
Offline
Last seen: 9 years 11 months ago
DeveloperTranslator
Joined: 2006-09-25 15:15
I think

this is a bug. I think it has been mentioned before here.

"What about Love?" - "Overrated. Biochemically no different than eating large quantities of chocolate." - Al Pacino in The Devils Advocate

John T. Haller
John T. Haller's picture
Offline
Last seen: 2 hours 5 min ago
AdminDeveloperModeratorTranslator
Joined: 2005-11-28 22:21
Not a bug

Just not supported. You can't preconfigure FFP for mimetypes and redistribute it, anyway. (not permitted under license)

Sometimes, the impossible can become possible, if you're awesome!

Bruce Pascoe
Offline
Last seen: 12 years 9 months ago
Joined: 2006-01-15 16:14
...

Don't jump to conclusions. Where did he say anything about redistribution?

paleozogt
Offline
Last seen: 16 years 4 months ago
Joined: 2008-04-13 01:31
not a hard fix

There are several cases where someone would want to run Firefox and PortableApps in general from read-only media:

  1. Have a live cd for personal use (not redistribution)
  2. Have a read-only usb stick
    • useful for avoiding viruses in internet cafes
    • useful for usb stick tech support; ie, so that my granma doesn't screw stuff up

Incidentally, I started looking at the FireFoxPortable launcher code. Doesn't seem like it would be that hard of a thing to fix.

The way the mime types magic works is that it makes a copy of the mimetypes.rdf file and modifies the helper app paths to be relative to the launcher. When RunLocally=true is set in FirefoxPortable.ini is set, the entire firefox folder is copied to temp. The mimetype magic is setting the paths to be relative to the *copied* firefox folder, hence the invalid paths.

However, there's no reason that the mimetype magic and runlocally couldn't cooperate. The helper app paths just have to be set relative to the location of the portableapps launcher, not the location of the copied firefox folder.

In pseudo-code, its currently working like this:

   is runlocally=true?
      copy firefox to temp
   do mimetype.rdf copy and path change relative to copied firefox

But it could be changed to work like this:

   do mimetype.rdf copy and path change relative to original firefox
   is runlocally=true?
      copy firefox to temp

[Bump removed by moderator JTH]

paleozogt
Offline
Last seen: 16 years 4 months ago
Joined: 2008-04-13 01:31
fixed

I have fixed the issue and posted a patch in the bug tracker over on PortableApps' SourceForge site. Smile

Log in or register to post comments