Home › Forums › Newsletter Plugin Support › Class NewsletterUsers on line 123 Error
Hello i just have downloaded the plugin and activate it and when i try to subscribe an user i get the following error: Fatal error: Class ‘NewsletterUsers’ not found in /wp-content/plugins/newsletter/subscription/subscription.php on line 123
I have no other plugins activated.
Ccan anyone help me?
Thank you
This is really strange, since that class is loaded when newsletter is loaded. Can you re-install it?
Stefano.
found the problem:
require_once NEWSLETTER_DIR . ‘/subscription/subscription.php’; require_once NEWSLETTER_DIR . ‘/users/users.php’;
Inverse the lines:
require_once NEWSLETTER_DIR . ‘/users/users.php’; require_once NEWSLETTER_DIR . ‘/subscription/subscription.php’;
strange but for me it worked, hope it helps
Yes, the old subscription forms which use the “na” parameter can lead to this problem.
Thank you!