WP-Feedstats plugin updated for the “next to be” WP version 2.3
Published 1 year agoWhile going through all my plugins on here, updating them all. I noticed the Wp-Feedstats plugin was spitting an error…
Since I run a WP Trunk (non-public-released) copy of version 2.3-alpha. And many files have been “renamed” or relocated in the WP folder structure…The WP-Feedstats plugin spit an error upon activation, because the file it was “calling” wasn’t there. It had in fact been renamed and relocated in the wp-admin/ folder.
I didn’t copy the error, but here is a line of code to change in the
wp-feedstats.php file.
Change this:
include_once (ABSPATH.’/wp-admin/upgrade-functions.php’);
To This:
include_once (ABSPATH.’/wp-admin/includes/upgrade.php’);
That little change there, fixes the errors. Good luck!
Frank on August 7, 2007
Hy, thanks for your test under WP2.3. I have include a new if-else-function for run under WP 2.0* and 2.3*
With best regards.
Frank
spencerp on September 17, 2007
You’re welcome Frank. Also, if you can, please feel free to add that to the 2.3 Plugin Compatibility list then. Thanks.