I am getting an error that prevents any logins This was previously working I believe and no longer does.
Please find below the code in the file the error message shows Reading the other answers to similar messages I see it mgith have been white space but there is none I don't think. I'm not really a coder just good at taking instructions but I can't see an end to the php so I checked other files in the same folder and none of them have it? There is not white space and I ran a grep -rl as mentioned but the other files don't seem to be it either. Any idea? I don't know how to find the whole error as mentioned either
I looked at the error report and it mentions this:
a:5:{i:0;s:153:"Cannot send headers; headers already sent in /home/yehaw598/public_html/app/code/local/Meigee/ThemeOptionsIndigo/controllers/LoginController.php, line 14";i:1;s:1371:"#0 /home/yehaw598/public_html/lib/Zend/Controller/Response/Abstract.php(115): Zend_Controller_Response_Abstract->canSendHeaders(true)
<?php
/**
* Magento
*
* @author Meigeeteam http://www.meaigeeteam.com <nick@meaigeeteam.com>
* @copyright Copyright (C) 2010 - 2012 Meigeeteam
*
*/
class Meigee_ThemeOptionsIndigo_LoginController extends Mage_Core_Controller_Front_Action
{
public function indexAction()
{
$this->loadLayout();
echo Mage::app()->getLayout()->createBlock('customer/form_login')->setTemplate('customer/form/loginAjax.phtml')->toHtml();
}
}