When I attempt to active the plugin, I get this error:
There was a problem initializing the feedlist plugin. Make sure the file feedlist.php is directly under your wp-content/plugins directory and not a subdirectory.
I do have it installed in the plugins root folder.
http://wordpress.org/extend/plugins/feedlist/
herbshirt
Member
Posted 1 year ago #
I get the same. Hmmm, 3 months since you asked... fingers crossed.
polar_action
Member
Posted 1 year ago #
Hi,
I just loaded the plugin and got the same message. After a little look at the file feedlist.php the first lines try to establish the Wrodpress installation folder but this is hardcoded!!! Not great programming.
my installation for example is www.mysite.com/wordpress so i've had to change the line to read...
// include files
$relroot = dirname(__FILE__).'/../../';
which is the plugin folder plus 2 folders up in my case to get to the wordpress root folder.
You'll need to amend that initial bit to what you require.
Hope that helps.
Dave
I had an error where the whole php file was being dumped to the screen. I fixed this by changing the two <? to <?php