简体   繁体   中英

Magento - Cannot send headers, headers already sent controllers/AccountController.php, line 252

Having a bit of issues after a customer registers. The registration is going fine and all the data is being submitted but after a customer registers they are getting hit with this is in the face

"Cannot send headers; headers already sent in /customers/b/5/f/smkdwholesale.com/httpd.www/app/code/community/Exinent/CustomerActivation/controllers/AccountController.php, line 252"

I've had a look at the code and can't seem to find the issue. Here it is:

} catch (Exception $e) {
echo $e->getMessage(); // line 252
Mage::log($e->getMessage());
}

change

catch (Exception $e) {
echo $e->getMessage(); // line 252
Mage::log($e->getMessage());
}

to

catch (Exception $e) {
    //echo $e->getMessage(); // line 252
    Mage::log($e->getMessage());
    }

because echo stop the page to redirect another page. you can check your error log in var/log folder.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM