Adding another search module

Hello,
I would like to use http://www.helpuu.com/ search engine directly from Firefox (as a search module - search box in upper right corner of the browser). Is it possible?
Thanks.

Install the "Add to Search bar" extension then you can right-click within the search area on that page and choose "'''Add to Search Bar...'''".
* https://addons.mozilla.org/en-US/firefox/addon/add-to-search-bar/
As an alternative to having a lot of search engines, you can generate a bookmark and a keyword using Firefox built-in facilities, no extension involved. Right-click with the search area on that page and choose "'''Add a Keyword for this Search'''" so if you created a keyword of "helpuu" you would simply type the following into the location bar:
:'''helpuu''' firefox keyword shortcuts
Because I use keyword shortcuts a lot, I have prevented default external searching from the location bar, and my keyword shortcuts include a colon(":") so I might use something like "helpuu:" or just "uu:" -- keyword shortcuts should be short, easy to type and most important easy to remember -- such as abbreviations. All of mine have the keyword at the beginning of the the bookmark title are in for the most part in one folder :"K" and are sorted on title so if I forget one I can find it easily from the folder for from an AwesomeBar search (internal search before hitting Enter at the location bar).
* [http://dmcritchie.mvps.org/firefox/search.htm Search and Substitution Shortcuts especially for Firefox users]
* [http://dmcritchie.mvps.org//firefox/kws.htm Firefox Keyword Shortcuts]

Similar Messages

  • Need assistance adding another search engine

    I have an iMAC.
    I am satisfied with Safari, but want the flexibility to use an additional search engine at the same time.
    How can I set up my computer so I have the ability to surf with another  internet service provider (ex. explorer, google chrome) while I am using Safari?
    Thanks,
    Steve

    Dear  Rudegar,
    Thank you for prompt reply, and I apologize for not asking a technically correct question.  
    I am currently streaming music through the Internet using Safari.
    I want to steam another recording (at the same time), and was told I need to access another browser  in order to perform this function.
    Judging by your reply, I think the  answer is "Maybe - but I need to check out https://extensions.apple.com" to see if this is feasible.
    Did I ask the question more clearly?  Did I understand your response?
    Thanks,

  • Adding another Search Node to a new server

    Hello,
    I have a new server on which I would like to install the WCI search service, and disable the current one on the server that has the search on it. The reason is to take load off the existing server.
    I ran the WCI installer on the new server and just installed the search service - and left it defaulted - it is called node01 on port 15250. But in the Cluster manager I cannot add the new node.
    I tried changing the name of the server to the new server name, but kept the node and port the same - but it won't add.
    i.e
    Node Name Host Name Port Partition
    serverA01 serverA.com 15250 0
    serverB01 serverB.com 15250 0 <----this won't add
    I get:
    The number of partitions did not change
    The number of nodes changed for partition 0
    This can be an expensive repartition operation
    and I see:
    Starting off repartitionCmd
    Current Topology:
    actptlisvcv101, partition 0, 10.44.0.56:15250
    16:25:12 thread="1788" Cluster nodes file has specified 2 nodes which are physically equivalent: actptlisvcv101is the same as actptlisvcv101
    16:25:12 thread="1788" Error EC_CLUSTER_NODES_INVALID in ..\..\searchutil\ClusterNodesFile.cc at line 35 (system error code 0: The operation completed successfully.)
    Error opening, reading or parsing file: E:\bea\alui\ptsearchserver\10.3.0\cluster\cluster.nodes.tmp
    couldn't parse E:\bea\alui\ptsearchserver\10.3.0\cluster\cluster.nodes.tmp
    cadmin [options]
    use cadmin -help to get full help
    REPARTITION FAILED
    Apr 11, 2011 4:25:23 PM
    It seems like I have to reimport the cluster.pte to make it work. The it forces the Hostname to ServerB.com. But I can't have two search nodes with different servers?
    Is this correct?
    Thanks,
    V
    Edited by: Vivekvp on Apr 11, 2011 3:22 PM

    V,
    Actually, I was asking, if (when you installed the second node), you specified a shared location for the cluster files. It is a screen in the installer that specifically asks this question. Not well docuemented :|
    Typically the easiest course, when moving a search server, is to delete the old installation of search server, install a new node from scratch, point the portal at its URL, and run Search Repair (overnight or over the weekend, with Verbose logging).
    I have some notes to share on scaling a search server if you eMail me privately, [email protected]
    Cheers,
    Robert

  • Powershell script assistance - adding another property to existing script

    This is not my script but was written by Richard L. Mueller. It works perfectly for us but I would like to know if the account is enabled or disabled when the output is created. Basically it would output the name, lastlogon and then either enabled or disabled.
    I've attempted to add a new property by adding another " $Searcher.PropertiesToLoad.Add" and "$Result.Properties.Item ".
    It works fine if I add something like "givenName" but I can't find the property name to show if the account is enabled or disabled.
    The entire script is shown below:
    # PSLastLogon.ps1
    # PowerShell script to determine when each user in the domain last
    # logged on.
    # Copyright (c) 2011 Richard L. Mueller
    # Hilltop Lab web site - http://www.rlmueller.net
    # Version 1.0 - March 16, 2011
    # This program queries every Domain Controller in the domain to find the
    # largest (latest) value of the lastLogon attribute for each user. The
    # last logon dates for each user are converted into local time. The
    # times are adjusted for daylight savings time, as presently configured.
    # You have a royalty-free right to use, modify, reproduce, and
    # distribute this script file in any way you find useful, provided that
    # you agree that the copyright owner above has no warranty, obligations,
    # or liability for such use.
    Trap {"Error: $_"; Break;}
    $D = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain()
    $Domain = [ADSI]"LDAP://$D"
    $Searcher = New-Object System.DirectoryServices.DirectorySearcher
    $Searcher.PageSize = 200
    $Searcher.SearchScope = "subtree"
    $Searcher.Filter = "(&(objectCategory=person)(objectClass=user))"
    $Searcher.PropertiesToLoad.Add("distinguishedName") > $Null
    $Searcher.PropertiesToLoad.Add("lastLogon") > $Null
    # Create hash table of users and their last logon dates.
    $arrUsers = @{}
    # Enumerate all Domain Controllers.
    ForEach ($DC In $D.DomainControllers)
    $Server = $DC.Name
    $Searcher.SearchRoot = "LDAP://$Server/" + $Domain.distinguishedName
    $Results = $Searcher.FindAll()
    ForEach ($Result In $Results)
    $DN = $Result.Properties.Item("distinguishedName")
    $LL = $Result.Properties.Item("lastLogon")
    If ($LL.Count -eq 0)
    $Last = [DateTime]0
    Else
    $Last = [DateTime]$LL.Item(0)
    If ($Last -eq 0)
    $LastLogon = $Last.AddYears(1600)
    Else
    $LastLogon = $Last.AddYears(1600).ToLocalTime()
    If ($arrUsers.ContainsKey("$DN"))
    If ($LastLogon -gt $arrUsers["$DN"])
    $arrUsers["$DN"] = $LastLogon
    Else
    $arrUsers.Add("$DN", $LastLogon)
    # Output latest last logon date for each user.
    $Users = $arrUsers.Keys
    ForEach ($DN In $Users)
    $Date = $arrUsers["$DN"]
    "$DN;$Date"

    It is part of the userAccountControl attribute. Retrieve that attribute for each user and test if the ADS_UF_ACCOUNTDISABLE bit (2) is set.
    -- Bill Stewart [Bill_Stewart]

  • Adding Another LDAP Search Attribute

    Hi,
    Can you please point me to any document for adding another ldap search attribute apart from uid.
    Regards,
    Edited by: IDM1312 on Jun 9, 2008 4:28 PM

    Yes, here is what happens when your user tries to login:
    They enter some username & password. The username can be any attribute you wish it to be (email, UID, cn, etc). The actual authentication is not done using the value the user enters. This is because you need to authenticate with the user's DN. To get the DN, access manager does a lookup on the directory server to see if what the user entered exists in any of the attributes in the search alias list. If the search is successful, it returns the user's DN. Access Manager then uses the DN and password to authenticate the user.
    So, if you expect your users to enter their email address, you will want your email attribute in this list. You can have multiple values in the list, if for example you want to allow users to enter uid OR email address. I would be careful about allowing this flexibility if you are in a large organization because this will bring increased overhead to both AM & DS.
    Also, be sure that whatever attribute you use is indexed!!
    I hope this helps,
    Eric

  • New import parameter ATPCHECK to be added in func module - IMPACT?

    Hi !
    We are in the Realization phase of implementing SAP CRM, and also undercone a ECC 6.0 migration 3 months back. We are faced with the foll problem....
    Whenever a reservation is to be created from the CRM system a functional module u2018'CRM_SRV_LOG_PROCESS_RSRV' is called in the ERP system. Within this functional module, another functional module u2018MB_RESERVATION_CREATE_INTERNALu2019 is called. It is this functional module which actually creates a reservation and performs ATP check.
    In the ECC system a new import parameter ATPCHECK has been added in u2018MB_RESERVATION_CREATE_INTERNALu2019 functional module and this is not filled whereas in R/3 this parameter does not exist at all.
    This parameter needs to hold a value X for ATP to happen in THE ECC system.
    It is proposed to fix this problem by adding the parameter ATPCHECK with value X in the functional module 'CRM_SRV_LOG_PROCESS_RSRV' when 'MB_RESERVATION_CREATE_INTERNALu2019 is called.
    We have not modified any function modules so far, hence would like to know...
    1. Whether the proposed solution is correct?
    2. What would be the imact (things to watch out for) while carrying out changes in the function module?
    Would be grateful to get a reply.
    Thanks & Regards,
    Ajeetha.

    Hello
    I have referred to the systems ECC 6.0 and SAP 4.7. In SAP 4.7, function module MB_RESERVATION_CREATE_INTERNAL never had ATP check inbuilt. See below:
    ***************Start if Snap from 4.7*********************
    FUNCTION mb_reservation_create_internal.
    ""Lokale Schnittstelle:
    *"  IMPORTING
    *"     REFERENCE(I_RKPF) LIKE  RKPF STRUCTURE  RKPF
    *"     REFERENCE(TESTRUN) TYPE  BAPI2093_TEST OPTIONAL
    *"  EXPORTING
    *"     REFERENCE(RESERVATION) TYPE  BAPI2093_RES_KEY-RESERV_NO
    *"  TABLES
    *"      IT_RESB STRUCTURE  RESB
    *"      PROFITABILITYSEGMENT STRUCTURE  BAPI_PROFITABILITY_SEGMENT
    *"      RETURN STRUCTURE  BAPIRET2
    comments:
    - no availibility check*
    - no field selection*
    - no calender check*
    ***************End of Snap from 4.7*********************
    This is additional functionality provided in ECC 6.0 by giving additional parameters:
    ***************Start if Snap from ECC6*********************
    FUNCTION MB_RESERVATION_CREATE_INTERNAL.
    ""Lokale Schnittstelle:
    *"  IMPORTING
    *"     REFERENCE(I_RKPF) LIKE  RKPF STRUCTURE  RKPF
    *"     REFERENCE(TESTRUN) TYPE  BAPI2093_TEST OPTIONAL
    *"     REFERENCE(ATPCHECK) TYPE  BAPI2093_ATPCHECK OPTIONAL
    *"     REFERENCE(CALCHECK) TYPE  BAPI2093_CALCHECK OPTIONAL
    *"     REFERENCE(RESERVATION_EXTERNAL) TYPE  BAPI2093_RES_KEY-RESERV_NO
    *"       OPTIONAL
    *"  EXPORTING
    *"     REFERENCE(RESERVATION) TYPE  BAPI2093_RES_KEY-RESERV_NO
    *"  TABLES
    *"      IT_RESB STRUCTURE  RESB
    *"      PROFITABILITYSEGMENT STRUCTURE  BAPI_PROFITABILITY_SEGMENT
    *"      RETURN STRUCTURE  BAPIRET2
    ***************End of Snap from ECC6*********************
    So, I think there should not be any change which need to be made to these function modules.
    Thanks
    Amol Lohade

  • How to make site search module work?

    Hi guys
    I am working on a sample site http://webmar.businesscatalyst.com/index.
    I had insert a site search module but anyhow when i search for any query and click the Go button, it will go the searchresult page but nothing get displayed.
    I do had placed a {module_searchresults} in the page content area of searchresult page.
    How I populate by search result page?
    Thanks
    Andy

    Andy make sure you index (re-index)your site
    Modules > Site Search > Re- Index button
    If site is a sample site ( demo mode ) I am not sure if it will index with new changes to the way demo sites works. Give it a try it may be ok internally, but wont index with S E unless live site
    Good to re-index if made changes or added content

  • Site Search Module Re-Direct

    Hi guys,
    Wondering if there is a way of adding a 're-direct' code to the Site Search Module HTML code, so that people can enter info in the site search box, and rather than keeping them on the same page, it takes them to a new page.
    Thanks,
    Aaron

    Nicole, You was right in the first place but you you said &PageID= for the url when in actual fact it is just ID.
    So, Aaron you do as Nicole said first (because it is easier) but use ID instead of PageID so..
    /Default.aspx?SiteSearchID=3510&amp;ID=/yoursubfolder/custompage
    &amp; is the HTML entitity for & and is better valid markup

  • ADDING ANOTHER 4GB MODUAL..

    Hi - I think I would only need to add another 4GB module for what I use my Macbook Pro for. I have read that this would reduce it's performance by about 15% as apposed to having 2 x 4GB module. Does this sound right to you. I can not afford 2 x 4GB modules. Has anyone added another 4GB and did this help?

    MacBook Pro AD is here:
    http://discussions.apple.com/category.jspa?categoryID=190
    http://www.apple.com/support/macbookpro/

  • Adding another AM to existing setup

    Hi All,
    I have following setup at present.
    2 backend servers and 2 front end servers. 2 backend servers a and b has directory server installed in MMR. 2 front end servers p an q has webservers and Access Manager. AM session fail over has been configured on it.
    Now I have added another backend server &lsquo;c' in the setup. I have configured LDAP on it and now I am all three in MMR.
    I have following MMR agreements:
    Agreemenr suffix Source server Destnation server.
    dc=DOMAIN,dc=COM a b
    dc=DOMAIN,dc=COM b a
    dc=DOMAIN,dc=COM a c
    dc=DOMAIN,dc=COM c a
    dc=DOMAIN,dc=COM b c
    dc=DOMAIN,dc=COM c a
    Exactly similar for following suffixes:
    o=comms-config
    o=pab
    o=piserverdb.
    Now I am trying to add new Access manager (server r) to the existing setup.
    However when I am trying to configure AM using modified amsamplesilient file it works. But when I restart web server, I see the error below:
    warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    failure: WebModule[/amserver]StandardWrapper.Throwable
    java.lang.StackOverflowError
    at java.lang.Integer.parseInt(Integer.java:497)
    at java.net.URLStreamHandler.parseURL(URLStreamHandler.java:195)
    at java.net.URL.<init>(URL.java:596)
    at java.net.URL.<init>(URL.java:464)
    at java.net.URL.<init>(URL.java:413)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:801)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.service
    failure: WebModule[/amserver]PWC1396: Servlet /amserver threw load() exception
    java.lang.StackOverflowError
    at java.lang.Integer.parseInt(Integer.java:497)
    at java.net.URLStreamHandler.parseURL(URLStreamHandler.java:195)
    at java.net.URL.<init>(URL.java:596)
    at java.net.URL.<init>(URL.java:464)
    at java.net.URL.<init>(URL.java:413)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:801)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405) As I resolution to this, I followed following steps. But failed to remove &lsquo;iplanetamplatformservice'.
    [root@dr-msgfe1|mailto:root@dr-msgfe1] # ./amadmin -u amadmin -w 14amrk20 -r iplanetamplatformservice
    com.sun.identity.authentication.spi.AuthLoginException: Could not get module properties
    at com.sun.identity.authentication.AuthContext.checkException(AuthContext.java:1396)
    at com.sun.identity.authentication.AuthContext.checkAndSetLoginStatus(AuthContext.java:1417)
    at com.sun.identity.authentication.AuthContext.runRemoteLogin(AuthContext.java:728)
    at com.sun.identity.authentication.AuthContext.runLogin(AuthContext.java:606)
    at com.sun.identity.authentication.AuthContext.login(AuthContext.java:498)
    at com.sun.identity.authentication.AuthContext.login(AuthContext.java:356)
    at com.iplanet.am.admin.cli.Authenticator.getAuthContext(Authenticator.java:231)
    at com.iplanet.am.admin.cli.Authenticator.sessionBasedLoginInternal(Authenticator.java:130)
    at com.iplanet.am.admin.cli.Authenticator.ldapLogin(Authenticator.java:148)
    at com.iplanet.am.admin.cli.Main.runCommand(Main.java:707)
    at com.iplanet.am.admin.cli.Main.main(Main.java:1141)
    com.sun.identity.security.AMSecurityPropertiesException: AdminTokenAction: FATAL ERROR: Cannot obtain Application SSO token.
    Check AMConfig.properties for the following properties
    com.sun.identity.agents.app.username
    com.iplanet.am.service.password
    at com.sun.identity.security.AdminTokenAction.run(AdminTokenAction.java:243)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.identity.sm.SMSEntry.read(SMSEntry.java:505)
    at com.sun.identity.sm.SMSEntry.read(SMSEntry.java:492)
    at com.sun.identity.sm.SMSEntry.<init>(SMSEntry.java:325)
    at com.sun.identity.sm.CachedSMSEntry.getInstance(CachedSMSEntry.java:315)
    at com.sun.identity.sm.ServiceConfigManagerImpl.checkAndUpdatePermission(ServiceConfigManagerImpl.java:496)
    at com.sun.identity.sm.ServiceConfigManagerImpl.getInstance(ServiceConfigManagerImpl.java:459)
    at com.sun.identity.sm.ServiceConfigManager.<init>(ServiceConfigManager.java:121)
    at com.iplanet.ums.ConfigManagerUMS.<init>(ConfigManagerUMS.java:992)
    at com.iplanet.ums.ConfigManagerUMS.getConfigManager(ConfigManagerUMS.java:121)
    at com.iplanet.ums.TemplateManager.<init>(TemplateManager.java:133)
    at com.iplanet.ums.TemplateManager.getTemplateManager(TemplateManager.java:151)
    at com.sun.identity.authentication.internal.server.LocalLdapAuthModule.getDN(LocalLdapAuthModule.java:298)
    at com.sun.identity.authentication.internal.server.LocalLdapAuthModule.login(LocalLdapAuthModule.java:133)
    at com.sun.identity.authentication.internal.LoginContext.login(LoginContext.java:125)
    at com.sun.identity.authentication.internal.AuthLoginThread.ru,
    n(AuthLoginThread.java:82)
    Deleting Service Schema iplanetamplatformservice
    Error 9: Operation failed: AdminTokenAction: FATAL ERROR: Cannot obtain Application SSO token.
    Check AMConfig.properties for the following properties
    com.sun.identity.agents.app.username
    com.iplanet.am.service.password Any idea how to get rid of this issue? I want to add 3^rd^ AM to the existing setup.
    Thanks and Regards,
    -Shashank
    Edited by: shashankj on Aug 2, 2008 10:32 PM

    Hi Shashankj,
    I am having the same issue with Access Manager 7.1.I am trying to configure another AM instance with Directory server replication but when i start second Access Manager webserver throws same exception as follow.
    [23/Nov/2008:15:29:40] failure ( 3500): WebModule[amserver]StandardWrapper.Throwable
    java.lang.StackOverflowError
    at java.util.Hashtable.put(Hashtable.java:401)
    at com.iplanet.services.naming.WebtopNaming.updateServerIdMappings(WebtopNaming.ja
    va:765)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:70
    2)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.nam
    [23/Nov/2008:15:29:40] failure ( 3500): WebModule[amserver]PWC1396: Servlet /amserver thr
    ew load() exception
    java.lang.StackOverflowError
    at java.util.Hashtable.put(Hashtable.java:401)
    at com.iplanet.services.naming.WebtopNaming.updateServerIdMappings(WebtopNaming.ja
    va:765)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:70
    2)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at
    Is there anything I can do while installing second instance of Access Manager. or how can I modify Directory server.Help will be valuable.
    Thanks and Regards,
    Parul

  • How to find the existing function module is used in another function module

    Hi all,
    I created a function module and the same one is called from another function module.
    When I tried to find where the  first function module is used  using  Where-used List , I am getting the message "function module not found in selected areas" .
    Please  guide me what is other method to find whether the function module is used in another one.
    Thanks,
    Vengal Rao.

    hi,
    Go to UTILITIES-> Update Navigation index.
    or go to fucntion group and Generate the Funtion group once.
    it will detect all fucntion modules under that function group.
    regards,
    Rama

  • How do I delete a credit card from my iTunes account without adding another one? My friend bought an app with her credit card and I no longer have the info but every time I try to download a free app (ex: Instagram, Twitter, vine etc.)it ask for the info

    How do I delete a credit card from my iTunes account without adding another one? My friend bought an app with her credit card and I no longer have the info but every time I try to download a free app (ex: Instagram, Twitter, vine etc.) it ask for the credit cards security code. I can not find a way to delete that cards info without adding another cards info.

    http://support.apple.com/kb/ht1918
    http://support.apple.com/kb/ts5366

  • How to set another search engine in safari?

    hi all
    can anybody tell how to set another search engine than google/yahoo in safari (e.g. Bing)?
    thank you

    At this stage, I don't know of any workarounds (or available plugins) for Safari for Windows 4.0.4 that allow you to put a different search engine option in the search field.
    The workaround I've been using is to pin a Bing window into my Top Sites.
    You can send an enhancement request to Apple about it. Although it doesn't look to be set up for it, if you bring up your Menu Bar and go "Help > Report bugs to Apple", you can use that bug report form to ask for enhancements. I was skeptical about that to begin with, but apparently they check that for feature enhancement requests, according to the following document. (It's mentioned right down the very bottom.)
    [Safari 4 for Windows|http://support.apple.com/kb/HT3657]

  • How to remove default search button in search module

    I am a neophyte with code and css and normally work with Muse. But I am currently trying to customize the appearance of the search module so that it works with the website it will be serving. I have  accomplished a large part of what I've been attempting, but have hit a snag in removing the default search button (CAT_Search). I've placed the image I want to use no problem, but it is contained in some weird gray beveled box with the original 'Search' text overlapping my image.
    I have been making the rounds of tech support, tutorials, and every documented article on the search module and can find nothing that address this specific issue. Any help would be greatly appreciated! I am enclosing the what I've done so far below.
    Thanks!
    Paula
    <style type="text/css">
    body form {
      width: 163px;
      height: 48px;
      form-top-right-radius: 5px;
      form-bottom-right-radius: 5px;
      background-image: url(http://corehog.businesscatalyst.com/images/search.png);
    .search-box {
      color: #999966;
      font-family: lato;
      font-style: normal;
      font-weight: 100;
      width: 86px;
      height: 24px;
      border: none;
      max-width: 86px;
      opacity: 0%;
      max-height: 24px;
      margin-left: 12px;
      margin-top: 12px;
      margin-bottom: 12px;
    .cat_button {
      width: 32px;
      height: 24px;
      border: none
      background-color: none;
      background-image: url(http://corehog.businesscatalyst.com/images/search-button.png);
      margin-left: 12px;
      margin-top: 12px;
      margin-right: 20px;
      margin-bottom: 12px;
    </style>
    <!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.--><script>var __adobewebfontsappname__="dreamweaver"</script><script src="http://use.edgefonts.net/lato:n1:default.js" type="text/javascript"></script>
    <form name="catsearchform87352" method="post" action="/Default.aspx?SiteSearchID=3752&PageID=/http://corehog.businesscatalyst.com/search-results.html"><div><input class="search-box" type="text" name="CAT_Search" id="CAT_Search" /><input class="cat_button" type="submit" value="Search" /></div></form>
    {module_searchresults}

    Hi Ramandeep Nanda,
    Thanks for the reply.
    I followed a slightly different approach than the one mentioned in your post.
    I have not used any client side javascript attributes.I got the inputListOfValues Component from the launch listener event ( launchPopupEvent.getComponent() ) and in the launch listener i am setting richQuery.setModeChangeVisible(false);
    It is hiding the button now but only for the first invocation of the search dialog, it is not working.
    More specifically, for the first invocation of the search dialog, Iterator facetNames = inputListOfValues.getFacetNames(); is not returning the child components and hence the button is not being hidden.
    Any idea why this might be happening?
    Thanks,
    Vikas

  • How to let Applications support "Settings" feild keyword searching in "Search" module of Windows8/8.1/10?

    We knows that there are 5 kinds of feilds in "Search" module:"Everywhere"/"Settings"/"Files"/"Web images"/"Web videos"
    About how to let an application can be found out by the keywords in "Settings" feild:
    If there is an application it contains some settings. How can I find out the application or its setting pages by input some keywords into the "Search" module(these keywords is relevant to those settings in this application)?

    You can't, there is no such API, you can use Windows Search API to make searching things work: https://msdn.microsoft.com/en-us/library/windows/desktop/aa965362(v=vs.85).aspxBest
    Regards,
    Please remember to mark the replies as answers if they help
    Why are you so sure it is impossible? Can you tell me more details on that? Thanks!!!
    MS Community Message
    Just in my experience, I've ever tried to make a desktop search application, contacted with MS support, the feedback is what I said...Only OS settings can be found
    Best Regards,
    Please remember to mark the replies as answers if they help

Maybe you are looking for