Hi bailey!
That is strange; other users on this forums are using the plugin without any problems.
So if you're absolutely sure you configured it right and selected the right category to show, we'll need to inspect the SQL query that is created on your blog.
Since you don'T want to share your FTP access, you'll need to do this:
1. Edit your include/functions_entries.inc.php file
2. Search for the serendipity_fetchEntries() function
3. Look for this code:
Code: Select all
if (is_string($ret)) {
die("Query failed: $ret");
}
Modify this to:
Code: Select all
echo "BAILEY: $query<br />\n";
if (is_string($ret)) {
die("Query failed: $ret");
}
4. Save the file. Go to your blog on the startpage and look for the output of that SQL query. Copy and paste that query here on the forums.
5. Undo your changes to the file so that your blog won't appear "broken".
With that SQL output I should be able to see what's happening.
Before you do all of that, you might want to check if you are using the latest version of the startcat plugin. It is 1.1...
Best regards,
Garvin