nico0012
Forum Replies Created
-
Thanks! ??
Hi, thanks for the help. When I get this error all WordPress pages give me this error. so I can not access to the backend to flush the database. The solution was increase the Redis plan, since from Heroku Redis Addon is not posible to make flush the data in fast way.
My error was not set the MAX_TTL, I forget set this in wp-config.php. Following some documentation: I set now to 900 and now seems all works good and Redis keeps using low amount of data stored.By the way, maybe for future changes in this plugin, can we catch this error in some way to avoid push down the hold site?
Thanks.Forum: Plugins
In reply to: [Mailgun for WordPress] Can not disable “Mailgun is almost ready”I found a way to fix this! Seems if you use: global VAR: MAILGUN_APIKEY in wp-config.php, after in the warning code section logic, this not works: $this->get_option(‘apiKey’);
So, under [plugin_dir]/includes/admin.php , under admin_notices() function.
I add:
$apiKey = (defined(‘MAILGUN_APIKEY’) && MAILGUN_APIKEY) ? MAILGUN_APIKEY : $this->get_option(‘apiKey’);And I change:
if ((!$apiKey && $this->get_option(‘useAPI’) === ‘1’) …
Forum: Plugins
In reply to: [Mailgun for WordPress] Can not disable “Mailgun is almost ready”@bensibley Hi, thanks for the update. I get the 1.6.1 version installed and still get the warning message. Thanks
- This reply was modified 6 years, 1 month ago by nico0012.
Forum: Plugins
In reply to: [Mailgun for WordPress] Can not disable “Mailgun is almost ready”Forum: Plugins
In reply to: [WPS Hide Login] Class ‘WP_Review_Me’ not foundSorry I just found the problem. The folder vendors is omitted in my git configuration. All good. Thanks!
- This reply was modified 6 years, 4 months ago by nico0012.