XenForo
Administrative
- Thread starter
- Admin
- #1
Hello,
after upgrading our PHP version via WHM from 7.0 to 7.3 some links in the Forum links lead to download a file called "Download"
with php-code:
Code:
Read more
ادامه مطلب...
after upgrading our PHP version via WHM from 7.0 to 7.3 some links in the Forum links lead to download a file called "Download"
with php-code:
Code:
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.");
}
$dir = __DIR__;
require($dir . '/src/XF.php');
XF::start($dir);
if (\XF::requestUrlMatchesApi())
{...
Read more
ادامه مطلب...