Searching for either pd
or pdf
works just fine for me.
You can try to truncate and re-index your Search table as well as drop and repopulate your Ticket CDATA table. PLEASE NOTE that you shouldn't really do this during peak/production hours. You really want to do this after-hours when there is little to no data moving through the system.
- To truncate your Search table login to the database server, use the osTicket database, and run
TRUNCATE TABLE prefix__search
(whereprefix
is your actual db prefix). Then you can go to theprefix_config
table, find wherenamespace
equalsmysqlsearch
andkey
equalsreindex
, set this record'svalue
to1
, and run cron a bunch of times until that table is fully repopulated with data. Depending on how much data you have this can take a few to many cron runs. - To drop your Ticket CDATA table login to your database server, use the osTicket database, and run
DROP TABLE prefix_ticket__cdata
(whereprefix
is your actual db prefix). Then you can run cron a bunch of times until that table is automatically recreated and fully repopulated with data. Depending on how much data you have this can take a few to many cron runs.
Cheers.