javatech
Registered
- Thread starter
- #1
Code:
<?php
$phpVersion = phpversion();
if (version_compare($phpVersion, '7.0.0', '<'))
{
die("PHP 7.0.0 or newer is required. $phpVersion does not meet this requirement. Please ask your host to upgrade PHP.");
}
$rootDir = realpath(__DIR__ . '/..');
chdir($rootDir);
require($rootDir . '/src/XF.php');
XF::start($rootDir);
XF::runApp('XF\Install\App');
I tested php and made sure everything is running. I have PHP 8.3 installed. I even went from Ubuntu Server 22.03 to Almalinux 8.3 . Same issue. If anyone has any suggestions please fill me in cause i been at this for a week now. More heads are better than 1. Thank you in advanced