Server IP : 1.179.227.78 / Your IP : 10.104.4.41 Web Server : Apache System : Linux afdc-mdu34 5.4.0-153-generic #170-Ubuntu SMP Fri Jun 16 13:43:31 UTC 2023 x86_64 User : www ( 1001) PHP Version : 7.4.30 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/afdc-mdu34.rtarf.mi.th/joomla/tmp/install_5b8cf5889ab80/backend/View/ |
Upload File : |
<?php /** * @package AkeebaBackup * @copyright Copyright (c)2006-2018 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ // PHP 5.6 is modern enough. Anything else gets a warning. $minPHPVersion = '5.4.0'; $recommendedPHPVersion = '5.6.0'; if (!version_compare(PHP_VERSION, $minPHPVersion, 'lt')) { return; } $tx = new DateTimeZone('GMT'); // PHP 5.3 if (version_compare(PHP_VERSION, '5.4.0', 'lt')) { $akeebaCommonDatePHP = new DateTime('2014-08-14 00:00:00', $tx); } // PHP 5.4 elseif (version_compare(PHP_VERSION, '5.5.0', 'lt')) { $akeebaCommonDatePHP = new DateTime('2015-09-03 00:00:00', $tx); } // PHP 5.5 elseif (version_compare(PHP_VERSION, '5.6.0', 'lt')) { $akeebaCommonDatePHP = new DateTime('2016-07-10 00:00:00', $tx); } // PHP 5.6 elseif (version_compare(PHP_VERSION, '5.7.0', 'lt')) { $akeebaCommonDatePHP = new DateTime('2018-12-31 00:00:00', $tx); } // PHP 7.0 elseif (version_compare(PHP_VERSION, '7.1.0', 'lt')) { $akeebaCommonDatePHP = new DateTime('2018-12-03 00:00:00', $tx); } // PHP 7.1 elseif (version_compare(PHP_VERSION, '7.2.0', 'lt')) { $akeebaCommonDatePHP = new DateTime('2019-12-1 00:00:00', $tx); } // PHP 7.2 elseif (version_compare(PHP_VERSION, '7.3.0', 'lt')) { $akeebaCommonDatePHP = new DateTime('2020-11-30 00:00:00', $tx); } ?> <div style="margin: 1em"> <h1>Outdated PHP version <?php echo PHP_VERSION ?> detected</h1> <hr/> <p style="font-size: 180%; margin: 2em 1em;"> Akeeba Backup requires PHP <?php echo $minPHPVersion ?> or any later version to work. </p> <p> We <b>strongly</b> urge you to update to PHP <?php echo $recommendedPHPVersion ?> or later. If you are unsure how to do this, please ask your host. </p> <p> <a href="https://www.akeebabackup.com/how-do-version-numbers-work.html">Version numbers don't make sense?</a> </p> <hr/> <h3>Security advice</h3> <p> Your version of PHP, <?php echo PHP_VERSION ?>, <a href="http://php.net/eol.php">has reached the end of its life</a> on <?php echo $akeebaCommonDatePHP->format(JText::_('DATE_FORMAT_LC1')) ?>. You are strongly urged to upgrade to a current version, as using older versions may expose you to security vulnerabilities and bugs that have been fixed in more recent versions of PHP. </p> </div>