Classic Search vs Normal search

Hi all,
In the SES 10.1.8.2, the advanced configuration, they mentioned a Classic Search.
http://<host>:<port>/search/query/search-classic.jsp.
What is different between normal search (http://<host>:<port>/search/query/search) and Classic search?
Can anyone explain this one. which one is advanced?
Thanks!

Hi,
Thanks for your valuable reply. Bcoz, In the normal search, the suggested content displays as a top of the page. It's not looks good. Thats y my user, need the results displays like a classic search. Can i use classic search instead of normal search?
OR
how to customize the normal search result looks like a classic search result?
pls help me.
Thanks!

Similar Messages

  • For some reason my google search bar which normally sits in the top right hand side of my screen has disappeared, but my normal search bar still remains. I want to get the google search bar back, but I'm not sure how

    for some reason my google search bar which normally sits in the top right hand side of my screen has disappeared, but my normal search bar still remains. I want to get the google search bar back, but I'm not sure how

    See Here...
    https://discussions.apple.com/message/19334395#19334395

  • My mac is infected with viruses, Safari can not normally search for constantly appear commercials and some unknown site. What to do? antivirus free program that you recommend?

    my mac is infected with viruses, Safari can not normally search for constantly appear commercials and some unknown site. What to do? antivirus free program that you recommend?

    You may have installed the "VSearch" trojan, perhaps under a different name. Remove it as follows.
    Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data before proceeding.
    Step 1
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot," "Trovi," or "Conduit" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Reset the home page and default search engine in all the browsers, if it was changed.
    Step 2
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "com.vsearch.agent.plist" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    This trojan is distributed on illegal websites that traffic in pirated content. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that this Internet criminal has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Search doesn't search ~/Library/Preferences and others

    Since upgrading to 10.5 I've noticed that Spotlight (as well as doing a normal finder search) doesn't search the ~/Library/Preferences folder (or a lot of other folders as well including Application Support).
    For example try to search for com.apple.itunes and nothing will come up.
    BUT if you navigate to the Preferences folder and search for com.apple.itunes ONLY in the Preferences folder it will show up.
    This kind of ruins the search for me, and forces me to use lame 3rd party search apps.
    Does anyone know a way to make Spotlight and the regular finder search, actually search the entire system?
    Thanks

    smithrj wrote:
    Spotlight's settings are in system preferences, you can click them all, no big difference. Spotlight has many limitations, and is not the application it's made out to be. It will find many items, and also skip many. That's it, not so great of news. The index includes all folders, yet some will not display.
    Ray
    Thanks.
    I'm thinking there's gotta be a command-line hack/fix to take care of this issue. I'm sure it annoys a lot of people.
    Anyone?

  • Linear search and binary search

    Hi
    can any one tell me what is linear and binary search in detail.
    and what is the difference between them .
    which one is useful in coding.
    Thanks&Regards,
    S.GangiReddy.

    hi,
    If you read entries from standard tables using a key other than the default key, you can use a binary search instead of the normal linear search. To do this, include the addition BINARY SEARCH in the corresponding READ statements.
    READ TABLE <itab> WITH KEY <k1> = <f1>... <kn> = <fn> <result>  BINARY SEARCH.
    The standard table must be sorted in ascending order by the specified search key. The BINARY SEARCH addition means that you can access an entry in a standard table by its key as quickly as you would be able to in a sorted table.
    REPORT demo_int_tables_read_index_bin.
    DATA: BEGIN OF line,
            col1 TYPE i,
            col2 TYPE i,
          END OF line.
    DATA itab LIKE STANDARD TABLE OF line.
    DO 4 TIMES.
      line-col1 = sy-index.
      line-col2 = sy-index ** 2.
      APPEND line TO itab.
    ENDDO.
    SORT itab BY col2.
    READ TABLE itab WITH KEY col2 = 16 INTO line BINARY SEARCH.
    WRITE: 'SY-SUBRC =', sy-subrc.
    The output is:
    SY-SUBRC =    0
    The program fills a standard table with a list of square numbers and sorts them into ascending order by field COL2. The READ statement uses a binary search to look for and find the line in the table where COL2 has the value 16.
    Linear search use sequential search means each and every reord will be searched to find. so it is slow.
    Binary search uses logrim for searching. Itab MUST be sorted on KEY fields fro binary search. so it is very fast.
    The search takes place as follows for the individual table types :
    standard tables are subject to a linear search. If the addition BINARY SEARCH is specified, the search is binary instead of linear. This considerably reduces the runtime of the search for larger tables (from approximately 100 entries upwards). For the binary search, the table must be sorted by the specified search key in ascending order. Otherwise the search will not find the correct row.
    sorted tables are subject to a binary search if the specified search key is or includes a starting field of the table key. Otherwise it is linear. The addition BINARY SEARCH can be specified for sorted tables, but has no effect.
    For hashed tables, the hash algorithm is used if the specified search key includes the table key. Otherwise the search is linear. The addition BINARY SEARCH is not permitted for hashed tables.
    Binary search must be preffered over linear sarch.
    Hope this is helpful, Do reward.

  • Quick search no longer searches on parts of words, only whole words. How do I fix this?

    Quick search no longer searches on parts of words, only whole words. So for Example, if I were normally searching for my colleague with the last name of chadwick, I would type c then h then a then d until the list on left chadwick. Now, when I do a search on "chadw" nothing comes up and i have to type in the full word or name. I am a victim of one of these recent "upgrades" I guess.

    Never mind. It was because I had the search set to searching the body of all the messages.

  • How do u delete the history for search page on search iPhone?

    When you slide all the way to the left on your iPhone, search iPhone window is there. On this page, there's a search bar and
    you type in whatever you need to search and hit search web or search Wikipedia but also below that is options for if what you type
    in the search bar something you've recently sent in a txt message, it will give you the option to click a previous message to view with
    the word relating to what you are searching. Even after deleting txt messages, the deleted ones will still appear! For example if you wanted
    to search for "dogs" you have the option to search web, search Wikipedia, or if you have ever said the word dog in a txt message to someone
    that message will appear below as an option to click on as well. If you've deleted the message that appears from your phone, and you click it
    in this window, you will be directed to your txt message page. How do I clear this history??

    hello, you can delete your current private data and history in the ''settings menu > privacy''. if you open sensitive websites you can do so in a private tab - then they won't appear in your history or the top sites list.
    [[Mobile Private Browsing - Browse the web on your mobile device without saving or syncing information about the sites you visit]]

  • Mac OS 10.4.11, Firefox 3.6.25. My home page has changed from Google Search to Bing Search, how do i get rid of bing and get Google back?

    Mac OS 10.4.11, Firefox 3.6.25. My home page has changed from Google Search to Bing Search, how do i get rid of bing and get Google back?

    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.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    See also:
    *http://kb.mozillazine.org/Preferences_not_saved
    *https://support.mozilla.com/kb/Preferences+are+not+saved

  • RE: Firefox search box - manage search engines - get more search engines.. IT DOESN'T WORK , I now get 1000's of useless irrelevant results, PLEASE FIX THE SITES SEARCH NOW, IT'S COMPLETELY USELESS NOW

    RE: Firefox search box -> manage search engines -> get more search engines..
    IT DOESN'T WORK
    I just want to add youtube + some others to the list of sites in the Firefox search box, I now get 1000's of useless irrelevant results, PLEASE FIX THE SITES SEARCH NOW, IT'S COMPLETELY USELESS NOW

    Hi Kvoter,
    What are you hoping for, firefox to display lists of sites you have visited or bookmarked ?
    *''' it should be able to do that'''
    * my firefox does that
    I am only a fellow ordinary user of Firefox & XP, but maybe the problem is on your machine, rather than needing a fix from firefox. If you take a little time to read this you may be able to sort out the problems yourself.
    I hope you do not mind me covering a few basics:
    * the [[Search bar]] { <-- clickable link -- ] is designed to produce a lot or results, whereas
    *the [[Location bar search|Location Bar]] is a lot more specific and may be [[Location bar autocomplete#w_controlling-behavior|set]] to include or exclude History & or [[bookmarks]]
    If you are getting literally 1000s of totally unrelated results you may need to consider [[Is my Firefox problem a result of malware]]
    Hope to hear that you have solved the problem, or a bit more detail about what still is a problem.
    John

  • Document search and knowledge search

    Hi All,
    I have seen two work centres on interaction center:
    document search and knowledge serach.
    what is the difference between the two.
    how can we configure the same.
    please provide some docs.
    Thanks,
    Priya

    Hello Priya,
    Knowledge Search is used to search for solutions to problems using the Software Agent Framework (SAF) to search against the Solution Database (SDB) or other knowledge repositories that you configure (such as Case Management or Service Tickets).
    The Document Search is for searching for related documents that might be linked to the confirmed account using Content Management.
    You can find detailed information and configuration instructions in the online help.
    Warm regards,
    John

  • How to add a dropdown menu to the search box (the 'search this site' box that appears on all subsites)

    Hello there,
    I know that in the search center you can add search verticals. Then you can configure the search box so it has a drop down menu so you can specify the result source you want to search. 
    But my question is about the 'search this site' box which appears on all subsites, so not the one in the search center. Is it possible to add the same dropdown menu to this box as in the search center?
    Thanks in advance!

    Hi,
    According to your post, my understanding is that you wanted to add a dropdown menu to the search box.
    You need to look at the Search Settings page that is located under the Site Collection Administration of the Site Settings.
    Here are some similar blogs for your reference:
    SharePoint 2013 Search Settings and Search drop down menu
    Customizing Search Navigation on a SharePoint 2013 Publishing Site  
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • 1. Firefox Help 2. Search Refine your search Found 0 results for I have a lot of firefox downloads BUT can't find anything to click to see them - Where is the button that will show all Firefox downloads? in English in English

    1. Firefox Help
    2. Search
    Refine your search
    Found 0 results for I have a lot of firefox downloads BUT can't find anything to click to see them - Where is the button that will show all Firefox downloads? in English in English

    Tools > Downloads or {Ctrl + J} will open the Downloads window

  • Why are preivous searches showing in search bar?

    Running Firefox 34.0.5. Windows 7 64bit.
    Somehow with these new changes to the search bar (which I hate) it now shows prior searches as I start typing in a new subject. Meaning I type "a" and then it shows me all my searches I made starting with the letter "A". I never had this show up before the latest update.
    How do I turn this off or disable this feature? In my privacy section I have "never remember" selected. Is there something in "about:config" I need to do?
    PS. The new search bar sucks. Before, I could click on the site icon and simply hit the enter key where it takes me to the site's home page (meaning I could just click the youtube icon and hit enter for a blank search where it takes me to the homepage). Now I have to do two steps to accomplish what I used to do. Just rambling

    Hello bravacentauri83, you can have your "old" Search Bar again, go to
    [http://kb.mozillazine.org/About:config about:config], copy the next bold '''browser.search.showOneOffButtons''' and paste it in the search field, now
    double-click on it to make it '''false''', exit firefox and restart it.
    For the searches see : [https://support.mozilla.org/kb/how-use-popular-search-suggestions-in-search-bar#firefox:winxp:fx34 How to use popular search suggestions in the Search Bar]
    thank you

  • There isn't Org. Search in free search of  PERNR on PNP Screen with report

    Hi experts,
    I create a standard PNP screen with HR report, but i find there isn't org. structure search in free search for PERNR .
    Should I do configure anywhere to use the org. struture search of PERNR ?
    Thanks a lots.
    Yoga.

    Hi,
    do you use a reportclass e.g. X__X2201 ?
    Regards
    Bernd

  • Problem with removing Search and Advanced Search functionalities in Portal

    Hi,
          As per our client requirement, we have removed search and advanced search functionalities in Masthead and those are working fine. But when ever we restarted the portal server, these search options are reappearing in portal.
              I am not getting why it is happening and every time we restarted the server, we are removing these search functionalities from masthead.
              If anyone knows why it is happening, kindly share with us
    Thanks & Regards
    Pavan

    Hi Santosh,
                         Problem is not solved. Where can i find the Standard tool area iview used in Default frame work page ?
    At present, we disabeled the search and it's working fine. But when we restart the portal, search is again reappearing and we need to disable that once again.
               Is there any sollution for this problem?? Kindly let me know..
    Thanks & Regards
    Pavan
    Edited by: pavanakrishna reddy on Mar 24, 2010 9:44 AM

Maybe you are looking for