Rocco Tripaldi
Forum Replies Created
-
Forum: Plugins
In reply to: [BruteProtect] Increase in Site Down (False) Email Notifications After UpdateThanks for your reports, folks. We found the issue and we have pushed 2.3.1 to fix it.
What happened was that sites that weren’t redirected to the bruteprotect-config page after updating to 2.3 ( ie, sites that were autoupdated, or updated through my.bruteprotect ), didn’t get the new configuration data. Our output of the check string depended on the new data, so those sites didn’t get a check string, and thus, appeared to be down.
Sorry for any inconvenience.
Forum: Plugins
In reply to: [BruteProtect] Script running on my siteHello,
I’m not seeing it. Did you get it figured out?
Forum: Plugins
In reply to: [BruteProtect] API Key page not workingw00dyt,
It sounds like your site is having trouble connecting to our API. There could be many reasons for that.
We are going to release an update that has a debug tool. Hopefully that will give us some better insight.
Do you know if you have other security plugins, or a firewall on your server?Forum: Plugins
In reply to: [BruteProtect] deprecated use of "escape" in clear_transients.phpThanks for pointing that out.
We’ll get a fix into the next release.
I’m running into the same issue with one of my plugins. It may be that the hosting provider needs to update the server’s version of OpenSSL.
Forum: Plugins
In reply to: [BruteProtect] Who should see dashboard widget? setting not savedThis was resolved in 2.0.4.
Thanks.
Forum: Plugins
In reply to: [BruteProtect] notices etc.Thanks for pointing that error out. It will be fixed in 2.0.6 which is coming out soon.
Forum: Plugins
In reply to: [BruteProtect] Minor: Undefined index PHP warning on Admin pageThis error is getting fixed in 2.0.6 which is going out tomorrow, June 20th.
Thanks for bringing it to our attention.
Forum: Plugins
In reply to: [BruteProtect] Fatal PHP Error When Trying To Get API KeyThanks for bringing this to our attention. I’d not seen this error before, and I currently cannot replicate it. But the error message alone may allow me to work on a fix.
We should have it resolved in the next point release.
I have three custom inputs on my checkout.php, including a file upload. I need to validate the upload before registration, and upon registration, add those three fields as user_meta for the new user.
I just found your Repo on git hub. I’ll send you a pull request.
Forum: Plugins
In reply to: [BruteProtect] Does it work with WordFence?Hello Tevya,
I’m testing the plug-in combo of BruteProtect and WordFence on a few separate WordPress installations right now. So far I’ve not encountered any issues. I’ll keep an eye out over the next week or so, and let you know what I could find.
Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] I'm getting Javascript ErrorsI resolved this. An other plugin was using a different version of jquery-ui and there was some conflicts.
Forum: Fixing WordPress
In reply to: Query Child Pages of a Current Page and Loop Through Each Child PageTry replacing:
get_post_meta($post->IDwith:
get_post_meta(get_the_ID()can’t guarantee that’ll work, but worth a shot.
Forum: Fixing WordPress
In reply to: wordpress ancestorsYou could first get an array of post_ids for the top-level pages like so:
$exclusion_args = array( 'post_type' => 'page', 'post_parent' => 0, // only exclude top level 'fields'=>'ids', // only need the ids ); $exclusion_query = new WP_Query($exclusion_args); $exclusion_ids = $exclusion_query->posts; $exclusion_ids_string = implode(',',$exclusion_ids);And then you could pass the exclusion ids like so
wp_list_pages("title_li=&child_of=".$ancestors."&echo=0&depth=3&exclude=".$exclusion_ids_string);Hope it helps.