Error When Customers Sign In

Hello all,



When I go to my website, bigjmart.com and a customer goes to signin, I am not sure what is going on… I get this error when I click submit:





[color=#000000]if( $mode == 'login' && isset($_REQUEST['return_url']) && $_SERVER['REQUEST_METHOD'] == 'POST' ) $_REQUEST['return_url'] = 'http://www.google.com' return array(CONTROLLER_STATUS_OK);[/color]continue



Anyone wanna help please?

This is happen because you are using print something like ( [color=#000000]if( $mode == 'login' && isset($_REQUEST['return_url']) && $_SERVER['REQUEST_METHOD'] == 'POST' ) $_REQUEST['return_url'] = 'http://www.google.com' return array(CONTROLLER_STATUS_OK)[/color] ) , remove all echo or print statement in our controller files , after this you site work perfectly



Thanks

Manjeet Kumar Patel

Expert in Cc-cart

[quote name='Don' timestamp='1371116594' post='163521']

This is happen because you are using print something like ( [color=#000000]if( $mode == 'login' && isset($_REQUEST['return_url']) && $_SERVER['REQUEST_METHOD'] == 'POST' ) $_REQUEST['return_url'] = 'http://www.google.com' return array(CONTROLLER_STATUS_OK)[/color] ) , remove all echo or print statement in our controller files , after this you site work perfectly



Thanks

Manjeet Kumar Patel

Expert in Cc-cart

[/quote]



SOLVED!

Thank you so much Don! This did the trick! Thank you.