hkarahan
Forum Replies Created
-
Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Search not workingI changed settings from admin panel as “Use custom ajax handler” and problem has been solved ??
Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Search not workingThank you Ernest.
My wordpress was installed into a subfolder. Maybe that was the reason i’m not sure. I’ve checked web.config file (yes WP is installed on IIS) and there’s nothing special.
I haven’t noticed this problem earlier. I think, I’d always visited the website as logged-in ?? But i realized that there are many “404” visits on my statistics. So I’ve found that the problem was related to “not logged-in users”
So the URL you gave me returns with 0 when i’m logged-in. But for other users i get 404. In this case i don’t know how to fix those ajax handlers (nopriv) for other users. Still looking for a solution.
Thanks again,
HalukForum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Search not workingHi Ernest,
I have exactly the same problem with my website. Logged out users can not search.
Tried your CSS and clearing cache solution but did not work for me.Any help would be appreciated.
Thank you,
HalukForum: Plugins
In reply to: [Quiz Tool Lite] Using foreing language chars. in free text area[SOLVED] Ok, I’ve got it! I’ve followed codes and found the problem.
There is draw.php file within quisFrontEnd folder. The answers on my quiz were converting into lowercase but I had to use multi byte funtcion to show UTF-8 chars on my page so here is my modification:
Line 1143: $IDStr.=strtolower($optionValue).’,’;
Converted to: $IDStr.=mb_strtolower($optionValue, ‘UTF-8′).’,’;Line 1217: $correctStr = substr($correctStr,0,-1);
Converted to: $correctStr = mb_substr($correctStr,0,-1, ‘utf-8’);Line 1218: $IDStr = substr($IDStr,0,-1);
Converted to: $IDStr = mb_substr($IDStr,0,-1, ‘utf-8’);Now it works perfect!