Hi Prit,
As you know, until now my test blog was in a subdirectory and accessible in the form of http://mydomain.com/myblog/
Now as I created a SUBDOMAIN as http://myblog.mydomain.com everything worked except that I couldn't login. Examining the session vars I confirmed that they weren't being set (I'm not using any .htaccess at this moment)
1. looking into the destination of the form action in the loginPage() funcion:
- the original function used destination > $_SERVER['SCRIPT_NAME']/loginPageSubmit
- which translated into > http://myblog.mydomain.com/index.php/loginPageSubmit
2. so I made a test changing the action destination path to its absolute form:
- http://mydomain.com/myblog/index.php/loginPageSubmit
and I was able to login again
Do you have any idea why sessions weren't set in 1. using the subdomain path ?