How to register a protocol to firefox 6.0.2?

I updated firefox from version 3.5.15-12 to firefox 6.0.2. I am using fedora 12 and I used to have a script to open links such as for instance "sip://12345". But this seems to be not possible in the 6.0.2 version of firefox. I tried editing "about:config" but doesn't work. When I input "sip://12345" in the navigator bar firefox gives me a message telling me that there is not an application associated to the protocol sip and I would like to know how to add it as I did in the old version.
Thank you in advance

Hi and first thank you. I have read that page some days ago and probed everything but didn't work. I mean I probed: "All Firefox versions", "Firefox 3.5 and above" and "Firefox versions up to 3.0" ways. But didn't work.
The "All firefox versions way" gave me an error about permissions telling me that something was for read-only. So to solve that I typed the following commands:
1) sudo gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --type bool --set /desktop/gnome/url-handlers/sip/enabled true
2) sudo gconftool-2 --direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory --type string --set /desktop/gnome/url-handlers/sip/command '/usr/local/bin/program_to_open_sip.sh %s'
Where 'sip' is the protocol I want firefox to open.
Then I travelled through gconf-editor and found that the two keys I had created with the two commands above didn't have a schema. So I tried to add a schema to them editing the file /etc/gconf/schemas/desktop_gnome_url_handlers.schemas and adding the following content:
<schema>
<key>/schemas/desktop/gnome/url-handlers/sip/enabled</key>
<applyto>/desktop/gnome/url-handlers/sip/enabled</applyto>
<owner>gnome</owner>
<type>bool</type>
<default>true</default>
<gettext_domain>gnome-vfs-2.0</gettext_domain>
<locale name="C">
<short>Whether the specified command should handle "sip" URLs</short>
<long>True if the command specified in the "command" key should handle "sip" URLs.</long>
</locale>
</schema>
<schema>
<key>/schemas/desktop/gnome/url-handlers/sip/command</key>
<applyto>/desktop/gnome/url-handlers/sip/command</applyto>
<owner>gnome</owner>
<type>string</type>
<default>/usr/local/bin/program_to_open_sip.sh %s</default>
<gettext_domain>gnome-vfs-2.0</gettext_domain>
<locale name="C">
<short>The handler for "sip" URLs</short>
<long>The command used to handle "sip" URLs, if enabled.</long>
</locale>
</schema>
<schema>
<key>/schemas/desktop/gnome/url-handlers/sip/needs_terminal</key>
<applyto>/desktop/gnome/url-handlers/sip/needs_terminal</applyto>
<owner>gnome</owner>
<type>bool</type>
<default>false</default>
<gettext_domain>gnome-vfs-2.0</gettext_domain>
<locale name="C">
<short>Run the command in a terminal</short>
<long>True if the command used to handle this type of URL should be run in a terminal.</long>
</locale>
</schema>
After that I loaded the schema with:
gconftool-2 --install-schema-file=/etc/gconf/schemas/desktop_gnome_url_handlers.schemas
And applied it with the following:
gconftool-2 --apply-schema /schemas/desktop/gnome/url-handlers/sip/command
gconftool-2 --apply-schema /schemas/desktop/gnome/url-handlers/sip/enabled
gconftool-2 --apply-schema /schemas/desktop/gnome/url-handlers/sip/needs_terminal
I restarted the session and also the PC, then I opened firefox and typed in the navigator bar "sip://something" and firefox told me that it didn't know how to open that kind of things. Also when I go to Edit->preferences->Applications I see evertyhing but not sip. It's like I am not doing anything.
In addition I tried editing about:config keys as I mentioned in my first message but nothing happens...
I am a bit lost in this, the old version always asked me something like "What program do you want to use to open things like 'sip://123123'" and then it saved that configuration, but this version has something hidden.
Thank you again

