PDA

View Full Version : Suport PHP 5.3.5 ?



Vitor Reis
January 8, 2011, 09:18 PM
Realestate . Auto . General .
Suport full PHP 5.3.5 ?
thanks

Mike
February 25, 2011, 10:57 AM
Hello,

Our script can work with php 5.3.5 but there is no any benefit to use 5.3.5 version as we do not have any features written especially for this version.

Mohammad H bavi
April 22, 2013, 06:39 AM
Dear Sir,

today i will upgrade my php version 5.2 to php 5.4
but not working show to error , can you check and how can solved out .
http://jasoomcars.com/
Fatal error: Call-time pass-by-reference has been removed in /home1/jasoomca/public_html/includes/classes/rlHook.class.php on line 141

Please update to me .?

Viktor
April 22, 2013, 11:36 AM
Hello Mohammad,

I don't see any errors. Please check it again and show me errors if there still exist.

PGGO
May 4, 2013, 04:30 AM
Doe's Flynax script support "PHP 5.4.14" yet?

Viktor
May 4, 2013, 06:41 AM
Hello PGGO,

Why not? Of course Flynax should work with php 5.4.14 If you find any problems write it it will solve it asap! ;)

Mike
May 7, 2013, 10:21 AM
There are few changes have to be applied to the current 4.1 version in order to make it working with the latest php versions

the steps described here

http://www.flynax.com/forum/showthread.php?770-PHP-5-4-Support

or you can provide us with details we will fix it in case you have problems.

Of course next software version will not have such problems.

Lorenzo Scalzone
October 17, 2013, 08:49 PM
Hello Mr. Mike F.,
I have this message trying to open our site www.equashop.com:
"Fatal error: Call-time pass-by-reference has been removed in /home/equasite/public_html/includes/classes/rlHook.class.php on line 141"
I read your post and I verified code in "rlHook.class.php on line 141", it is the same that is shown in this forum at "http://www.flynax.com/forum/showthre...HP-5-4-Support".
What I must do?
Can you fix it?
Thanks in advance.

Alex
October 18, 2013, 04:18 AM
Dear Lorenzo,

Open the file: includes/classes/rlHook.class.php
Search the part of code: (will two matches)


$func(&$param1, &$param2, &$param3, &$param4, &$param5);


Remove the symbol: & like that:


$func($param1, $param2, $param3, $param4, $param5);