HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/mailadmin/include/initialization_test.php
<?php
   if (!defined('IN_WEBADMIN'))
      exit();

   $version = explode('.', phpversion());
   if ((int) $version[0] < 5)
   {
      echo "hMailServer WebAdmin requires PHP5 or later.";
      die;   
   }
   

   // Make sure that settings in config.php are specified.
   if ($hmail_config['rooturl'] === "CHANGE-ME")
   {
      echo "Please update config.php to match your system.";
      die;
   }

   if (!isset($hmail_config['rule_editing_level']))
   {
      echo "The config.php file which is in use is not compatible with this version of WebAdmin.<br/> To resolve this, please use the config.php which comes with this version of WebAdmin.";
      die;   
   }
   
?>