If you have problems like me when the user after create an account through create_account.php page didn't than autologon into the shop do following:

FIND in application_top.php line

if (basename($PHP_SELF) == FILENAME_CREATE_ACCOUNT_PROCESS) $kill_sid = false;

and REPLACE it with

if ((basename($PHP_SELF) == FILENAME_CREATE_ACCOUNT) && ($HTTP_POST_VARS['action'] == 'process')) $kill_sid = false;

FIX ONLY. Attached file is empty.

More...