HOR-1817 "(WSSO) No se autentifica al usuario en ProcessMaker" SOLVED

Issue:
    (WSSO) No se autentifica al usuario en ProcessMaker
Cause:
    Incompatibilidad del modulo "mod_authnz_sspi" y "session.cookie"
Solution:
    Se agrega validacion cuando se tenga la combinacion "mod_authnz_sspi" y "session.cookie"
This commit is contained in:
Victor Saisa Lopez
2016-09-22 17:25:00 -04:00
parent 016a18b9dc
commit bbeff740f1

View File

@@ -303,8 +303,10 @@ if ((preg_match("/msie/i", $_SERVER ['HTTP_USER_AGENT']) != 1 ||
}
session_start();
ini_set( 'session.cookie_httponly', 1 );
ini_set( 'session.cookie_secure', 1 );
if (!(array_key_exists('REMOTE_USER', $_SERVER) && (string)($_SERVER['REMOTE_USER']) != '')) {
ini_set('session.cookie_httponly', 1);
ini_set('session.cookie_secure', 1);
}
//$e_all = defined( 'E_DEPRECATED' ) ? E_ALL & ~ E_DEPRECATED : E_ALL;
//$e_all = defined( 'E_STRICT' ) ? $e_all & ~ E_STRICT : $e_all;