NikkiCasa
Forum Replies Created
-
The problem was WP Super Cache plugin
I renamed the plugin in my wp-content FTP folder and I was able to login my site afterwards
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] array_map() ErrorThis is the error message :
Warning: Cannot modify header information – headers already sent by (output started at /casatihomecomfort.com/wp-content/plugins/event-calendar-wd/includes/ecwd-display-class.php:2) in…com/wp-includes/pluggable.php on line 1228Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] array_map() ErrorI’m using the latest version of WordPress
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] array_map() ErrorI’m having the same issue since I updated the plugin EVENT-CALENDAR-WD, which is preventing me from logging into my WP site via ‘wp-admin’. Can someone help me, I don’t know what to do from here
Thank you
Forum: Fixing WordPress
In reply to: I can't upgrade plugins and themesHi klynam
The code needs to be added to each individual plugin that requires updating using the ‘edit’ feature in each. Save the change and then go to installed plugins page and click activate/update the newly created plugin, “SKIP SSL VERIFY’ for each plugin to update.
I wasn’t able to update themes with this code or add new plugins. I’m not sure how to do it or whether it can be done to themes/adding new plugins.
Hope this makes sense
Forum: Fixing WordPress
In reply to: I can't upgrade plugins and themesHi Klynam
Yes, there’s a temporary fix that I used to update already installed plugins in WP. It is as follows:
<?php
/*
Plugin Name: Skip SSL Verify
Plugin URI: https://www.damiencarbery.com
Description: Skip SSL verify in curl downloads – fixes: Download failed. error:0D0890A1:asn1 encoding routines:func(137):reason(161).
Author: Damien Carbery
Version: 0.1$Id: $
*/function ssv_skip_ssl_verify($ssl_verify) {
return false;
}
add_filter(‘https_ssl_verify’, ‘ssv_skip_ssl_verify’);
add_filter(‘https_local_ssl_verify’, ‘ssv_skip_ssl_verify’);In the meantime, Yahoo apparently escalated my issue.
Forum: Fixing WordPress
In reply to: I can't upgrade plugins and themesI agree with you, Samuel.
If Yahoo doesn’t resolve this for me today, I will switch to another hosting provider. It has been 2 weeks now and I feel I’m getting the run around from them. Very disappointed to say the least.
Thank you all for your comments and advice.
Forum: Fixing WordPress
In reply to: I can't upgrade plugins and themesI still think it has something to do with Yahoo because I’m not experiencing the same issue with 2 other blog sites hosted by other web hosting providers. No error messages.
Forum: Fixing WordPress
In reply to: I can't upgrade plugins and themesI believe the issue has to do with Yahoo SSL not compatible with Windows 10 (as soon as I upgraded to Windows 10 I started receiving error messages and unable to upgrade plugins/themes).
I found a temporary fix – a plugin called, ‘skip SSL verify’ php, which after manually installing, helped me upgrade the plugins for now.
Forum: Fixing WordPress
In reply to: I can't upgrade plugins and themesThank you for your assistance, Samuel!
I have sent a message to my Web Hosting provider and await a response.