Search problem

Hi,
I am using RH8.0.2.
In my project 240 child projects are merged in the parent project.
I have imported these projects from RH5 to the latest version RH8.0.2 and made changes in all the 240 child projects and merged it.
Now when i am searching any word search display only the words it can found in the parent project, as a result the number of pages found get reduced drastically.
I do some reseach i found that the merge file path in hhp file is of my local machine (D:\M5_protocol_help\PCS_X.chm),to confirm i merged a new child project but i found in hhp file, instead of the full path only name of project (BTSM.chm) is there.
Now again i close the project and reopen it i found the new child project which i merged is gone.
Any solutions?Thanks in anticipation!!!
Thanks and Regards,
Rahul

Hi Raul.
This is a known issue with the HTML Help compiler. You can get around this by opening the parent project, opening the HHP file in Notepad and removing the path to the CHMs. You should then be left with a section that looks like this:
[MEGRED FILES]
PCS_X.chm
If you then compile the project you'll get all your search terms available. Note however that these changes will have to be reapplied as they are lost when you close the project after the compile.
  The RoboColum(n)
  @robocolumn
  Colum McAndrew

Similar Messages

  • Outlook 2010, Exchange 2010 - Searching Problems

    Anyone out there able to help with some searching problems some of our users have been seeing?
    Searching in OWA works fine but some people have problems when searching for older emails in Outlook. We've rebuilt Outlook profiles, rebuilt the windows index's (which seems to work but only temporarily). If there's a way to schedule the Windows index to
    rebuild every night or once  week, I'd be very happy to test that out but haven't been able to figure out how to do that.
    Anyone have any other ideas?

    Hi,
    It seems something keeps corrupting the index... Run Anti-virus program and Malicious Software Removal Tool to scan your system, check if there's any virus or malware that may cause the index issue.
    If this issue persists, please also go to File tab ->
    Options -> Search -> Indexing Options
    -> Advanced -> Click Troubleshoot search and indexing, to do some troubleshooting steps to find the possible cause.
    I hope this helps.
    Regards,
    Melon Chen
    TechNet Community Support

  • List View Web Part Search problem

    We have a problem with the search in the
    List View Web Part (SearchBox).
    If you enter anything in SearchBox
    and the beginning of the search, nothing happens.
    This problem only occurs in non-admins.
    In this case, the browser generates an error:
    "inplview" not defined.

    I have the same problem. I think the problem is related to the Publish feature.
    Any ideas?

  • Google search problem in safari

    I went to do a google search and used the window in Safari. When I hit go, I get results but they look strange. Only the search term and then most of it is blank. It's as if the page is so big that I can't see the rest.  When I go to the bottom of the page it says Mobile, but nothing else. When I tap beside it, it went to a "classic" view as if on the desktop of your computer, but then I could not see what I was typing in the search box. It was invisible. No problem with Bing or Yahoo.
    I also have noticed on a page that I normally check that the login button was not there. I could click where the login button usually is and then it will take me to the page, but what I type is also invisible.
    I have an iPhone 4s 5.1.1. No problems on my husbands iPhone 4s.
    Will try to restore.
    Has this happened to anyone?

    Restore has fixed it.

  • How to fix the search problem due to timezone?

    I live in GMT+8 timzone. I just migrated a site from SP2010 to SP2013. After migrated when I search for a managed property (datetime) all results return is 1 day later.
    To troubleshoot the problem, I setup a new managed property using "Text" datatype. In refinement panel for that managed property I found the refinement are all looks like 2013/12/11 16:00:00. (which should be 2013/12/12 00:00:00)
    The old server is running in GMT+8. The only different is SP2010 and SP2013.I have changed the web application -> general settings -> timezone to GMT+8 and the site collection settings as well. We did not enable "My site" so there
    is no personal regional settings. What else I can check?  What should I check and how can I make the search work as expected?

    Once a document is stored and uploaded it has the UTC time stamp on it. Now this timestamp cannot be changed.
    So you either use timezone when the document was uploaded or use it the same way. 
    BTW what difference does it make with the time it shows?
    The field in question is designed to store a "Date" value only not the "Time". The time is always 00:00:00.
    In the old farm, users search for 2013/12/31 will get the results with field value 2013/12/31. Now in the new farm, with the timezone problem, search for 2013/12/31 will get the results with field value 2014/1/1

  • Search problem with ActiveDirectory - please help

    Hi,
    I've tried to get a list of the users out of the Active Directory.
    But I just can't get my code to work. It returns nothing back.
    The problem should be simple. But I can not figure out why.
    Please help!
    Raymond
    import javax.naming.*;
    import javax.naming.event.*;
    import javax.naming.directory.*;
    import javax.naming.ldap.*;
    import java.util.Hashtable;
    import java.util.Vector;
    import java.util.Enumeration;
    public class AdClient {
    public AdClient() {
    getUsers();
    public static void main(String args[]) {
    Client client = new Client();
    private void getUsers() {
    // domain = utest
    String INITCTX = "com.sun.jndi.ldap.LdapCtxFactory";
    String HOST = "ldap://192.168.128.50:389";
    String SEARCHBASE = "ou=Users,dc=utest,dc=com";
    String FILTER = "cn=*";
    try {
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, INITCTX);
    env.put(Context.PROVIDER_URL, HOST);
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, "[email protected]");
    env.put(Context.SECURITY_CREDENTIALS,"admin");
    DirContext ctx = new InitialDirContext(env);
    SearchControls constraints = new SearchControls();
    constraints.setSearchScope(SearchControls.SUBTREE_SCOPE);
    NamingEnumeration results;
    // now search for the users
    results = ctx.search(SEARCHBASE, FILTER, constraints);
    while (results.hasMoreElements()) {
    SearchResult sr = (SearchResult)results.nextElement();
    System.out.println(sr.getName());
    ctx.close();
    } catch(Exception e) {
    e.printStackTrace();
    }

    I tried your code...
    There were two issues I saw, when I changed them it worked!
    1) public static void main(String args[]) {
    Client client = new Client();
    should be
    public static void main(String args[]) {
    AdClient client = new AdClient();
    2) String SEARCHBASE = "ou=Users,dc=utest,dc=com";
    env.put(Context.SECURITY_PRINCIPAL, "[email protected]");
    Should be
    String SEARCHBASE = "ou=Users,dc=utest,dc=newcom,dc=com";
    env.put(Context.SECURITY_PRINCIPAL, "[email protected]");

  • RoboHelp HTML 8 Search problem

    I have a single (non-merged) RoboHelp 8 HTML project in which I cannot seem to get Search working correctly.
    I expected to see a box into which I can type a search term and a blank pane below the Contents/Index/Search/Glossary bar where search results would appear.  Instead, I get the following when I generate WebHelp:
    This problem appears in IE 6, IE 7, Firefox 3.0, and Firefox 3.5, all of which our customer base uses.  I'm using RoboHelp 8 on a Windows PC with XP Pro 2002, SP3.
    In the Project Settings/General dialog, I have the default settings for the Stop List and the Always Ignore List selected.  For "Add new keywords to" I have "Index File (HHK)" selected, and "Binary Index" is selected.
    When generating WebHelp, I have the following set:
    General selections:  Under "Additional Options," "Apply to all Topics," "CSS" is selected, with the correct CSS name displayed.  "Add Mark of the Web" is selected.
    Navigation selections:  For Toolbar Buttons, Contents, Index, Search, Glossary are selected.  For Search Options, "Enable Highlight Search Results" is selected.
    Navigation Pane Preferred Format selection is Pure HTML.  (We tried DHTML/HTML but that resulted in an empty nav pane and a nonfunctional index.)
    Optimize Speed For:  Web Site (Internet)
    Publish:  Republish All.
    What are we doing wrong?  I'm totally stumped and I can't seem to find any help on this issue anywhere.  Thanks!

    Hi there
    Please do expound.
    MSMoore9412 wrote:
     I finally succeeded in getting a Search pane that looked right and performed correctly by deselecting the Mark of the Web option.
    To my knowledge this option only affects the output when you view things locally, as in when you are testing the output immediately after generating. Are you saying here that it somehow affected things after you uploaded the files to the server?
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Numbers search problem

    I have Numbers 08, OX, the search works some of the time but will suddenly quit. The other day I was searching books by a certain author, to compare to a list of her books, trying to figure out which ones I had not read. (yes, I keep a log of the books I have read). For instance, I had searched & found a book, then searched for another, no find. Yet, when I looked at the one before, I see the one I searched for a few lines below. I tried other searches that should have landed on books but nothing happened. I quit Numbers & then checked it again, nada. It is working today...did it just need a reboot of Mac? I really can't imagine software that requires that. Oh yes, there were about 30 books that I searched.
    Thanks for your help in solving my problem in Numbers.

    I have Numbers 08, OX, the search works some of the time but will suddenly quit. The other day I was searching books by a certain author, to compare to a list of her books, trying to figure out which ones I had not read. (yes, I keep a log of the books I have read). For instance, I had searched & found a book, then searched for another, no find. Yet, when I looked at the one before, I see the one I searched for a few lines below. I tried other searches that should have landed on books but nothing happened. I quit Numbers & then checked it again, nada. It is working today...did it just need a reboot of Mac? I really can't imagine software that requires that. Oh yes, there were about 30 books that I searched.
    Thanks for your help in solving my problem in Numbers.

  • Location search problem with iPhone map

    I am posting this to see if anybody else have the same problem, and hopeful a solution as well.
    The problem is that iPhone map started from a 3ird party software does not use my current location by default. For example, I did a search for pizza in google search. The google app will give me a list of local pizza places in their page. But if I click on show all results, it brings up the map app and displays a few pizza places around the world. But shouldn't it give me results in my local area instead? At first, I thought this is a google problem. But I see the same problem later with another voice search app. Have anyone experience this with their iPhone?
    Thanks in advance to any insight on this.

    I've already done it.
    Do you think this will help?
    I doubt that Apple will listen to us. Users with a problem that occurs quite a lot.

  • SQL REPORT BUT SEARCH PROBLEM ON CREATED_ON Column

    Hi Friend,
    i have create SQL Report .
    My Code
    select      CRM_SALES_DEALs.id,
                        "CRM_SALES_CUSTOMERS"."CUSTOMER_NAME" as "CUSTOMER_NAME",
          "CRM_SALES_SALESREPS"."REP_LAST_NAME"||', '||
          "CRM_SALES_SALESREPS"."REP_FIRST_NAME" as "REP_NAME",
           "CRM_SALES_DEALS"."DEAL_CLOSE_DATE" as "DEAL_CLOSE_DATE",
           "CRM_SALES_DEALS"."DEAL_PROBABILITY" as "DEAL_PROBABILITY",
          "CRM_SALES_DEAL_STATUS_CODES"."STATUS_CODE" as "STATUS_CODE" ,
             "CRM_SALES_DEALS"."DEAL_AMOUNT" *
             "CRM_SALES_DEALS"."DEAL_PROBABILITY" / 100 weighted_forecast,
    (select count(*) from CRM_SALES_DEAL_notes where deal_id = "CRM_SALES_DEALS".id) notes,
    (select count(*) from CRM_SALES_DEAL_products where deal_id = "CRM_SALES_DEALS".id) products,
    nvl("CRM_SALES_DEALS".updated_on,"CRM_SALES_DEALS".created_on) last_changed,
    t.territory_name,
    CRM_SALES_DEALS.qtr, "CRM_SALES_DEALS"."CONTACT_NAME" as "CONTACT_NAME"
    from     
    "CRM_SALES_SALESREPS",
    "CRM_SALES_DEAL_STATUS_CODES" ,
    "CRM_SALES_CUSTOMERS",
    "CRM_SALES_DEALS",
    CRM_SALES_territories t
    where  
    CRM_SALES_customers.customer_territory_id = t.id(+) and
    "CRM_SALES_DEALS"."CUSTOMER_ID"="CRM_SALES_CUSTOMERS"."ID"(+)
    and      "CRM_SALES_DEALS"."DEAL_STATUS_CODE_ID"="CRM_SALES_DEAL_STATUS_CODES"."ID"(+)
    and      "CRM_SALES_DEALS"."SALESREP_ID_01"="CRM_SALES_SALESREPS"."ID"(+)
    and (:p1_find is null or instr(upper("CRM_SALES_CUSTOMERS"."CUSTOMER_NAME"),upper(:p1_find))>0 or instr(upper("CRM_SALES_DEALS"."DEAL_NAME"),upper(:p1_find))>0 or
    instr(upper("CRM_SALES_SALESREPS"."REP_FIRST_NAME"||' '||"CRM_SALES_SALESREPS"."REP_LAST_NAME"),upper(:p1_find))>0)
    and
    (nvl(:P1_TERRITORY,0) = 0 or t.id= :P1_TERRITORY)
    and
    (nvl(:P1_ACCOUNT,0) = 0 or "CRM_SALES_CUSTOMERS".id = :P1_ACCOUNT)
    and
    (nvl(:P1_QUARTER,'0') = '0' or CRM_SALES_deals.qtr = :P1_QUARTER)
    and
    nvl(DEAL_PROBABILITY,10) between nvl(:P1_MINIMUM_PROBABILITY,0) and nvl(:P1_MAXIMUM_PROBABILITY,100) or
    instr(upper("CREATED_ON"),upper(nvl(:P1_CREATE_DATE,"CREATED_ON")))My TAble
    CREATE TABLE  "CRM_SALES_DEALS"
       (     "ID" NUMBER,
         "CUSTOMER_ID" NUMBER NOT NULL ENABLE,
         "DEAL_NAME" VARCHAR2(255),
         "DEAL_CLOSE_DATE" DATE NOT NULL ENABLE,
         "DEAL_CLOSE_DATE_ALT" DATE,
         "DEAL_STATUS_CODE_ID" NUMBER,
         "DEAL_CUSTOMER_LOCATION" VARCHAR2(4000),
         "CREATED_BY" VARCHAR2(255),
         "CREATED_ON" DATE,
         "UPDATED_BY" VARCHAR2(255),
         "UPDATED_ON" DATE,
         "QTR" VARCHAR2(8),
         "DEPARTURE_DATE" DATE,
         "DEAL_SOURCE" VARCHAR2(15),
         "ADDRESS1" VARCHAR2(255),
          PRIMARY KEY ("ID") ENABLE
    /i want to search with CREATE_ON Column.
    How can i create code for search in my Quary Code.
    My Item is :P1_CREATE_DATE
    I have try it in last Line in code but it's show me Error.Invalid Relational Operator .
    How can i slove and serch with Created_on Column.
    Thanks
    Edited by: 805629 on Dec 27, 2010 9:13 PM
    Edited by: 805629 on Dec 27, 2010 9:13 PM

    Hi Friends,
    i have sortout this problem.
    Thanks

  • Searching problems when implementing my own repository manager

    Hi there,
    i've serious problems to get the search fuctionality for my own repository manager running. I'm using the 'new', Netweaver-based api.
    Always if I'm launching a search I receive a ClassNotFoundException in the follwing context:
    #1.5#172.16.17.102:7CF6B6:FF73BDDB07:-36E7#1097161124650#com.sapportals.wcm.WcmException#irj#com.sapportals.wcm.WcmException.WcmException(118)#System#0#####System_Thread_37##0#0#Error##Plain###invalid manager class: com.sapportals.wcm.repository.runtime.ManagerAdapter java.lang.ClassCastException: invalid manager class: com.sapportals.wcm.repository.runtime.ManagerAdapter
         at com.sapportals.wcm.repository.RMAdapter.<init>(RMAdapter.java:48)
         at com.sapportals.wcm.repository.runtime.CmSystem.getResourcesImpl(CmSystem.java:1134)
         at com.sapportals.wcm.repository.runtime.CmSystem.getResources(CmSystem.java:356)
         at com.sapportals.wcm.repository.runtime.CmAdapter.getResources(CmAdapter.java:153)
         at com.sapportals.wcm.service.indexmanagement.retrieval.trex.TrexSearchIndexCollection.getSearchResults(TrexSearchIndexCollection.java:1126)
         at com.sapportals.wcm.service.indexmanagement.retrieval.search.SearchSession.getSearchResults(SearchSession.java:293)
         at com.sapportals.wcm.service.indexmanagement.retrieval.search.FederatedSearchSession.getSearchResults(FederatedSearchSession.java:111)
         at com.sapportals.wcm.rendering.collection.SearchRendererStatus.refresh(SearchRendererStatus.java:180)
         at com.sapportals.wcm.rendering.collection.LightCollectionRenderer.createStatus(LightCollectionRenderer.java:718)
         at com.sapportals.wcm.rendering.collection.LightCollectionRenderer.renderAll(LightCollectionRenderer.java:498)
         at com.sapportals.wcm.rendering.control.cm.NeutralControl.render(NeutralControl.java:141)
         at com.sapportals.wcm.rendering.layout.cm.SimpleLayoutController.render(SimpleLayoutController.java:39)
         at com.sapportals.wcm.rendering.control.cm.WdfProxy.render(WdfProxy.java:1229)
         at com.sapportals.wdf.layout.HorizontalLayout.renderControls(HorizontalLayout.java:41)
         at com.sapportals.wdf.stack.Pane.render(Pane.java:153)
         at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:67)
         at com.sapportals.wdf.layout.HorizontalLayout.renderPanes(HorizontalLayout.java:64)
         at com.sapportals.wdf.stack.Pane.render(Pane.java:156)
         at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:67)
         at com.sapportals.wdf.layout.HorizontalLayout.renderPanes(HorizontalLayout.java:64)
         at com.sapportals.wdf.stack.Pane.render(Pane.java:156)
         at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:67)
         at com.sapportals.wdf.layout.HorizontalLayout.renderPanes(HorizontalLayout.java:64)
         at com.sapportals.wdf.stack.Pane.render(Pane.java:156)
         at com.sapportals.wdf.stack.PaneStack.render(PaneStack.java:67)
         at com.sapportals.wdf.ControllerDynPage.executeEvent(ControllerDynPage.java:338)
         at com.sapportals.wdf.BaseDynPage.onWdfEvent(BaseDynPage.java:132)
         at java.lang.reflect.Method.invoke(Native Method)
         at com.sapportals.htmlb.page.DynPage.doProcessCurrentEvent(DynPage.java:172)
         at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:101)
         at com.sapportals.htmlb.page.PageProcessorServlet.handleRequest(PageProcessorServlet.java:64)
         at com.sapportals.htmlb.page.PageProcessorServlet.doPost(PageProcessorServlet.java:25)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sapportals.wcm.app.servlet.WcmHtmlbBaseServlet.service(WcmHtmlbBaseServlet.java:81)
         at com.sapportals.wcm.portal.proxy.PCProxyServlet.service(PCProxyServlet.java:280)
         at com.sapportals.portal.prt.core.broker.ServletComponentItem$ServletWrapperComponent.doContent(ServletComponentItem.java:110)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:301)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:143)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:195)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:209)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:589)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:301)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:143)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:195)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:636)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:209)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:532)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:415)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(InvokerServlet.java:126)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServlet.java:147)
         at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServlet(ServletsAndJspImpl.java:789)
         at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(RequestAnalizer.java:644)
         at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:305)
         at com.inqmy.services.httpserver.server.Response.handle(Response.java:165)
         at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServerFrame.java:1133)
         at com.inqmy.core.service.context.container.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:36)
         at com.inqmy.core.cluster.impl0.ParserRunner.run(ParserRunner.java:35)
         at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:132)
    I'm using EP 6.0 SP2 directly installed from the CD
    #51 020 549 without explicit installation of any patch or hotfix; the portal itself shows the version number 6.0.2.0.0 (implementation version 6.2.0.0.200310100950).
    I switched on logging but I never reached the INamespaceManager's methods isQueryPropertyNameUnderstood() or getQueryBuilder().
    So I figure that this might a problem of my (too old?) unpatched version of EP6????
    What can I do to get the serach func running?
    Thanks for your support,
    Daniel

    Hi Karsten,
    thanks for your annotation.
    Does it mean that I <b>HAVE TO</b> apply at least Patch 4
    to get the search working or <b>SHOULD</b> I apply the patch to be up-to-date and look for an error in my code???
    Thanx a lot,
    best regards,
    Daniel

  • Time Machine search problem

    hi guys
    i am facing a problem in time machine
    suppose i backup a folder in time machine called 'x' and it has file name ' abcd.xyz '
    when i go inside time machine and search for 'abcd.xyz' for today & when i press back button it disappear although if i go in documents/x/ i find the same file lying there.
    pls help me with this problem..

    macexpert wrote:
    I have noticed this problems since the (non-fresh) install of Snow Leopard 10.6.
    Problem 1: Search. If I go to eg. Yesterday 9.00, and I know there was a file there yesterday and try to search "On my Mac" for that file, no result pops up. If I go to the folder the file was in, and search only in that folder, it appears. But it appears only for Yesterday 9.00. Yesterday 10.00 it's not displaying, although it's there. Also the navigation (Problem 2) doesn't work in search result.
    You might want to get Spotlight to re-index your TM drive. Via +System Preferences > Spotlight > Privacy,+ exclude your TM drive for a few moments, then remove the exclusion. That should cause a complete re-indexing (which may, of course, take a while).
    Problem 2: Navigation. If I enter time machine while in some folder, the current state of the folder is displayed in time machine. If I press on the 'back' arrow (lower right on the screen), instead of taking me to the screen with the last change, it just takes me to the last backup available. In Leopard it reacted different (taking me to the next screen that is different from the current one).
    I rarely use the search function there, but don't recall it ever working that way in Leopard.

  • Searching problems on new Macbook

    I bought a new Macbook last week and transferred all my files/data from previous model through crossover cable; worked flawlessly. Now I am having problems with searches both with Spotlight and in individual applications (worked fine on old model). The files are present but not brought up in the search. I don't see other mentions of this in the discussions; any ideas??

    I had this problem on a new MacBook too. I migrated 3 user accounts from an older MacBook, don't know if that has a bearing.
    I was able to solve it by forcing Spotlight to reindex from scratch. To do this, open System Preferences and go to the Spotlight panel. Click on the Privacy tab and drag your Hard Disk icon from the desktop into the main blank area; this deletes the existing indices. Then select (click) the HD entry that's appeared in the window and click the minus icon at bottom left (next to the plus). This should remove the HD from the Spotlight Privacy pane, making Spotlight index it again.
    This will likely take a while but when it's complete (the dot will disappear from the Spotlight icon on the Menu Bar) Spotlight should be OK again - at least, it was for me.

  • Search problems : Boolean expressions and spam folder

    I get about 1000 spam per day that I have to check.
    Some of them contains certain keyword that the real emails would never have.
    I would like to setup a smart folder or similar that found all emails in the spam folder that contains any of those keywords. I read some blogs etc. that said that spotlight boolean expressions could be used but they do not seem to work.
    e.g. "pill OR berry" yields no results at all but when each of the keywords are used on their own they produce 80 or so results each.
    Another problem I have is that I can do a manual search in the spam folder by typing in the search field and it yields results. But if I save that as a smart folder it yields no results at all. It seems that the rules do not work on the spam folder.
    I then tried to do all this from spotlight in the finder. I found the folder where the spam mailbox emails are stored (called "messages"). I managed to construct a nice search query and save it as a search. But if I delete one of the emails from the finder it still remains in Mail and the next time I start Mail it will be regenerated from somewhere.
    Anyone have any insights to provide here?

    I had actually missed that preference. Unfortunately it did not help.
    Even if I make a new smart mailbox with just one rule (the email must be in the spam folder) it doesnt work. It doesn't matter if I change between any/all either.
    I started experimenting with adding a rule saying that the email must not be in any of the other mailboxes but spam. That seemed to work for a bit but as I added more rules, excluding more mailboxes, it eventually broke. I will investigate it a bit more but currently don't have high hopes...

  • Treo 680: Typedown contacts search problem: can't find anything after S

    I recently purchased an unlocked GSM Treo 680 to replace a stolen Treo 650 (which replaced a 600, which replaced another 600, etc.). I loaded all my data on to it. However, when I do a typedown search in Contacts, it refuses to find any entries which (alphabetically by last name) occur after my friend "Catherine Simmonds". Even if their first name begins with an earlier letter of the alphabet, it doesn't find them. I can reach their entries by doing a lot of scrolling in the full list, but no other way.
    However, if I make a change of some sort to the contacts database, it does find them - for one search only. If I back up (delete a letter) on the search or cancel and do a new search, it stops being able to find them again. I've tried deleting some contacts, including the two either side of the "break", to see if they are corrupt in some way or if it's the number of contacts (I have about 420), but that doesn't seem to make a difference. At all times, I can find the contacts using the global search tool - although the 680 seems to have stopped the previous practice of starting global searches with the current database, which means it's often the second screen before the contact shows up.
    I run Ubuntu Linux 8.04, and am using jpilot as my sync software.
    To me, particularly given the intermittent nature of the thing and the ability to make it work temporarily by making changes to the Contacts database, this has all the marks of a software bug. Is it a known issue? Has anyone else seen it? Is there a fix?
    I'm using software version TREO680-2.12-ROW, Firmware R01.92. Please let me know if there's more information I can provide.
    Gerv
    Post relates to: Treo 680 (Unlocked GSM)

    What exactly do you mean by starting again?
    Previously, I restored a backup and then synced to get all data since the backup. I could certainly do that again. But I don't want to go all the way back to the backup only, because I'd lose all the data between then and now.
    jpilot, my sync software, won't let me sync on to a completely blank Treo. It tells me that I have to restore a backup first as a base. So I'm not sure if I'm able to restore the PIM data without restoring everything.
    I think it's unlikely to be an incompatible application because the problem is with a shipped Palm app. But you know more about Palm OS than me.
    But I'll have a play around and let you know how far I get.
    Gerv
    Post relates to: Treo 680 (Unlocked GSM)

  • Database Search Problem

    Hey,
    I am creating a database with a user profile, where a user can select their interests.
    i.e
    Golfing Yes/No
    Movies Yes/No
    Travelling Yes/No
    So, there are 20 interests like that, and each of them is a boolean.
    Would it be inefficient to create 20 boolean fields like that ?
    I kinda thought that would be inefficient (not sure if it's true) and thought of a way to put it into the database as a BYTE(20) stream, like
    1001010001011, where 1-yes, 0-no.
    However the problem is.. what if I want to do a search where only the first question is yes, and all the other does not matter ?
    For example.
    I want to search for a string like 1????????????, where ? could be 0 or 1.
    So here are my 2 questions:
    Will I need to traverse the whole database that way ? (use BYTE(20))
    or should I just code them as 20 separate booleans ?
    thanks !
    Dennis

    G'day DennisMV,
    I'd suggest 20 separate booleans. It may take some more space (however these are booleans, so the space would be extremely small!) . But it will save you alot of time writing code that you don't really need to. Also, hunting down small, sinister, evil bugs would be alot tougher using the stream. That's the direction i'd head in anyway.
    Good Luck,
    TimmyP

Maybe you are looking for

  • ESS Business Package for SAPNW04s EP 7.0

    Hi,     What is the Business Package i have to apply for J2EE7.0 version.Please guide me in this issue. With Regards Pradeep.B

  • Saving 16-Bit Layered PSDs overly slow

    Loading and saving a PSD with 16-bit channels takes up to four times longer than for PSDs of the same size with 8-bit channels. Some examples: PSD file with 1 GB, and 9 layers (16 bit): 1:45 min The very same PSD reduced to 8-bit layers (520 MB): 0:0

  • Canon 5D MarkIII RAW files

    I have the new Canon 5D Mark III as well as Photoshop CS5 and Lightroom 3. The problem is that RAW files are not recognized and the camera does not even appear in the list of cameras to come. How long does it take for new cameras to be listed? Or is

  • Iphone 5 why did you bring all these contacts in!

    My iphone somehow imported all of my yahoo IM contacts and emails and even just IM names.  I am trying to find a way to mass remove them as there are hundreds and hundreds.  How do I remvoe them and why/how did it ad them without asking me?? Thanks i

  • E50 reboots itself

    I've had E50 now for 3 weeks and having few problems with it. 1) The phone is rebooting itself without any reason, usually during an ongoing call but sometimes also when I'm not using it. This happens almost every day. It seems that it is not a total