Hello all,
I've installed PHP 5 with Apache server on local, and the content of php.ini as follow:
include_path = ".;C:\php\includes\"
session.save_path = "C:\Temp"
session.cookie_path = \
session.use_trans_sid = On
doc_root = "C:\Program Files\Apache Group\Apache2\htdocs"
extension_dir = "C:\php\ext\"
extension=php_mysql.dll
extension=php_mysqli.dll
mysql.default_port = 3306
mysql.default_host = localhost
mysql.default_user = root
mysqli.default_port = 3306
mysqli.default_host = localhost
mysqli.default_user = root
register_globals = yes
When I navigate to another page with <a href=> the session is working just fine, but if I use javascript to navigate to another page ( window.location / window.navigate / window.open ), the session is terminated.
Could somebody please tell me how to configure the php.ini file ( or maybe Apache server ) to navigate by javascript ?
Thanks & best regards,
The My