You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The validation of the CAS ticket works correctly if the module php-curl is installed.
If php-curl not installed, the system use file_get_contents() function, but this generate an exception and a 500 HTTP error code.
Same kind of problem even with php curl installed
our cas server does not like those "%3A%2F%2F" url that prevent it to apply a regular expression on the service
Hi,
The validation of the CAS ticket works correctly if the module php-curl is installed.
If php-curl not installed, the system use file_get_contents() function, but this generate an exception and a 500 HTTP error code.
Exception text :
"file_get_contents(https://cas.XXXXXX.YY/serviceValidate?service=http%3A%2F%2F127.0.0.1%2Fapp_dev.php%2Fprofil%2Flogin_check&ticket=ST-ZZZZZZZZZZZZZZZZZZZZZZ): failed to open stream: operation failed"
The problem is due to the replacement of the "&" character in the URL by it's html entity version (&).
Best regards.
David.
The text was updated successfully, but these errors were encountered: