MyBB Community Forums

Full Version: Admin Panel Error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Warning: mail(): SMTP server response: 503 Bad sequence of commands. You must specify the recipients of a message before you can send it in C:\Inetpub\vhosts\netgibi.net\httpdocs\admin\global.php on line 117

Sad ?????
Did you modify the file global.php? There's no code around the line 177 sending emails. Can you please post the lines 167 to 187 of your global.php?
no modify global.php Sad
Oh, there was a mistake. I thought it was the global.php in the root directory but it's the one in the folder "admin". Smile

Please open the language file admin/global.lang.php and check the following line:
$l['invalidlogin_headers'] = "From: \"{1} Admin CP\" <{2}>";
Is it correct?

If yes, open the file admin/global.php and search for:
mail($settings['adminemail'], $lang->invalidlogin_subject, $message, $lang->invalidlogin_headers);
Replace with:
mail($settings['adminemail'], $lang->invalidlogin_subject, $message, "From: Admin-CP <[email protected]>");