hothbricks
Forum Replies Created
-
Forum: Plugins
In reply to: [Event List] Shortcode doesnt workSame message here :
Upgrade of plugin “Event List” successful:
Added option “el_upgrade_in_progress” with value “1”
Start upgrade check
Update of option “el_last_upgr_version” is not required -> correct value “0.8.1” is already set
Deleted option “el_upgrade_in_progress”it stays for ever.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Something gone wrong with 4.1.0 update@AdvancecCoding : Thanks, did not figure out you need to activate Lazy load for this option ot show up. My bad. Good job.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Something gone wrong with 4.1.0 updateWe’ve added and option to choose the first comments loading logic. We’re preparing v4.1.1 version, it’ll be released very soon.
I see you just pushed a new version, but I cannot seem to find this option anywhere. Any help about where it’s located ? Thanks
- This reply was modified 8 years, 5 months ago by hothbricks.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Something gone wrong with 4.1.0 updateWe’ve added and option to choose the first comments loading logic. We’re preparing v4.1.1 version, it’ll be released very soon.
Exactly what’s needed here. thanks for that.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Something gone wrong with 4.1.0 updateWell, I understand this, but why the first batch of comments is not displayed at all until scrolling ? First comments should be displayed, whatever the position of the scrollbar, then lazy load should start acting when the scrollbar goes down to 90% of the window.
Forum: Plugins
In reply to: [Album Gallery for Flickr] plugin & SSL – Mixed content generatedMore : I edited flickr-jquery.js to change http to https in
thumbnail: 'https://farm' + photo.farm + '.static.flickr.com/' + photo.server + '/' + photo.id + '_' + photo.secret + '_q.jpg', href: 'https://farm' + photo.farm + '.static.flickr.com/' + photo.server + '/' + photo.id + '_' + photo.secret + '_b.jpg',and it works, but it will be overwritten with the next update.
Forum: Plugins
In reply to: [Search Regex] PHP Error messageI confirm it works with PHP 7 but it throws Curl & TLS 1.2 errors and generate troubles with other plugins updates, etc…
Just install, do what you have to do with it and get rid of it.
Fixed now ! Everything works fine with the last update. Good job guys !
Forum: Plugins
In reply to: [Access Watch: Security and Traffic Insights] Well…Ok, good to know, will give it a new try !
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Only registered usersThis is not a good solution, you have to activate the possibility for everyone to register for it to work, hence a lot of spam registration incoming.
A better solution would be to have the possibility to force registration through the advert form (or not depending on whatever you decide) which generate a lot less false registration crap. Then you can leave the option to leave everyone register off.
Forum: Plugins
In reply to: [Wp-Insert] Option to disable Geo IPDid you try https://freegeoip.net/, it’s based on GeoLite2 from Maxmind but it’s under Creative Commons licence
Forum: Plugins
In reply to: [Wp-Insert] Again, problem with Cloudflare with new versionOk, a simple workaround to compensate the poor execution of the hostip.info service :
Open the file wp-insert/includes/common/geotargeting.php
add an array wherever you want before line 255 for the XX code which is sent back by hostip.info when it finds an IPv6 or cannot locate the country of an IP :
array('value' => 'XX', 'text' => 'Various'),then replace line 298 by this :
if(!is_wp_error($response) && isset($response['response']['code']) && ($response['response']['code'] == 200) && isset($response['body']) && ($response['body'] != '') ) {then you just need to add the “Various” country to your geolocated ad block.
In case hostip.info does not locate properly the visitor IP it will serve the ad that was associated to the “Various” code.It works, at least you will serve some default content to the multiple IPs which are not geolocated properly.
Forum: Plugins
In reply to: [Wp-Insert] Again, problem with Cloudflare with new versionI understand, thanks for clarification.
Forum: Plugins
In reply to: [Wp-Insert] Again, problem with Cloudflare with new versionI have done some more testing.
$userIp = $_SERVER[“REMOTE_ADDR”]; works even with cloudflare. The detected IP is correct.
something wrong happens later with the call to hostip.info, the api is not so effective as a lot of IPs are not located correctly at all, and the api send the XX code which is then useless.
Any way to make the script send a default ad block if the XX code is detected by the hostip.info service ?
Forum: Plugins
In reply to: [Wp-Insert] Again, problem with Cloudflare with new versionUser IP is reaching other plugins (comments, anti-spam, contact forms, etc…) with no issues.
Cloudflare offers many solutions to allow that (plugin, mod for server) ant it works.
Old version of your plugin works too (modified to accomodate Cloudflare).
Something is wrong with the new version.