Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Hello,
I just updated Projeqtor from a 2.3 to the latest version. All is fine except Internet explorer. I have French version of Projeqtor.
When trying to login with IE11 => 11.0.9600.16476 i got : "ERROR : Une erreur est survenue le YYYY-MM-DD Ã HH:MM:SS.
It's working fine on ie10, FF, ie8 and Chrome though.
Hi,
You must have an error logged on server side.
Please post it here.
Thanks
Hello,
Here it is :
2013-12-26 10:20:10 ===== TRACE ===== NEW CONNECTED USER 'XXXXXXXXX'
2013-12-26 10:20:10 ** ERROR ** ERROR **
2013-12-26 10:20:10 ** ERROR ** on file '/var/projector/model/Audit.php' at line (234)
2013-12-26 10:20:10 ** ERROR ***** cause = Undefined offset: 1
Hi,
The issue is due to new way to register browser version sent to server.
Workaround is just to comment line 234 in /model/Audit.php :
// $version= $matches['version'][1];
I'll look for a better solution to be deployed in V4.1.
Ok thank you 🙂 I'll try that.
Hi,
another workaround, that should give better result is to replace line 230 in /model/Audit.php from
if (strripos($u_agent,"Version") < strripos($u_agent,$ub)) {
to
if (strripos($u_agent,"Version") < strripos($u_agent,$ub) or ! isset($matches['version'][1] ) ) {
Not tested yet, but should be fine.
Well the first code did the trick for me. I'll wait for a new version 🙂
Thank you.