Recent content by chaptertwo

  1. C

    XF 2.2 PHP Version: 8.3.0 and fresh install

    I see. Yes I located: https://xenforo.com/purchase/requirements-zip and i need to sort out: Requirements not met The following XenForo requirements were not met. Please contact your host for help. The required PHP extension MySQLi could not be found. Please ask your host to install...
  2. C

    XF 2.2 PHP Version: 8.3.0 and fresh install

    i did: sudo apt -y install php8.1 sudo a2dismod php8.3 sudo a2enmod php8.1 sudo systemctl restart apache2 Now this script in a php file <?php // Get the PHP version and store it in a variable $phpVersion = phpversion(); // Display the PHP version echo "PHP Version: " . $phpVersion; ?> Tells...
  3. C

    XF 2.2 PHP Version: 8.3.0 and fresh install

    On a new UBUNTU install on a hyperv VM, accessing http://localhost/community/install/ reports PHP needs to be greater than 7.0.0 but I am on v 8.3.0 <?php $phpVersion = phpversion(); if (version_compare($phpVersion, '7.0.0', '<')) { die("PHP 7.0.0 or newer is required. $phpVersion does not...
Top Bottom