Ok i think i figured out what was the problem causing this.
First of all i noticed that my host has fastCGI, so i made the necessary changes in .htaccess file:
[color=#FF0000:48ggrttu](in my case)[/color:48ggrttu]
SetEnv PHPRC /home/bastek/www/crm/php.ini
It didnt seem to to help much, so i started digging deeper.
I saw the "failed" (or i should rather say looped) instalation alredy made a config file in /data directory, so i took a look and found an intresting line at the end:
define('FILE_SESSION_DIR','/tmp');
So i started looking for the /tmp directory on my ftp and i wasnt able to find it. So after having problems with the .htaccess SetEnv path to php.ini file i figured out that the problem may lie in this path as well.
I changed the:
define('FILE_SESSION_DIR','/tmp');
to [color=#FF0000:48ggrttu](in my case)[/color:48ggrttu]:
define('FILE_SESSION_DIR','/home/bastek/www/crm/tmp');
and everything went shoothly after this - the instalation resumed and finished without any problems. :-)
(i double checked then for the session file, and it was this time in the /tmp folder in my epesi directory, where the changed path pointed it to be)
It seems the instaltion started "looping" due to not being able to create/find session file.
I hope this will provide some help for You.
PS. Sorry for my english - i'm not a native english speaker. I'm doing my best ;-)