This topic is locked
[SOLVED]

 PHPRUNNER 7.0 sessions

12/10/2013 9:00:40 AM
PHPRunner General questions
R
Rigmantas author

Hi,

What is the difference between phprunner7.0 and older versions sessions?

If login in aplications created with 7.0 - can't open pages created width older versions without a re-login.

Best regards,

Rimantas

Sergey Kornilov admin 12/10/2013

PHPRunner 7.0 added an option to prevent session sharing between different PHPRunner projects. This is what most people expect as a default behaviour.
If you want to change this modify C:\Program Files (x86)\PHPRunner7.0\source\include\dbcommon.php file removing two following lines and rebuild your project.

// isolate sessions for projects running on the same site

@session_name(str_replace(" ", "", "s##@BUILDER.m_lastDbSyncTime##"));
R
Rigmantas author 12/10/2013

Thank you