Here’s the actual error reported on activation attempt:
Fatal error: Uncaught Error: Call to undefined method MyPHP::val() in /<mypath>/wp-content/plugins/feedwordpress/feedwordpress.php:2526 Stack trace: #0 /<mypath>/wp-content/plugins/feedwordpress/feedwordpress.php(1451): FeedWordPress::val('shutdown') #1 /<mypath>/wp-content/plugins/feedwordpress/feedwordpress.php(265): FeedWordPress->automatic_update_hook() #2 /<mypath>/wp-admin/includes/plugin.php(1897): include('/<mypath>...') #3 /<mypath>/wp-admin/plugins.php(172): plugin_sandbox_scrape('feedwordpress/f...') #4 {main} thrown in /<mypath>/wp-content/plugins/feedwordpress/feedwordpress.php on line 2526
Any help would be appreciated, would love to be using this again.
Ok, tracked activation issues down to the auto-update initialization:
# Cron-less auto-update. Hooray!
// $autoUpdateHook = $feedwordpress->automatic_update_hook();
// if (!is_null($autoUpdateHook)) :
// add_action($autoUpdateHook, array($feedwordpress, ‘auto_update’));
// endif;
I commented it out and feedwordpress now activates. Has something to do with not finding the MyPHP::val function when it initializes. Testing to see if it works or if the val() call is still an issue further into the program.
I have a suspicion that whatever info is in the meta storage (or tables, no idea where the settings/params are stored for FWP). Once activated all of my feeds from 2 years ago are there…guessing the old settings for the previous version are too.
Update: Ok, deleted FWP, Went into mysql and deleted all FWP entries and reinstalled. This time, it installs and activates just fine, BUT, this error when trying to add a feed, update a feed, etc.: Fatal error: Uncaught Error: Call to undefined method MyPHP::val()
-
This reply was modified 8 years, 4 months ago by
Dirty Bill.
-
This reply was modified 8 years, 4 months ago by
Dirty Bill.