|
1. If you use software firewall.
Try to turn it off and restart browser.
2. Make sure Session State is enabled (ASP only).
Proceed to Control Panel - Administrative Tools - Internet Information Service.
Right click on website and choose Home directory - Configuration - Options. Check off "Enable Session State" checkbox.

3. Your PHP installation is not properly configured to use sessions (PHP only).
Make sure your PHP installation is configured to support sessions.
Here is the article that explains how to configure PHP session parameters on Windows box.
In your php.ini files you need to set the session.save_path parameter i.e. add the line into c:\windows\php.ini file:
session.save_path = c:\PHP\sessiondata
where c:\PHP\sessiondata is folder where you want PHP to save session information.
You must ensure that account you use has read/write permissions on this folder.
Applies to:
ASPRunner Pro
PHPRunner
Back to top
|