MyBB Community Forums

Full Version: What's wrong & how can I solve it
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi
after register in my forum my users see this error on top and can't receive activation E-Mail
Error :


Warning: mail() [function.mail]: SAFE MODE Restriction in effect. The mail() command is not allowed

PLZ help me how can I solve it
TNX So Much
Hi,

Your webhost has disabled PHPs mail functionality - so you won't be able to use any of the mail based features such as account activation, lost password requests, thread subscription notices and things like that.

I'd strongly urge you to find another webhost which supports PHPs mail() command.

Alternatively if that isn't possible, all you can do is tell MyBB not to show an error message when the emails can't be sent. To do this, open up inc/functions.php and find:
	mail($to, $subject, $message, $headers);

Replace with:
	@mail($to, $subject, $message, $headers);

An error will no longer be shown, however you still won't receive any emails from your forum.

Regards,
Chris Boulton
Thanks a lot