Author Topic: [SOLVED] cannot get search to work in latest 0.4 release  (Read 2572 times)

Offline sf_basilix

  • Newbie
  • *
  • Posts: 2
[SOLVED] cannot get search to work in latest 0.4 release
« on: July 12, 2010, 05:57:55 PM »
The search field, when viewing the Inbox, had worked beautifully in the past, but with the latest release of 0.4, nothing works anymore. No matter what I type into the Search box, I never get anything back, especially when I'm very certain there are many matches. In checking the main.inc.php file, I noticed the second to last setting had this:

Code: [Select]
$rcmail_config['search_mods'] = null;

Right next to that, I found an example, but it says this:

 
Code: [Select]
Example: array('*' => array('subject'=>1, 'from'=>1), 'Sent' => array('subject'=>1, 'to'=>1));

So, I've tried doing this:

Code: [Select]
$rcmail_config['search_mods'] = array('*' => array('subject'=>1, 'from'=>1), 'Sent' => array('subject'=>1, 'to'=>1));

but that still doesn't work. Am I tinkering with the wrong settings here? Is anyone else able to search? Where are the logs to see what's happening when I actually enter in a search criteria, so I can find out what's really wrong?

Any help is greatly appreciated!

Thanks!
« Last Edit: July 12, 2010, 09:36:33 PM by sf_basilix »

Offline dziobak

  • Full Member
  • ***
  • Posts: 184
cannot get search to work in latest 0.4 release
« Reply #1 on: July 12, 2010, 06:10:24 PM »
try svn version

Offline sf_basilix

  • Newbie
  • *
  • Posts: 2
cannot get search to work in latest 0.4 release
« Reply #2 on: July 12, 2010, 09:36:02 PM »
Thanks!  Using the latest SVN worked perfectly!