[Bug 138091] Starting firefox with parameter -profile don't work

Daniel daniels at xsoli.com
Fri Sep 7 21:17:55 UTC 2007


Public bug reported:

First, try to start firefox with the following parameters:
firefox -profile A_PROFILE_DIRECTORY -no-remote
This will not work.  But, according to the this, http://kb.mozillazine.org/Command_line_arguments it should work.

After looking at the /usr/bin/firefox script, I found that if I add the '-profile' option to the list of paramaters, it works well.
So, I replaced the following lines:

    case "${arg}" in
        -a | --display | -contentLocale | -UILocale | -remote | --debugger | -height | -width | -chrome | -P | -CreateProfile)
            prev=${arg}
            continue
        ;;
    esac

With these ones:

    case "${arg}" in
        -a | --display | -contentLocale | -UILocale | -remote | --debugger | -height | -width | -chrome | -profile | -P | -CreateProfile)
            prev=${arg}
            continue
        ;;
    esac

(The only change is adding -profile to the list)
Thanks

** Affects: firefox (Ubuntu)
     Importance: Undecided
         Status: New

-- 
Starting firefox with parameter -profile don't work
https://bugs.launchpad.net/bugs/138091
You received this bug notification because you are a member of Mozilla
Bugs, which is a bug contact for firefox in ubuntu.




More information about the Ubuntu-mozillateam-bugs mailing list