blindpet
Forum Replies Created
-
Mine actually isn’t working anymore either and I minify using BWP as I always have, going to revert to older version again.
Tested it on dev server and versio 3.1.2 seems to not have this issue. I was hesitant to upgrade because of the significance of the notice to keep Google happy.
They don’t seem to check here Matt, perhaps support is for paying customers only. I’d just install the old version as I outlined as this has been broken for months.
Forum: Plugins
In reply to: [Simple Share Buttons Adder] PRO Fix https problems pleaseThis is still happening for the pro version. Please fix the host or provide a way to disable updates so I can check manually.
Forum: Plugins
In reply to: [Disqus Conditional Load] Disable Rocketloader on CloudFlareThank you Joel, it seems to be working >(
Forum: Plugins
In reply to: [Simple Share Buttons Adder] PRO Fix https problems pleaseTaking 15 seconds again, who’s your host?
Forum: Plugins
In reply to: [Redis Object Cache] Feature Request – Show number of cached objectsI am using Query Monitor but I don’t see how this shows me which objects are specifically cached in redis?
Forum: Plugins
In reply to: [Simple Share Buttons Adder] PRO Fix https problems pleaseIt is a bit better but still the slowest one, every other one takes under 1 second, SSBP is taking 4.5 seconds. Do you have any monitoring in place to look at server load or any intrusion detection to see if server is compromised or you’re being attacked?
POST https://simplesharebuttons.com/ 200 OK curl WP_Http->post() wp-includes/class-http.php:412 wp_remote_post() wp-includes/http.php:187 SSB_SL_Plugin_Updater->api_request() wp-content/plugins/simple-share-buttons-plus/system/controllers/EDD_SL_Plugin_Updater.php:171 SSB_SL_Plugin_Updater->pre_set_site_transient_update_plugins_filter() wp-content/plugins/simple-share-buttons-plus/system/controllers/EDD_SL_Plugin_Updater.php:81 apply_filters('pre_set_site_transient_update_plugins') wp-includes/plugin.php:235 set_site_transient() wp-includes/option.php:1621 wp_update_plugins() wp-includes/update.php:332 do_action('load-update-core.php') wp-includes/plugin.php:525 Plugin: simple-share-buttons-plus 15 4.5106Forum: Plugins
In reply to: [Wp-Insert] Option to disable Geo IPThat is one good thing that came out of this, I will permanently be leaving query monitor open and reporting performance issues to devs.
Forum: Plugins
In reply to: [Wp-Insert] Option to disable Geo IPDefinitely, and it slowed down my other POST requests too. My site has never been faster after disabling the unnecessary (for me) feature.
Easyazon pro uses a local file for geo ip lookups, I recommend taking a look at that and implementing similar functionality.
Robzy, thank you for your php7 experience, I will be running it with nginx too so I’m glad it provides such a boost.
Forum: Plugins
In reply to: [Wp-Insert] Option to disable Geo IPEither way this is not ideal at all. GeoIP lookups should be local and file based. Secondly, unnecessary lookups that the user never asked for should not be performed.
The solution is therefore not to find a new geoip server but instead to fix the plugin functionality.
Forum: Plugins
In reply to: [Wp-Insert] Option to disable Geo IPJust putting this clear for any body who stumbles upon it who don’t know how to comment out in php, use the file robzy says and go to the bottom, make it match this
/* add_action('init', 'wp_insert_ip_to_country'); function wp_insert_ip_to_country() { global $wpInsertGeoLocation; $userIp = $_SERVER["REMOTE_ADDR"]; delete_transient('wp_insert_ip_'.$userIp); if($wpInsertGeoLocation != false) { return $wpInsertGeoLocation; } else { $countryCode = get_transient('wp_insert_ip_'.$userIp); if($countryCode === false) { $response = wp_remote_get('http://api.hostip.info/country.php?ip='.$userIp, array('timeout' => 5)); if(!is_wp_error($response) && isset($response['response']['code']) && ($response['response']['code'] == 200) && isset($response['body']) && ($response['body'] != '') && ($response['body'] != 'XX')) { $wpInsertGeoLocation = $response['body']; set_transient('wp_insert_ip_'.$userIp, $wpInsertGeoLocation, WEEK_IN_SECONDS); } } else { $wpInsertGeoLocation = $countryCode; } } }*/ /* End Get Geo Targeted Ad Code */Forum: Plugins
In reply to: [Wp-Insert] Option to disable Geo IPGreat, I am planning a migration soon. How is RAM usage? Are you using nginx or Apache?
Forum: Plugins
In reply to: [Wp-Insert] Option to disable Geo IPGreat tip robzy, I agree it is a poor decision to use geo ip when the user doesn’t even want it.
php7 really all it’s cracked up to be? Are you using the dotdeb repo by any chance?
Since the devs seem to have abandoned the free version of the plugin, here is how you can fix the issue I was having.
Go download version 3 from here https://plugins.trac.wordpress.org/changeset/1255786/ginger?format=zip&new=1255786
Unpack only the files inside the 2.3.6 folder into a folder called eu-ginger-cookie-law. Zip up the eu-ginger-cookie-law folder (that contains the files you unpacked) and upload it as a plugin to your site.