PDA

View Full Version : [4.4.0 Installation] Syntax error in .../install/index.php on line 145



Paulson George
July 9, 2015, 12:16 PM
I got the following syntax error when I first open the site for installation: "Parse error: syntax error, unexpected ':' in .../install/index.php on line 145"

I fixed it by changing "return $error ?: true;" to "return $error ? false : true;" in .../install/index.php on line 145. I got the Installation Wizard after doing this fix.

Please look into it and confirm what I have done is correct and also update your files in downloads.

Regards,
Paulson

John
July 10, 2015, 07:00 AM
Hello Paulson,
You did it almost right, the line: "return $error ?: true;" is shorthand ternary operator which doesn't support
by php less then 5.3. We already fixed this issue in the working version of the software and next update will have
this issue fixed. Here the fixed code line:



return $error ? $error : true;


John