Failed to send command

User Help for Mozilla Firefox
Post Reply
Guest
Guest

Failed to send command

Post by Guest »

Hi

I have a problem with startup scripts that should open new tab and not ask for new profile. but i get 'failed to send command' error. I'm using this script found from ibternet:

Code: Select all

#!/bin/bash
# Set to the location of your Firebird Executable
FBEXE=/opt/MozillaFirebird/MozillaFirebird
# Choose how to open new links
OPENMODE="new-tab"
#OPENMODE="new-window"
# Check if Firebird is running
if ($FBEXE -remote "ping()"); then
        $FBEXE -remote "openurl($1, $OPENMODE)" &
else
        $FBEXE $1 &
fi


why am I getting this error?
Post Reply