开发者 | flockler |
---|---|
更新时间 | 2018年10月29日 21:06 |
PHP版本: | 5.2.4 及以上 |
WordPress版本: | 4.9.8 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
flockler-social-wall.zip
to your plugins directory, which usually is /wp-content/plugins/
Yes, we offer support. We have a knowledge base at https://help.flockler.com/ with a live chat. Live chat is also available in the Flockler web app. You can also reach us via email team@flockler.com
Your WordPress server might not have libssl, or it's not configured properly. Please install/configure libssl. Our WordPress plugin uses SSL for encryption so that your WordPress site stays safe.
Most common cause is other plugins. Check your plugins. W3TC (W3 Total Cache), WP Super Cache and other plugins are known to cause this. If you have W3TC (W3 Total Cache) plugin installed: open W3TC's Database cache settings > Reject query words > add word "lock" on its own line like here: W3TC query word settings If you have some other plugin, especially cache plugins, check if they have an option to disable database cache or query cache or to disable caching certain queries. All queries containing the word "lock" should not be cached. Also: Check your MySQL version (v5.5+ required), and your MySQL configuration. DB locking should be enabled. Technical details: We use MySQL's GET_LOCK and RELEASE_LOCK commands to lock the database when we are adding or updating posts so that we can prevent duplicates. Some plugins break these commands, such as W3TC which incorrectly caches these commands.
If your database tables are not using utf8mb4 you might be missing posts or have problems with posts with emojis. WordPress actually has a feature that can upgrade your database to use utf8mb4:
SHOW FULL COLUMNS FROM wp_posts;
and SHOW FULL COLUMNS FROM wp_postmeta;