Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author wpdreams

    (@wpdreams)

    Hi!

    Can you please link me to a page where the plugin is active? I can’t see it on any page.

    Thank you!

    Thread Starter realkhoj.real

    (@realkhojreal)

    Sorry for delay in reply, It was deactivated, now have activated again and Its on home page https://www.realkhoj.com, but the issue is same, when write something in search box, the search wheel is spinning continuous but nothing appear,

    Thread Starter realkhoj.real

    (@realkhojreal)

    Data Debug Info https://paste.ee/p/Kfvov

    Plugin Author wpdreams

    (@wpdreams)

    Hi!

    Thank you for the information!

    I tried to type in something, but currently you have the ajax triggering disabled, so I couldn’t test the ajax functionality.
    The debug data looks all right, I see no error messages.

    There is one thing I have noticed, you have the custom ajax handler enabled. Try disabling it, it most cases that helps: https://i.imgur.com/UfiqvS6.png

    Thread Starter realkhoj.real

    (@realkhojreal)

    Disabled custom ajax handler but still issue is same. Turned on triggering also.

    Plugin Author wpdreams

    (@wpdreams)

    Hi!

    Thank you, now I can see the problem. The multibyte string functions are disabled on your server, and the plugin is using one of them.

    Luckily, it is possible to solve this by changing 1 line of code on the plugin. Open up the wp-content/plugins/ajax-search-lite/includes/search_content.class.php file and go to line 789, where you should see this:

    if ( function_exists('mb_substr') ) {

    change that line to

    if ( function_exists('mb_strtolower') ) {

    it should probably solve the problem.

    This is only a temporary solution, I will note this as a bug and fix it in the upcoming version.

    Thread Starter realkhoj.real

    (@realkhojreal)

    Thank You So Much… resolved.

    Thread Starter realkhoj.real

    (@realkhojreal)

    Resolved

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Not Showing any Result’ is closed to new replies.