Workshopshed
Forum Replies Created
-
Forum: Plugins
In reply to: [RSS Feed Checker] RSS Feed Checker causes fatal errorThe problem code seems to be the “add_action” one.
class RSSCheckWidget extends WP_Widget { static function init(){ add_action('widgets_init', create_function('', 'return register_widget("RSSCheckWidget");')); add_shortcode('LinksRSSEnhanced', array('RSSCheckWidget','RenderShortcode' )); }It should be possible to replace that with an anonymous function or an explicitly named one. Was a long time back so not sure why create function was used.
An example fix is shown here.
https://ehikioya.com/fix-for-function-create_function-is-deprecated-in-php-7-2/
- This reply was modified 3 years, 10 months ago by Workshopshed.
Forum: Plugins
In reply to: [Blogger Importer] Delete When Finished Import?You can remove this once the import is complete.
Forum: Reviews
In reply to: [Amazon Associates Link Builder] DO NOT DOWNLOAD IT! – DISCONTINUED PLUGINI’m open to suggestions, I’ve not started using anything else just yet. Perhaps check on the Affiliates forum?
Forum: Reviews
In reply to: [Amazon Associates Link Builder] DO NOT DOWNLOAD IT! – DISCONTINUED PLUGINThanks for the heads up, didn’t get that email despite being an affiliate. I only swapped to using the “official” plugin because the one I was using wasn’t updated.
I have used the “Find and Replace” plugin last time I needed to fix a bunch of shortcodes.
Cheers, have applied this fix.
Forum: Plugins
In reply to: [Amazon Associates Link Builder] Always ThrottlingI’ve got just 24 links on my whole so I can’t see why it would be constantly trying to check them.
I had a dig into the code. And found a file called “cron_constants.php”. In there there was a reference to the update that was recorded in the error logs. It mentioned it was 15 minutes. So I’ve incremented that to 12 hours.
const UPDATE_TABLE_CRON_SCHEDULE_DEFAULT_VALUE = 43200;
Hopefully, this will quiet things down a bit. Annoyingly, the plugin does not render the links if you bank the API keys (which are just used for creating and checking the codes) so you can’t just remove those to stop it calling the API.
Forum: Plugins
In reply to: [Amazon Associates Link Builder] Always ThrottlingThe guidelines suggest that you have to make sales to be allowed to use the API.
I’ve blanked out my API settings for the time being and will manually create my shortlinks.
Forum: Plugins
In reply to: [Amazon Associates Link Builder] Always ThrottlingI’m getting the same error with the following ajax referrer.
https://mysite/wp-admin/admin-ajax.php?action=aalb_update_table
I’m not logged in at the moment so it’s not like I’m looking up loads of products.
Hey Tizivia, the message “Links total” suggests that it can’t see your 3 links in the links table. Zero suggests it has never run.
I see your server load of 10.6 is quite high, the tool won’t do anything until that drops below the “Server Load limit”. That is so it does not stress an already loaded server. So best resolve that first and see if the counts go up after that
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] Plugin Flagged by WordFenceJust the community version. The Alert was generated back on Thursday
Alert generated at Thursday 27th of June 2019 at 02:16:09 AM
Have rescanned this morning and I agree it passes now.
Same with non-premium version, error appears immediately when you choose “New Post”. Copy error produces more details. I’ve removed the site name and structure from the message.
TypeError: Cannot read property ‘getCollectionByRoute’ of undefined
at t.value (….wordpress-seo/js/dist/wp-seo-post-scraper-810.min.js?ver=8.1:1:145344)
at t.value (….wordpress-seo/js/dist/wp-seo-post-scraper-810.min.js?ver=8.1:1:144551)
at jc (….gutenberg/vendor/react-dom.min.82e21c65.js:134:123)
at gc (….gutenberg/vendor/react-dom.min.82e21c65.js:127:223)
at vb (….gutenberg/vendor/react-dom.min.82e21c65.js:126:230)
at ub (….gutenberg/vendor/react-dom.min.82e21c65.js:126:65)
at zd (….gutenberg/vendor/react-dom.min.82e21c65.js:124:449)
at ra (….gutenberg/vendor/react-dom.min.82e21c65.js:123:319)
at Object.enqueueSetState (….gutenberg/vendor/react-dom.min.82e21c65.js:189:231)
at r.q.setState (….gutenberg/vendor/react.min.ab6b06d4.js:18:441)- This reply was modified 7 years, 9 months ago by Workshopshed.
- This reply was modified 7 years, 9 months ago by Workshopshed.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Fatal ErrorUpgrading to PHP 5.6.36 resolved this
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Fatal ErrorThanks I’ll give those a go.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Fatal Errorp.s. have been using the plugin for many years without issue.
Wordpress – 4.9.6
Forum: Plugins
In reply to: [List category posts] Update spits out codeSame here, code appears on the admin screen. Perhaps a character escape issue?
- This reply was modified 8 years, 6 months ago by Workshopshed.