Hi!
Hm, installing and reinstalling the plugin should not affect the RSS feeds at all. Maybe you did something else?
Anyways, I'm sure we can fix your bug easily.
Could you please edit your index.php file - there search for "PAT_PERMALINK_FEEDCATEGORIES". There you can see PHP code which will detect the category that the RSS feed should show info for.
Inside that larger if-block, there you will see two new if-blocks. After that you will see this:
Code: Select all
ob_start();
include(S9Y_INCLUDE_PATH . 'rss.php');
$data = ob_get_contents();
ob_end_clean();
please change that to:
Code: Select all
die('CATEGORY: ' . $serendipity['GET']['category'] . '/' . $_GET['category']);
ob_start();
include(S9Y_INCLUDE_PATH . 'rss.php');
$data = ob_get_contents();
ob_end_clean();
Then open the URL of your RSS feed again, and you should see only a line "CATEGORY: ...". What does that read? When opening the feed of "2-Blog.rss" you should see:
Best regards,
Garvin