bakerframework / bakercloud-ce-console

Repository for migration of the MagRocket Administration Console to the BakerFramework.
17 stars 7 forks source link

Compatibility issues with PHP 5.6 #55

Closed ReqM closed 5 years ago

ReqM commented 8 years ago

I've been using the console with PHP 5.3 all this time without issues, my hosting is updating the servers to PHP 5.6 so I tested it with baker cloud and got the following before log in: screen shot 2016-03-01 at 12 57 55 pm And the following after login: screen shot 2016-03-01 at 12 58 40 pm @nin9creative Will you by any chance make an upgrade to make it compatible with PHP 5.6?

nin9creative commented 8 years ago

Would need to take a look, but most likely it's releated to the CodeIgniter underlying framework.  Might want to search for CodeIgniter and these error messages on Google for the short term.

  From: ReqM <notifications@github.com>

To: bakerframework/bakercloud-ce-console bakercloud-ce-console@noreply.github.com Cc: Andrew andrew@nin9creative.com Sent: Tuesday, March 1, 2016 1:06 PM Subject: [bakercloud-ce-console] Compatibility issues with PHP 5.6 (#55)

I've been using the console with PHP 5.3 all this time without issues, my hosting is updating the servers to PHP 5.6 so I tested it with baker cloud and got the following before log in:

And the following after login:

@nin9creative Will you by any chance make an upgrade to make it compatible with PHP 5.6?— Reply to this email directly or view it on GitHub.

ReqM commented 8 years ago

Hi, I tried to fix the codeingniter issues but I still have some problems. Do you have any news in this topic?

Manbur commented 7 years ago

I have the same problem with PHP 5.6 and PHP 7, any solution?

drhounsell commented 7 years ago

Anyone solve getting Baker Cloud to work with PHP 5.6?

riotxoa commented 6 years ago

To solve "Only variable references should be returned by reference" in core/Common.php line 257 you must edit that file and replace this line:

return $_config[0] =& $config;

By these new ones:

$_config[0] =& $config; return $_config[0];