chatboxx
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Contact Forms] Issue with synchronizing dataI just did a Install on a fresh WP Install with no other plugins and the default theme and it seems, the first time we save the form, it does save but when you do edits and try to save, it is’nt working. So when it saves the first time, its for sure not a creation issue but later when its updated, it is failing to update. Please check and fix this issue !
Also, ever since I Installed your plugin, this mod-security rule on my Server is getting triggered (I was myself blocked twice from my own dedicated server).
# allow request methods
SecRule REQUEST_METHOD “!^((?:(?:POS|GE)T|OPTIONS|HEAD))$” \
“phase:2,t:none,log,auditlog,status:501,msg:’Method is not allowed by policy’, severity:’2′,id:’1234123435′,tag:’POLICY/METHOD_NOT_ALLOWED'”Your FAQ says about something similar but could this be the reason for this whole issue ?
CCF uses RESTful HTTP verbs such as PUT and DELETE. If your web server does not support those HTTP requests, the plugin will not work. You will need to contact your host to resolve this.
I’ll email you direct wpdreams. Thats a test Installation and once you’re done, i’ll terminate the account and re-created it .
BTW , you forgot This part : Also, in your reply, please let us know how can we check error logs as whenever i check it, there’s nothing reported about this issue or any other ( Just to test, I tried accessing search content class direct and 1 error did pop up in the error_log file though).
Further to above, it seems if you enter any xyz search, it shows no results found. However, when you enter characters for something that is present, it does’nt show results.
No lines added except the solution you provided here at this URL Below
https://www.ads-software.com/support/topic/search-not-working-40?replies=4Would you Need FTP Access as you previously did to fix this and test some other stuff too ? Let me know.
Also, in your reply, please let us know how can we check error logs as whenever i check it, there’s nothing reported about this issue or any other ( Just to test, I tried accessing search content class direct and 1 error did pop up in the error_log file though).
Take a look at these 2 links
https://goo.gl/4iQuY6
https://goo.gl/Z8pZc1Above 2 are similar issue as ours so you might want to check these especially if there are some common functions being used.
You might want to check these 2 Links
https://wp-dreams.com/forums/topic/fatal-error-upon-activation-2/
https://wp-dreams.com/forums/topic/error/I these this issue could be similar to one of these especially if you’re using some common function.
Well the search stops only when your plugin is enabled (works with other rating plugins). Could it be some compatibility issue with some common function that is being accessed ?
Forum: Plugins
In reply to: [Comments - wpDiscuz] Doesn't seem to play well with other scriptsFound it on the forums. Thanks Bob, God Bless !
try searching hello world or anonymous and see how the search keeps on searching. When your plugin is disabled, it shows a result for the latter or tells no result found for other terms.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Doesn't seem to play well with other scriptsThanks for youe feedback. Well If you know the fix, please help Bob ! Would help many others like myself.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Doesn't seem to play well with other scripts+1 to this issue. Plugin works if Divi page builder is not enabled. (Theme has a pagebuilder) . If you use WP Style editing on a page and view it, it showed the form & comments. However, if you use page builder to create a page, the comments/form is not shown.
Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Search Not WorkingThanks for a quick response. Well it fixed the issue partially and was now showing no results. Now picking up from your other thread, I applied the change below and it works absolutely fine now. I thought i post here for help of others as well.
Open up the plugins/ajax-search-pro/includes/search-content.class.php file and go to lines 181-187 where you should see this:
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
} else { $ex_cat = w_isset_def($searchData['selected-excludecategories'], array()); if (count($ex_cat) > 0) { $words = '--'.implode('--|--', $ex_cat).'--'; $term_query = "HAVING (ttid NOT REGEXP '$words')"; } }
Okay, now add this line below those lines (after line 187):
$term_query = "";
Thanks again for your prompt support !