asegar2
Forum Replies Created
-
Well, there are still erratic failures. Of the last 100 posts in my sharing log (spanning February 7 – 15), 15 timed out on Twitter. (I share there every 2.2 hours.)
The last time-out was yesterday (February 14).
The service used to be 100% reliable, so it’s down to 85% now. Not so great.
Maybe this is caused by Twitter and there’s nothing you can do. But it’s discouraging.
P.S. Frankly, I don’t know how much longer I’m going to be posting to Twitter given the state of the platform these days. If you ever add Mastodon tooting to ROP I will be very happy!
Forum: Plugins
In reply to: [MailPoet - Newsletters, Email Marketing, and Automation] API Keys Mailpoet 2I have the same problem. A response would be appreciated. Mailpoet 2 seems to want to use “apikey” as your SendGrid login name to use the API Key method. Obviously that won’t work, since my SendGrid login ID is different, and the login to SendGrid fails.
Thanks — that did the trick!
Forum: Fixing WordPress
In reply to: HTTP Error on image upload to media libraryIf you are tired of trying all the “solutions” suggested around the internet to this infuriating problem, here is a foolproof method to get your images, videos, or other accepted file types into the WordPress Media Library:
NOTE: This will NOT work if you are hosting your site for free on www.remarpro.com, because those plans do not allow plug-ins. Otherwise it will work!
I suspect the cron jobs you mention were essentially disabled by my developer; the three of them aren’t needed since we regularly check for updates.
/wp-content/cache was already listed when I installed Word Fence as a default directory to exclude in my Options page. I changed it to /wp-content/cache/* as you requested and reran a scan.
Still hangs.
I don’t understand why you think wp-cron is malfunctioning (it’s not). Dreamhost does not disable default wp-cron behavior and wp-cron runs many other services successfully on my server (including periods when your plugin has hung). If your plugin has hung, how can it report whether wp-cron has run or not?
Please look for the actual reason that Word Fence cannot complete a scan on my WordPress site. Thanks!
The max_execution_time was one of the last things I changed when trying to get the scan to complete, based on a suggestion I read on the forum. It didn’t make any difference.
I’ve sent you the detailed activity log.
They were the out-of-the-box defaults provided when you install the plugin.
Done, let me know what you find out…
That did it (sidebar_box2). Thank you so much!
The function definition I quoted is copied from my theme’s functions.php.
I’ve added below the calls made to it immediately after the function is defined; perhaps a parameter is wrong here?
if ( function_exists(‘register_sidebar’) ) {
register_sidebar(array(
‘before_widget’ => ‘<li id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ”,
‘before_title’ => ‘<h3 class=”widgettitle”>’,
‘after_title’ => ‘</h3>’,
));
}register_sidebar(array(‘name’=>’blurb_box’,
‘before_widget’ => ”,
‘after_widget’ => ”,
‘before_title’ => ‘<h3>’,
‘after_title’ => ‘</h3>’,
));register_sidebar(array(‘name’=>’site_description’,
‘before_widget’ => ”,
‘after_widget’ => ”,
‘before_title’ => ‘<h3>’,
‘after_title’ => ‘</h3>’,
));register_sidebar(array(‘name’=>’quick_links’,
‘before_widget’ => ”,
‘after_widget’ => ”,
‘before_title’ => ‘<h3>’,
‘after_title’ => ‘</h3>’,
));register_sidebar(array(‘name’=>’sidebar_box1’,
‘before_widget’ => ”,
‘after_widget’ => ”,
‘before_title’ => ‘<h3>’,
‘after_title’ => ‘</h3>’,
));register_sidebar(array(‘name’=>’sidebar_box2’,
‘before_widget’ => ”,
‘after_widget’ => ”,
‘before_title’ => ‘<h3>’,
‘after_title’ => ‘</h3>’,
));register_sidebar(array(‘name’=>’upcoming_events’,
‘before_widget’ => ”,
‘after_widget’ => ”,
‘before_title’ => ‘<h3>’,
‘after_title’ => ‘</h3>’,
));/** Added by AJS 1/31/12 */
register_sidebar(array(‘name’=>’quote_box’,
‘before_widget’ => ”,
‘after_widget’ => ”,
‘before_title’ => ‘<h3>’,
‘after_title’ => ‘</h3>’,
));https://www.conferencesthatwork.com/ – thanks!
Here is my current register_sidebar function. It looks to me as though the code you’re saying is needed is already there. Other suggestions?
if ( function_exists(‘register_sidebar’) ) {
register_sidebar(array(
‘before_widget’ => ‘<li id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ”,
‘before_title’ => ‘<h3 class=”widgettitle”>’,
‘after_title’ => ‘</h3>’,
));
}No other changes, including the theme.
So this is due to something that was changed between 3.0.1 and 3.0.2? Because 3.0.1 worked fine, and did not display this error message.