Not able to login as a customer

Using Commuity Edition. Installed on local server. I registered as a customer, but I am not able to login. It does not give me any error. It just stops on this url  http://192.168.1.6:81/account/login/sTarget/account/sTargetAction/index

Kindly help me

If you are not able to see any errors, probably the error logging is not active, add the following to your array in config.php

//Show low level PHP errors
'phpsettings' => [
    'display_errors' => 1,
]

reference: http://en.community.shopware.com/_detail_1961.html

 

The error may help you further or paste the error here.

@veelasj schrieb:

Using Commuity Edition. Installed on local server. I registered as a customer, but I am not able to login. It does not give me any error. It just stops on this url  http://192.168.1.6:81/account/login/sTarget/account/sTargetAction/index

Kindly help me

This is mostly due to timezone issues. The timezone of the database that Shopware uses must match the timezone in the Default.php file in Shopware.

For example if your database timezone is +0530 (Asia/Colombo),
in the Default.php file inside /engine/Shopware/Configs/, change the following code:
 

'phpsettings' => [
        'error_reporting' => E_ALL & ~E_USER_DEPRECATED,
        'display_errors' => 0,
        'date.timezone' => 'Europe/Berlin',
]

to:

'phpsettings' => [
        'error_reporting' => E_ALL & ~E_USER_DEPRECATED,
        'display_errors' => 0,
        'date.timezone' => 'Asia/Colombo',
]

Do that, clear the shopware cache from the backend and check whether the login works.

See: http://php.net/manual/en/timezones.php for a list of php supported timezones.