Recent Topics

1 Sep 20, 2006 22:48    

Hi,

I have problem with the email.
I know for sure that mail is enalbed by my hosting.

Email works when i do:
- Request email to activate my account
- Forgot my password

Email don't work when i register. I get a message that it's not possible te send an email. Possible reason is that mail() is disabled.

Ant suggestions?

Thanks in advance.

Kind regards
Suleyman

2 Sep 21, 2006 19:34

Go to /inc/_misc/_misc.funcs.php and search for "function send_mail()".

There should be:


	else
	{	// Soft debugging only....
		if( ! @mail( $to, $subject, $message, $headerstring ) )

Change it to:


	else
	{	// Soft debugging only....
		ini_set('display_errors', 'on');
		error_reporting(E_ALL);
		if( ! mail( $to, $subject, $message, $headerstring ) )

Now, you should see a warning. What does it say?


Form is loading...