Vanderlindemedia
Forum Replies Created
-
Forum: Plugins
In reply to: [Redis Object Cache] Redis with WoocommerceYes. And it puts products on OUT OF STOCK while the products are in stock and do offer various items. I think a portion of the database that redis is supposed to cache is not taken along with it. We’re using for example the Woocommerce booster pack, that has lots of additions. This is my best guess that a part of the database is not taken into caching (at all).
Forum: Plugins
In reply to: [LiteSpeed Cache] Possible Bug Andriod / WoocommerceClient wrote me,
“Kies 100g, en klik op ‘Add to cart’ vóórdat de prijs zichtbaar wordt.”
Translation for you:
“Choose 100G, and click on Add to cart before the price appears visible”
So it gets added into cart, but not taxed for that amount as the 100g item was set for.
I’ve updated lots of things in the backend as well; large updates we always verify since themes and all that could possibbly get broken.
Ill ask him to verify again if it is possible still.
Forum: Plugins
In reply to: [LiteSpeed Cache] Possible Bug Andriod / WoocommerceIt’s product “2864” , or simply put Phenibut.
I tried to reproduce the issue, but i think my computer has way to much horsepower compared to a andriod, let alone that my iphone 7 renders faster.
A visitor was able to select the most expensive quantity (i.e 216 euro, vs 19.95 for the cheapest) and be billed only for 19.95.
I’ve disabled object cache; but why should this cause an issue? We want to offload the DB as much as possible to retain speed.
Forum: Plugins
In reply to: [LiteSpeed Cache] Possible Bug Andriod / WoocommerceIts BRDQIPVQ.
Forum: Plugins
In reply to: [Autoptimize] SuggestionYep, it should improve the score here and there with a few percent related to insights!
Keep it up, excellent plugin.
Forum: Plugins
In reply to: [Autoptimize] SuggestionI often set manual rules in htaccess (apache) to cache certain files with a policy, now dont take this htaccess as a ruleset since the time to cache is way beyond any normal config:
[code]
# Caching<ifModule mod_headers.c>
# Turn on Expires and set default expires to 3 days
ExpiresActive On
ExpiresDefault A253339200# Set up caching on media files for 1 month
<filesMatch ".(ico|gif|jpg|jpeg|png|flv|pdf|swf|mov|mp3|wmv|ppt)$">
ExpiresDefault A2419333200
Header append Cache-Control "public"
</filesMatch># Set up 2 Hour caching on commonly updated files
<filesMatch ".(xml|txt|html|js|css)$">
ExpiresDefault A723343300
Header append Cache-Control "private, must-revalidate"
</filesMatch># Force no caching for dynamic files
<filesMatch ".(php|cgi|pl|htm)$">
ExpiresDefault A333433333
Header append Cache-Control "private, must-revalidate"
</filesMatch>
</ifModule><IfModule mod_deflate.c>
# these are known to be safe with MSIE 6
AddOutputFilterByType DEFLATE text/html text/plain text/xml # everything else may cause problems with MSIE 6
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/x-javascript application/javascript
AddOutputFilterByType DEFLATE application/ecmascript
AddOutputFilterByType DEFLATE application/rss+xml
</IfModule>
[/code]But this should be integrated in a way in Autooptimize to have the one click benefits all settings. Same goes for ngix and any other webserver.
Forum: Plugins
In reply to: [Autoptimize] Minor translate issue (DUTCH)Great work!
I love the plugin btw.
Forum: Plugins
In reply to: [Autoptimize] Minor translate issue (DUTCH)After installation on a dutch wordpress, it’s the first top notice on how to setup Auto optimize.
Forum: Reviews
In reply to: [Wordpress Countdown Widget] Wrong pluginFixed. My bad. Names look so confusing.
Forum: Developing with WordPress
In reply to: Hardcoded translationI understand.
Working with numbers might be a better and more future proof sollution. Glad that it’s solved.
Forum: Developing with WordPress
In reply to: Hardcoded translationWhoa, thanks for the tip! That works… by changing ‘nl-NL’ to simply ‘nl’ the switch seems to work now.
I hope it stays this way, because some clients really are picky when it comes to their site, and telling them no an update from WordPress caused the behaviour is usually a no go for them.
<?php if(get_bloginfo(‘language’) == ‘nl’) { ?>
<p>show something in NL</p>
<? } else { ?>
<p>Show something in other language</p>
<? } ?>
This seemed to work perfectly fine in a test template and switching in between them. ?? Good.
Hi Wfalaa,
It is wordfence, since a blocked message by wordfence itself comes up. Wordfence blocks the server IP adress from where we are posting from. It’s not the user, not me, it’s just the server IP that gets blocked.
When i dodge into blocking, it notes the server IP being blocked for logging in too many times with false password. We only use one password hard-stored in a config file on the master site before we post by using xml-rpc.
When i unblock that IP adress, the posting works fine. That is the strange part. How in world can wordfence block something that does not login incorrectly?
Forum: Fixing WordPress
In reply to: Core WP files keep getting modified on first lineHi. This is the recent mailpoet exploit.
Even if your website is not having any of outdated plugins, someone on the same machine might have mailpoet and making every website on the same server vulnerable.
This article gives some more info about it: https://blog.sucuri.net/2014/07/mailpoet-vulnerability-exploited-in-the-wild-breaking-thousands-of-wordpress-sites.html
There is at the moment not much you can do then except boot off those who are using the mailpoet or any related plugin. Esp make backups of a cleaned up site, and restore them as soon as you are hacked again.
It’s pretty easy to clean this up, but only to detect by browsing the corefiles themself.