Similar Messages

  • How do i add a protocol in firefox 4.0?

    I need to add the byond:// protocol to firefox 4.0 so i can download BYOND software

    You can click on the bookmark star in the location bar to bookmark a page. Click on the star once to save the bookmark to the default "Unsorted bookmarks" location, click on it a second time to choose where to save the bookmark. You can also use the keyboard shortcut Control+D to bookmark a page.

  • Firefox hangs on opening requiring force quit I have snow leopard mac It hangs when I try safe mode. I need to know how to remove all traces of firefox on my mac so I can reinstall. I have tried terminal as advised on firefox webpage. Please advise m

    Firefox hangs on opening requiring force quit I have snow leopard Mac It even hangs when I try safe mode. I need to know how to remove all traces of firefox on my mac so I can reinstall. I have tried terminal as advised on firefox webpage. Please advise me
    == This happened ==
    Every time Firefox opened
    == I tried to update firefox add-ons ==
    == User Agent ==
    Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7

    Try a new profile. See [[Recovering important data from an old profile]]

  • How to register the recipient when create job by function

    I am now use JOB_OPEN , JOB_SUBMIT and JOB_CLOSE to create a job in the program. And need to post the result of the report to the person by email.
    Can you tell me how to register the recipient when create the job.
    ( in sm36, it is easily to do but how to do in coding? )
    regards,
    slam

    Hi
    I think in Back ground using the above fun modules you can't send a mail to the receipient.
    see the use of the above fun modules;
      IF p_bjob = 'X'.
        CONCATENATE sy-cprog sy-datum sy-uzeit
                    INTO jobname SEPARATED BY '_'.
        CALL FUNCTION 'JOB_OPEN'
          EXPORTING
            jobname          = jobname
          IMPORTING
            jobcount         = jobcount
          EXCEPTIONS
            cant_create_job  = 1
            invalid_job_data = 2
            jobname_missing  = 3
            OTHERS           = 4.
        CALL FUNCTION 'GET_PRINT_PARAMETERS'
          IMPORTING
            out_archive_parameters = arc_params
            out_parameters         = print_params
            valid                  = valid
          EXCEPTIONS
            archive_info_not_found = 1
            invalid_print_params   = 2
            invalid_archive_params = 3
            OTHERS                 = 4.
        IF valid = chk.
          SUBMIT ybrep
                          WITH < sel Screen>
                          AND RETURN
                          USER               sy-uname
                          VIA JOB            jobname
                          NUMBER             jobcount
                          TO SAP-SPOOL
                          SPOOL PARAMETERS   print_params
                          ARCHIVE PARAMETERS arc_params
                          WITHOUT SPOOL DYNPRO.
          CALL FUNCTION 'JOB_CLOSE'
            EXPORTING
              jobcount             = jobcount
              jobname              = jobname
              strtimmed            = 'X'
            EXCEPTIONS
              cant_start_immediate = 1
              invalid_startdate    = 2
              jobname_missing      = 3
              job_close_failed     = 4
              job_nosteps          = 5
              job_notex            = 6
              lock_failed          = 7
              invalid_target       = 8
              OTHERS               = 9.
          IF sy-subrc <> 0.
           MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ELSE.
            MESSAGE i029 WITH jobname.
          ENDIF.
        ELSE.
          MESSAGE s000 WITH text-003.
          STOP.
        ENDIF.
      ENDIF.
    Reward points if useful
    Regards
    Anji

  • How to register multiple ipods on same email account

    how do register multiple ipods using the same email account?

    Maybe here
    How to use multiple iPods, iPads, or iPhones with one computer
    You can have an unlimited number of devices that you own or control for private use tied to one iTunes account. But you have only have five tied to one iCloud account.
    To alllow FT and Messagibng between them see:
    MacMost Now 653: Setting Up Multiple iOS Devices For Messages and FaceTime

  • How do I go back to Firefox 5.0? I need to use Selenium IDE, which is not yet compatible with 6.0.

    How do I go back to Firefox 5.0? I need to use Selenium IDE, which is not yet compatible with 6.0.

    The link is to the latest update to 4.o which was 4.0.1
    The 4.0.1 and 5.0 are two separate versions as installing 4.0.1 over 5.0 will just give you the old 4.0.1 as the end result.
    The 5.0 is partially as a security update in place of 4.0.2.
    The Skype extension was only for to make it so you can dial phone numbers on a web page in the separate Skype program right so if you were not using it then no need for the Skype extension for the separate Skype application to work.

  • How to register custom report under Custom Development Application

    Hi 2 all
    How to register custom report under the Custom Development application in R12 vision DB, and also confirm location/folder of Custom Development application in R12.
    Thanks
    Zulqarnain

    Hi,
    You may or may not need to "register" the workflow - it depends on the changes that you made and which Item Type you modified. Some applications are essentially hard-coded to use a specific item type and process, some hard-coded to use an item type but you can configure the process to use, and some allow you to specify which item type and which process to use.
    Without knowing exactly what you have done, though, there is no specific advice that anyone can give you here on what you need to do, apart from to ensure that you have saved the new definition to the database.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://www.workflowfaq.com/blog ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • I am trying to open a website that is using Microsoft content viewer, and the page does not show. Any ideas on how to view this site using firefox. It works on IE.

    I am participating in an online class whose website uses Microsoft Content Viewer to view the class content. The browser opens a new page, but nothing is there. At the top of the tab it says Microsoft Content Viewer, and nothing else. Can anyone tell me how to view my course using Firefox? I would prefer not to use IE, but it works there.

    When originally creating the pdf, you would need to choose another pdf conversion setting. In Word if you use the pdf menu, change your settings there: Adobe PDF > Change Conversion Settings. I would use High Quality Print instead. If you use the File > Print method, click the Properties button next to the Adobe PDF printer selection.
    For your already created form, you can change the file so your users will not encounter issues. In Acrobat 9, which hopefully is similar in process to 8: Advanced > Preflight > Profile tab > PDF/A compliance > Remove PDF/A information.(You'll have to unsecure your form first).
    You can read about PDF/A files in the Help.

  • A friend created 3 accounts on his iPhone 5 but forgot the passwords. He can't reset the password as yahoo address is no longer valid. Erasing the phone doesn't solve the issue. How to register the phone with Apple?

    A computer illiterate friend created 3 accounts on his iPhone 5 but forgot the passwords. He can't reset the password as his yahoo address is no longer valid. Erasing the phone doesn't solve the issue as the Apple server identifies the hardware as registered. How to register the phone with Apple?
    I helped him create a new email address and new iCloud account on my Mac but when we try to register the phone with Apple it says: Maximim accounts limit reached for this device. How can he register the phone? I read different threads and found out that only Apple care can do that. We're in Romania and don't know where to call. Any suggestions on how we fix this?

    When I checked the support site for Romania, you apparently don't have an Apple Care contact center.  You "may" try calling the US Apple care number to verify the account and have the password reset sent to a different email address.  800-694-7466

  • How to register the phone number of my friends to imessage,and i able to contact them or call them?

    I buy my ipad in qatar duty free i mean ipad4 wifi +cellular i thought i can use it for text or call by means of phone number only but im dissapoint when i used it and found out that i have to register all numbers to imessage and i cannot find how to register it.please help me to solve this matter.

    You have a password, so good move on your part.  Whether you erase it or the thief does, they still get to use the iPhone as theirs.  Which is more important (pick one), protecting your data or punishing the thief?
    Ringing occurs at the carrier.  Chances are you're going to voicemail after only two or three rings.  If you have an iCloud backup also a good move.  Re-read my question in the first paragraph.

  • How do I move all my Firefox settings to a new computer.

    My old pc is not working but I have the hard drive and access to all my files. all I am trying to do is move all my settings for Firefox...bookmarks, passwords and settings, to my new machine. I cannot do the sync, I cannot do a backup and restore as my old machine is not working....just want to move the appropriate files. I have moved my old profile to my new desktop. Running Windows 7 on old and new. Thanks!

    Thanks but I have read that page. That page gives specfics about certain files to copy... When I installed Firefox on my new machine, it actually had one option to import settings from IE. But not firefox? My problem is not unique as I purchased a new computer, and am simply trying to migrate all the info to the new one. I know from the questions on this support site that this happens every day.... the page you referenced has things like:
    "Create a new Firefox profile
    For information on how to create a brand new Firefox profile, please read the Use the Profile Manager to create and remove Firefox profiles article, paying specific attention to the Creating a profile section. "
    If I was trying to create a "brand new profile" that would be helpful...but my issue is to move everything to the new pc. (the old pc no longer works so I cannot do a back up and restore...or a sync) The page you reference gives specifics on about 15 different things...do I need to do each one? for example...do I need to "create a new profile"?
    Thanks for any help....this is really frustrating...I moved Thunderbird over and all the settings in about 10 minutes...just can't seem to find the solution here for Firefox.

  • How do I pair an older Firefox with bookmarks with the new Firefox system without pairing function?

    Firefox is fantastic except when I have a problem. I must be real stupid. I have sent questions about different issues in the past and I see I got a lot of help. Unfortunately I cannot read any results. That is why I quit Firefox for a while. I just decided to give it another try; Firefox is worth it.
    I have had Firefox installed on my "Win 7 Home" laptop for some time without updating it. It contains all my bookmarks from some time back. I just came back to Firefox and installed it on both my desktop machines with Win 7 Pro. The new Firefox sync and pairing are different. I cannot pair my old laptop with my new machines to copy all my bookmarks. I also cannot pair my two desktops.
    What makes it worse, I cannot get the laptop to join the same home group my desktops are in. I tried different combinations with each computer and laptop creating the home group, but I could not get either desktop to be in the same home group as the laptop. The desktops would join each other's home group but not the laptop's. I can see all machines are connected to my home network. This dummy needs help.

    Hi watashi,
    Welcome back :-) I would be very happy to help you out. The new version of Firefox 29 has a new sync. It just came out, so there is no worries about not knowing. Almost easy as pie: [[How to update to the new Firefox Sync]]
    If anything is confusing, please post back so we can help you further and make that article a little more clear if need be :-)

  • How do I get my old Firefox back

    How can I get my old Firefox back for my Windows 7. I'm not sure what version of Firefox I had before I downloaded this new one. With this new Firefox it comes with a Yahoo search bar which I cannot stand and a lot of other buttons I don't want. With my old version I had everything the way I wanted it but now it is all gone. Please help and show me the path way back to my old Firefox.
    Thank you, Mike

    The Yahoo toolbar may have been added by an extension or other (security) software on your computer.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How do i get my old firefox back? i installed and uninstalled Aurora and it took everything with it.

    I installed Aurora your new upgrade. I didn't like it so I used my uninstaller to get rid of it. Everything I had in my old firefox went with it. Bookmarks and all. How can I get my old firefox back? Thank you.

    -> Common Questions after Updating Firefox
    * https://support.mozilla.com/en-US/kb/common-questions-after-updating-firefox
    -> Recovering important data from an old profile
    * https://support.mozilla.com/en-US/kb/Recovering%20important%20data%20from%20an%20old%20profile
    Check and tell if its working.

  • How can I get the old Firefox back, this new one stinks

    how can I get the old Firefox back, this new one stinks

    Firefox is highly customizable and you may be able to customize it to meet your needs.
    If you do not like the new UI, you can make Firefox 4 look and behave more like Firefox 3.6, for details see http://www.computertechtips.net/64/make-firefox-4-look-like-ff-3-6
    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data.
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

