Well, it seems that WordPress 2.5 and Subscribe2 4.5 are being used massively judging by the rapid number of comments on the release of the latest version of this plugin
There appear to be 4 major problems people are running into:
- Fatal Errors
- Missing Profile Page
- Missing Emails
- Altered Page Titles
Fatal Errors:
This is most likely being caused by conflicts with other plugins that use buttonsnap.php. To fix this look at around line 50 in subscribe2.php for the following code:
require(ABSPATH . 'wp-content/plugins/subscribe2/include/buttonsnap.php');
And replace it with:
if (!function_exists(buttonsnap_textbutton)) {
require(ABSPATH . 'wp-content/plugins/subscribe2/include/buttonsnap.php');
}
Missing Profile Page:
This is a bug introduced by the new menu system in WordPress 2.5. Either use a Drop Down Menu Plugin or apply the fix I submitted to the trac.
Missing Emails:
I’ve gone back to using wp_mail() in this release and it’s working fine for me. If you are having problems go back to mail() by replacing instances of @wp_mail( with @mail( in the subscribe2.php file. Also, read this post and contact your site host about email restrictions and ask them to look at the server logs.
Altered Page Titles:
Again, this is a bug in the WordPress code files. See here for the fix.