RageLT
Forum Replies Created
-
Same problem. I shouldn’t have upgraded to the new version. Migration has loaded the server to the limit.
Forum: Plugins
In reply to: [LightPress Lightbox] WordPress 5.6 break pluginsHow soon will the plugin be fixed?
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] List-UnsubscribeDone. https://github.com/stcr/subscribe-to-comments-reloaded/issues/402
A small but very important addition. I hope it will be in the next release.Thank you.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Fatal error upon updatingHello,
After update to 160106 I have error
<?php /* if (function_exists('subscribe_reloaded_show')) */ subscribe_reloaded_show(); ?>
shows:
PHP message: PHP Fatal error: Call to undefined function subscribe_reloaded_show()Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] List-UnsubscribeI’ll wait for the release. Thanx.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] List-UnsubscribeYou forgot about me. π
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] List-UnsubscribeI hope this option will be available on the next release π
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] List-Unsubscribev150611
Still relevant. πForum: Plugins
In reply to: [Subscribe To Comments Reloaded] List-UnsubscribeStill relevant.
Yes, it’s back with a new errors.
Here is solution:
$sql = "DELETE FROMcn_optionsWHEREoption_namelike '_transient_%' ORoption_namelike 'displayed_galleries%' ORoption_name` like ‘displayed_gallery_rendering
%'”;`But my patience is over. Deleted the gallery, now I am using WP Photo Album Plus.
You are right, problem is widget.
Temporary solution is crontab.<?php $db = new mysqli('localhost', 'username', 'pass', 'dbname'); $sql = "DELETE FROM <code>wp_options</code> WHERE <code>option_name</code> like '_transient_%' OR <code>option_name</code> like 'displayed_galleries%'"; if(!$result = $db->query($sql)){ die('There was an error running the query [' . $db->error . ']'); }When I click “Clear Image Cache” nothing happens. Nothing is flushed at DB.
As before, every hour use the query (crontab)DELETE FROM wp_options WHERE option_name like '_transient_%' OR option_name like 'displayed_galleries%'Added to crontab
DELETE FROM wp_options WHERE option_name like '_transient_%' OR option_name like 'displayed_galleries%'