Thread: Project U-232
View Single Post
  #457  
Old 28th February 2019, 06:46
thartley55 thartley55 is online now
Senior Member
 
Join Date: Mar 2012
P2P
Posts: 205
Default
php 5.6 does work, but you need to change the config.php file...first

BEFORE you install, change these four lines in the /install/extra/config.phpsample.php

const REQUIRED_PHP = 70000, REQUIRED_PHP_VERSION = '7.0';
if (PHP_VERSION_ID < REQUIRED_PHP)
die('PHP '.REQUIRED_PHP_VERSION.' or higher is required.');
if (PHP_INT_SIZE < 8)

to read.....

const REQUIRED_PHP = 50000, REQUIRED_PHP_VERSION = '5.0';
if (PHP_VERSION_ID < REQUIRED_PHP)
die('PHP '.REQUIRED_PHP_VERSION.' or higher is required.');
if (PHP_INT_SIZE < 7)

This should work...always has for me...I've never upgraded past php 5.6

NOTE: If you've already installed, I believe you can change the same lines, now in the /include/config.php file.
And this is all assuming you have everything else correctly done as needed.