Maybe you are looking for

  • Oracle OUTER JOIN on more than one table

    Hi! Friends, please help with this urgent problem: How can an outer join be written on more than one table? An SQL Server query: SELECT * from a INNER JOIN b on a.id = b.id LEFT OUTER JOIN c ON c.id = a.id AND c.id = b.id works fine with SQL SERVER B

  • Recordsets disappear from menu when adding mysql_query ("SET NAMES 'utf8'"); below the connection in php

    I hope someone can help with this. I'm trying to create a dynamic site using dreamweaver CS3, with php5 and mysql5 in the background but I'm having difficulty with recordsets disappearing from the server behaviour menu when tweaking the code to allow

  • Dynamic URL Smartforms

    Hi all, I've to insert a DYNAMIC url in a Smartform behind a label. Some topics to consider: - The Url is created in running time. - The Smartform is called by a Standard Program, so, I can not change the Impressor Program. - I want the url behind th

  • Podcast removed by iTunes Store, re-submission gets no response

    I get an alert from [email protected] back in Oct '08: "Your podcast has been removed from the iTunes Store because no new episodes have been added in the past several months. If you feel that the material in the podcast remains relevant to iTunes us

  • Lire des donées par RS232 provenant d'un pic et écrire dans un fichier xls

    Bonjour à tous, Le but de mon projet est de lire et d'enregistrer des données provenant d'un microcontroleur pic. En fait le pic enregistre des données et les stocke dans une mémoire flash. Ce que j'aimerais faire c'est récupérer les données stockées