csamp516
Forum Replies Created
-
Hey, Jamie– have you tried using the “Truncate” MYSQL command?
TRUNCATE TABLE aiowpsec_userloginThis should bypass the loading of the 2.8 million rows and just delete them.
Also, we set up simple HTTP authentication using Apache (to have a secondary login box) and this cut down on the brute force attempts.
– Chris
I did a bunch of sifting through our logs, didn’t find anything useful.
We did, however, find our database had ~375K records in the failed logins table. We found that truncating the wp_aiowps_failed_logins table resolved this issue.
Forum: Themes and Templates
In reply to: [Sydney] pb with the header sliderNot really a fix, but I was able to go into scripts.js (in the Sydney theme’s js folder) and change line 56 (the jQuery Parallax minified script):
I changed the part where the backgroundPosition gets set from:
.css("backgroundPosition",o+" "+Math.round((l.data("firstTop")-i)*r)+"px")to:
.css("backgroundPosition",o+" 0px")This seems to remove the parallax effect, but looks much better compared to random white space appearing (IMO).