Forums › Forums › Search & Filter Pro › GoDaddy Server Issues
- This topic has 5 replies, 2 voices, and was last updated 4 years, 3 months ago by Trevor.
-
Anonymous(Private) July 13, 2020 at 3:20 pm #252629
We have ACF & S&F Pro working nicely for our property listings. Could be coincidental, but since going live 2 weeks ago, uptime monitor shows the site going up & down several times a day, often during non-business hours — and GoDaddy reports show this happening due to resource issues. This is a 4 field search against 100 items — results are returned within 2 seconds. Thoughts?? Any chance there is a bot constantly tapping the “search” button?? tfgre.com
Anonymous(Private) July 14, 2020 at 4:12 pm #252783Thanks for the reply and feedback. SemrushBot for competitive feedback is a possibility, but wouldn’t suspect it to be triggering the Search button. GoDaddy hasn’t been much help, no surprise, but they do want to sell more hosting resources, of course. I went thru all the backend settings, found 1 that could have been an issue, also updated to the latest PHP level. Not conclusive yet, but no downtime the past 16 hours.
Anonymous(Private) July 16, 2020 at 4:35 pm #253075Still working this with GoDaddy. Any known conflicts between S&F Pro and these plugins?
Advanced Custom Fields
BackUpWordPress
Carousel Slider
Compress JPEG & PNG images
ManageWP – Worker
Ninja Forms
Post Types Order
Really Simple SSL
reCaptcha by BestWebSoft
Redirection
Search & Filter Pro
Search & Filter Pro – Divi Extension
SF Move Login
Smush
Sucuri Security
Wordfence Security
WP Fastest Cache
Yoast Duplicate Post
Yoast SEOTrevor(Private) July 16, 2020 at 5:11 pm #253090Post Types Order can interfere with the query, but shouldn’t be the cause. Your security plugins may need to whitelist our plugin accessing the database (I have had that using Wordfence firewall before now). I am unsure if you need both Securi and Wordfence?
It would be best to sort out any SSL issues in the database by searching for and replacing http://mywebsite.com with https://mywebsite.com (use https://wordpress.org/plugins/go-live-update-urls/) and then using your site .htaccess rules to force to SSL (also in wp-config.php set force admin to SSL).
A sample .htaccess force SSL and force no use of www ruleset:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} ^www.mywebsite.com [NC] RewriteRule ^(.*)$ https://mywebsite.com/$1 [L,R=301] RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
In wp-config:
define('FORCE_SSL_ADMIN', true);
-
AuthorPosts