firefox always opens in work offline mode
by Ramya[ Edit ] 2009-10-31 13:55:44
Firefox always opens in work offline mode:
Whenever you start firefox it open in work offline mode by default. Hence everytime you need to uncheck the work offline from file menu.
To avoid this:
Open the file,,
/usr/bin/firefox
Add the following code for firefox3 beta5,
find $HOME/.mozilla -name extensions.cache -exec rm -f {} ;
* Either use the code above the line,
"$dist_bin/run-mozilla.sh" $script_args "$dist_bin/$MOZILLA_BIN" "$@"
* Or above the line,
if [ ! -x $MOZ_LIB_DIR/firefox-3.0.4/firefox ]; then
if [ ! -x $SECONDARY_LIB_DIR/firefox-3.0.4/firefox ]; then
echo "Error: $MOZ_LIB_DIR/firefox-3.0.4/firefox not found"
if [ -d $SECONDARY_LIB_DIR ]; then
echo " $SECONDARY_LIB_DIR/firefox-3.0.4/firefox not found"
fi
exit 1
Then restart firefox to make the changes work out...