Thanks for the help.
As of today I finally have an admin area working fine.
What I had to do is:
session_save_path('c:/tmpX'); (Note: this is the way in windows, NOT 'c:\tmpX')
This code goes right above the session_start();
I did that at 4 different places:
twg15/inc/mysessions.php
twg15admin/include/ini.php
twg15/admin/include/login.php
twg15/admin/tfu_config.php
Results: It is workin perfectly.
Why Did I had it to do like this:
Because i have 5 different programs that require sessions save and if I put all sessions inside one directory like php.ini would do it, then I will create a big mess and problems about password does not work, etc will arise. Instead, this way every program has a different session save path in different directories!!!.
Thanks
Franco