Script URL:
Version of script: 2.4
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution: search, joker, fulltext
Write your message below:
What is the joker sign for cutting search word in HESK? Asterisk didn't seem to work.
Joker sign for search?
Moderator: mkoch227
Re: Joker sign for search?
There is no "joker sign" because it uses fulltext mysql search. You will need to enter full words.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: Joker sign for search?
Yes, I noticed HESK uses FULLTEXT but in that case the wildcard operator should be asterisk, right?
http://dev.mysql.com/doc/refman/5.0/en/ ... olean.html
"The asterisk serves as the truncation (or wildcard) operator."
Asterisk does not seem to work, however.
http://dev.mysql.com/doc/refman/5.0/en/ ... olean.html
"The asterisk serves as the truncation (or wildcard) operator."
Asterisk does not seem to work, however.
Re: Joker sign for search?
The asterisk (and some other operators) work in boolean mode only, so you would need to modify SQL statements to say for example:
Note that the IN BOOLEAN MODE was added in the AGAINST statement.
Code: Select all
... MATCH(`subject`,`content`,`keywords`) AGAINST ('wildcard*' IN BOOLEAN MODE) ...
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools