In FF4 the opensearch detection does not seem to work. how can I add a search engine , that has an opensearch xml but no plugin?

if you go to a webpage with an opensearch link tag like "<link rel="search" type="application/opensearchdescription+xml...." FF3.x highlighted the small arrow left of the search box and you could add the search engine. this does not seem to work in FF4.
If a searchengine for example for the intranet, does not offer a plugin, just the opnesearch xml, how can one add it to the search engines in FF4?

You do not get the blue glow on the search engine icon in Firefox 4, but you should still see the "Add ... site" entry in the menu if you click the search engines icon on the Navigation Toolbar.

Similar Messages

  • HT5343 Resetting the DNS cache does not seem to work on OS X 10.8, what does really work?

    Resetting the DNS cache does not seem to work on OS X 10.8, what does really work?
    Desired activity: access a site that used to not have a SSL connection through the new https:// root domain. I can accomplish the task over a machine running Windows 7 or XP but flushing the dns of my mac does not affect the outcome — I am still redirected to the hosting provider's website whenever I tried to access the domain with a https:// prefix rather than http://
    I tried sudo killall -HUP mDNSResponder and it's older alternative but no luck.

    In the terminal:
    dscacheutil -flushcache
    and to get a very detailed report on the state of your DNS cache in /var/logs/system.log:
    sudo killall -INFO mDNSResponder

  • I would like to display my bookmarks permanently. Clicking on Firefox, Options and then checking the Bookmarks Toolbar does not do this. How can I display the bookmarks along the left margin like they used to display?

    I would like to display my bookmarks. Clicking on Firefox, then Options and then checking off the Bookmarks Toolbar does not do this.
    What do I have to do to permanently display my bookmarks?

    I asked how I could display my bookmarks permanently.
    This answer does not address that issue. Instead, it tells me how I can display my bookmarks temporarily.
    While this is nice to know, I wanted to find out how to display my bookmarks permanently - not temporarily.

  • Using a different offset from 1 in the function LEAD does not seem to work.

    Hi,
    I have the following rows in a table:
    SQL> select job_id from jw_exception_accesses
    2 where rownum < 11
    3 order by job_id;
    JOB_ID
    442484177
    443178279
    443178279
    443357232
    443443617
    443536258
    1. When I try and use the offset of 2 with the LEAD function, it brings back nothing.
    SQL> select job_id,lead(job_id,2) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 order by job_id;
    JOB_ID NEXT_JOB
    442484177
    2. When I try and use the offset of 1 with the LEAD function, with rownum, it
    brings back nothing:
    SQL> select job_id,lead(job_id,1) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 where rownum < 2;
    JOB_ID NEXT_JOB
    443618290
    3. When I try and use the LEAD function with a particular row as the current row,
    it brings back nothing:
    SQL> select job_id,lead(job_id,2) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 where job_id = 421624348;
    JOB_ID NEXT_JOB
    421624348
    4. When I try and use the MIN function, to just get one row back, it brings
    nothing back.
    SQL> select min(job_id),lead(min(job_id),1) over (order by min(job_id)) as next_job
    2 from jw_exception_accesses;
    MIN(JOB_ID) NEXT_JOB
    421624348
    OR
    SQL> select min(job_id),lead(job_id,1) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 where rownum < 2
    4 group by job_id;
    MIN(JOB_ID) NEXT_JOB
    443618290
    And yet manuals say you can use a particular row as the launching row.
    Any ideas anyone?
    Thanks very much for any help.
    - J

    Hi,
    user1636556 wrote:
    ... 1. When I try and use the offset of 2 with the LEAD function, it brings back nothing.
    SQL> select job_id,lead(job_id,2) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 order by job_id;
    JOB_ID NEXT_JOB
    442484177
    MIN(JOB_ID) NEXT_JOB
    443618290It works fine for me:
    SELECT       ename
    ,       LEAD (ename, 2) OVER (ORDER BY ename)     AS lead_2
    FROM        scott.emp
    ORDER BY  ename
    ;Ouptut:
    ENAME      LEAD_2
    ADAMS      BLAKE
    ALLEN      CLARK
    BLAKE      FORD
    CLARK      JAMES
    FORD       JONES
    JAMES      KING
    JONES      MARTIN
    KING       MILLER
    MARTIN     SCOTT
    MILLER     SMITH
    SCOTT      TURNER
    SMITH      WARD
    TURNER
    WARDNotice that LEAD does return NULL near the ned of the result set, when there are not 2 later rows.
    Post a complete test script that people can run to re-create your problem. Include CREATE TABLE and INSERT statements for your tables (unless you're using commonly available tables, like those in the scott or hr schemas).
    Post the results you want to get from that data.
    2. When I try and use the offset of 1 with the LEAD function, with rownum, it
    brings back nothing:
    SQL> select job_id,lead(job_id,1) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 where rownum < 2;
    JOB_ID NEXT_JOB
    443618290
    3. When I try and use the LEAD function with a particular row as the current row,
    it brings back nothing:
    SQL> select job_id,lead(job_id,2) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 where job_id = 421624348;
    JOB_ID NEXT_JOB
    421624348
    4. When I try and use the MIN function, to just get one row back, it brings
    nothing back.
    SQL> select min(job_id),lead(min(job_id),1) over (order by min(job_id)) as next_job
    2 from jw_exception_accesses;
    MIN(JOB_ID) NEXT_JOB
    421624348
    OR
    SQL> select min(job_id),lead(job_id,1) over (order by job_id) as next_job
    2 from jw_exception_accesses
    3 where rownum < 2
    4 group by job_id;Analytic functions are computed after the WHERE clause is applied. If the WHERE clause narrows the result set down to n rows, then LEAD (x, n) will always return NULL.
    Analytic functions are computed after the GROUP BY clause, too, so you can use analytic functions in a GROUP BY query, but only using expressions that would be legal in the SELECT clause (aggregates, the GROUP BY columns, and constants).

  • How come rescaling "the katies website" does not seem to work in the browsers as it does on the videos that go withe the excercise?

    browsers used:
    Firefox , Chrome and Iexplorer
    When rescaling the browser windows, eg the salad menu picture as used in katies website is not joining in rescaling the browsers?

    Are you referring to menu on the page ? any any other specific content ?
    Any content used as 100% browser width will work fine with browser resize, if you are not getting the same behavior , please provide the link to the page so that we can have a look.
    Thanks,
    Sanjit

  • The search feature in messages does not seem to work with pre IOS 7 messages

    After updating to IOS 7 the search feature in the Messages app does not seem to work with messages received prior to the update.  Texts received since the IOS 7 update search correctly.  Is this a bug or a feature of moving to iMessages rather than just receiving standard texts?

    Although not related to your question you have outdated ShockWave Flash Player go ahead and update your flash player by going to www.get.adobe.com/flashplayer
    As for your problem, One of your add-ons might be the culprit too. Try running Firefox in [[Safe Mode]] with all add-ons disabled. If that solves the problem, see [[Troubleshooting extensions and themes]] and possibly [[Troubleshooting plugins]]

  • HT4623 When i click on general settings, the software update does not seem to come up? It wont let me download any apps.

    When i click on general settings, the software update does not seem to come up? It wont let me download any apps.
    I Want to download i0s 5
    i have ipod touch 3rd gen

    You need to connect your iPod to iTunes on a computer and update from there.
    Before updating, I recommend that you create a backup first, using : http://support.apple.com/kb/ht1766
    Please note that iPod 3d generation only goes up to iOS 5.1.1
    To update the iPod, use: http://support.apple.com/kb/ht4623
    scroll down to the part that's about updating with iTunes.
    Good luck
    Stijn
    Message was edited by: jesterwylde

  • HT1338 My mac is becoming too slow. It takes long to open word documents, pdf files or excel documents or even safari. Can anybody suggest something? I have tried to reduce the number of open applications, but does not seem to work.

    My mac is becoming too slow. It takes long to open word documents, pdf files or excel documents or even safari. Can anybody suggest something? I have tried to reduce the number of open applications, but does not seem to work.

    Hi ...
    Checked to see how much free space there is on the startup disk lately?
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. Make sure there's a minimum of 15% free disk space.
    Freeing Up Hard Disk Space - Mac GuidesFreeing Up Hard Disk Space - Mac Guides
    If disk space is not the issue, booting in Safe Mode deletes system caches that may help.
    A Safe Mode boot takes longer then a normal boot so be patient.
    Once you see the Desktop, click the Apple menu icon top left corner of the screen.
    From the drop down menu click Restart.
    See if that makes a difference ...

  • HT1923 I am using windows 7 and have upgraded itunes to 11. Now when I open my music library in itunes and click on a song it says "original file could not be found" Over 2000 songs come up this way and locate does not seem to work. Before the upgrade all

    With Windows 7 I upgraded itunes to 11. Now in my itunes library, when I click on a song "original file could not be found" comes up. This happens with over 2000 songs, but it seems to be ones I recorded from cd's. Locate does not seem to work. Has anyone else had this problem?

    Highlight a song that is supposedly missing, press CTRL+I to Get Info, say no when asked to locate the file, then look at the summary tab. Where does iTunes "think" the file should be? Where is it really? You may need to give a configuration file a minor tweak.
    tt2

  • I recently purchased a Canon 7D. I own Adobe Photoshop/Bridge CS5. I cannot open my raw images in Bridge. I have tried to download the plug in but does not seem to work. Please Help, I need to be able to open my raw images in Bridge ASAP. I do not want to

    I recently purchased a Canon 7D. I own Adobe Photoshop/Bridge CS5. I cannot open my raw images in Bridge. I have tried to download the plug in but does not seem to work. Please Help, I need to be able to open my raw images in Bridge ASAP. I do not want to upgrade to CS6 at this time.

    If you had given us sensible information, I could look it up for you if your efforts fail.
    Right now, I don't even know if you are on a Mac or on a Windows box.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • My movie has clips that have some extracted audio that I would like to use for the menu music in iDVD 11. Does anyone know how to do this? Copy and paste does not seem to work.

    My iMovie 11 movie has clips that have some extracted audio that I would like to use for the menu music in iDVD 11. Does anyone know how to do this? Copy and paste does not seem to work.

    I would use Quicktime Pro.
    See: QuickTime Pro: How to Extract or Disable Tracks at http://docs.info.apple.com/article.html?artnum=42596 and QuickTime Player 7 Help - Extracting, Adding, and Moving Tracks at http://docs.info.apple.com/article.html?path=QuickTime%20Player/7/en/c3qt6.html
    To get Quicktime 7.6.6 for Snow Leopard see: QuickTime Player 7.6.6 for Mac OS X v10.6.3 at http://support.apple.com/kb/DL923  (Quicktime 7.6.6 is the latest version.)
    To upgrade to Quicktime Pro see: QuickTime Player 7 Help - Getting QuickTime Pro at http://docs.info.apple.com/article.html?path=QuickTime%20Player/7/en/c2qt.html

  • I used to be able to refresh a page by hitting the F5 key. That does not seem to work anymore. Is there a keyboard shortcut for refresh, or can I create one?

    I used to be able to refresh a page by hitting the F5 key. With 4.0.1, that does not seem to work. Is there a different keyboard shortcut, or can I create one?

    Click the Refresh button on the right hand side of the location bar container on the Navigation Toolbar or press "Ctrl + R" or F5 to reload a web page.
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)

  • Using the content aware move tool, I want to move an item from one image to another image but it does not seem to work. I think I need two layers on one document so how do I do this

    Using the content aware move tool, I want to move an item from one image to another image but it does not seem to work. I think I need two layers on one document so how do I do this

    Good day!
    A simple Paste does not work for you?
    It should place the clipboard content as a new Layer which you can then move around.
    If there is any chance that the elements need to be scaled, rotated etc. I would prefer to place them as Smart Objects (File > Place …) and do the masking that is specific to the images themselves in those.
    Regards,
    Pfaffenbichler

  • THE DETACH FROM TEMPLATE FUNCTION IN DREAMWEAVER CC DOES NOT SEEM TO BE FUNCTIONAL Can you please explain.

    The detach from template function in Dreamweaver CC does not seem to be functional
    Can some explain.
    Bruce K.

    Hi Lalita
    Yes you are correct, I TRY THE Modify -> Templates -> Detach from Template.     I have built over 50 websites with this method using Modify -> Templates -> Detach from Template in DW CS5.5
    After a save a page to a template for future ref.
    I create a new page using this temp. but can not use the Modify -> Templates -> Detach from Template. The Detach from Template is not functional. It is there but when I mouse over its not operative.
    Does DW CC need update maybe.
    Thanks
    Bruce

  • How can I receive a fax?  The phone jack does not seem to fit in the ethernet port....(OS 10.6.7)

    how can I receive a fax?  The phone jack does not seem to fit in the ethernet port....(OS 10.6.7)

    sarahfromberkeley wrote:
    how can I receive a fax?  The phone jack does not seem to fit in the ethernet port....(OS 10.6.7)
    The MacBook has no fax-modem. You will need an external (USB) modem.
    Stedman

Maybe you are looking for

  • How to Access Protected Method of a Class

    Hi,      I need to access a Protected method (ADOPT_LAYOUT) of class CL_REIS_VIEW_DEFAULT. If i try to call that method by using class Instance it is giving error as no access to protected class. Is there any other way to access it..

  • [JS] Help Locating TextCount.js

    Hi Guys, I am trying locate TextCount.js It google says It should be in the Goodies folder of the instal cd. I've looked in my CS Package without luck, also CS2 and CS3 Would anyone know where it is? Or be able to port the code here for me please. Or

  • Setting Values in an Array of Clusters via COM

    Hello everybody, I need some help concerning LabView and COM (ActiveX). I'm working on NT 4.0 with LabView 5.1 and I've written a COM-Client in Visual C++ 6.0 which controls LabView. I can set the values of normal Controls, Arrays and Clusters. But I

  • Control break statements in smart forms

    Hi, Can we use control break statements(at new,at end of) in smart forms? if no why? if yes, how? Regards, Sonika

  • Can anyone spot any errors....

    <%      // +------------------------------------------------------------------------      // | LEARNING STYLE DATA QUERY      // +------------------------------------------------------------------------      boolean learningstyle = false;      String