From 4e4cdd3cf74aeb334312b4cb3b0e0e4f996a14a7 Mon Sep 17 00:00:00 2001 From: Jared Hancock <jared@osticket.com> Date: Tue, 29 Oct 2013 15:01:18 +0000 Subject: [PATCH] Advertise new prerequisites --- include/upgrader/prereq.inc.php | 4 ++-- setup/inc/install-prereq.inc.php | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/include/upgrader/prereq.inc.php b/include/upgrader/prereq.inc.php index 56a9d347e..ac2b0b2fe 100644 --- a/include/upgrader/prereq.inc.php +++ b/include/upgrader/prereq.inc.php @@ -15,9 +15,9 @@ if(!defined('OSTSCPINC') || !$thisstaff || !$thisstaff->isAdmin()) die('Access D These items are necessary in order to run the latest version of osTicket. <ul class="progress"> <li class="<?php echo $upgrader->check_php()?'yes':'no'; ?>"> - PHP v4.3 or greater - (<small><b><?php echo PHP_VERSION; ?></b></small>)</li> + PHP v5.3 or greater - (<small><b><?php echo PHP_VERSION; ?></b></small>)</li> <li class="<?php echo $upgrader->check_mysql()?'yes':'no'; ?>"> - MySQL v4.4 or greater - (<small><b><?php echo extension_loaded('mysql')?'module loaded':'missing!'; ?></b></small>)</li> + MySQL v5.0 or greater - (<small><b><?php echo extension_loaded('mysql')?'module loaded':'missing!'; ?></b></small>)</li> </ul> <h3>Highly Recommended:</h3> We highly recommend that you follow the steps below. diff --git a/setup/inc/install-prereq.inc.php b/setup/inc/install-prereq.inc.php index 6bdb25594..37579a32a 100644 --- a/setup/inc/install-prereq.inc.php +++ b/setup/inc/install-prereq.inc.php @@ -23,9 +23,11 @@ if(!defined('SETUPINC')) die('Kwaheri!'); You can use osTicket without these, but you may not be able to use all features. <ul class="progress"> <li class="<?php echo extension_loaded('gd')?'yes':'no'; ?>">Gdlib extension</li> - <li class="<?php echo extension_loaded('imap')?'yes':'no'; ?>">PHP IMAP extension</li> + <li class="<?php echo extension_loaded('imap')?'yes':'no'; ?>">PHP IMAP extension. <em>Required for mail fetching</em></li> <li class="<?php echo extension_loaded('xml')?'yes':'no'; ?>">PHP XML extension (for HTML email processing, and XML API)</li> <li class="<?php echo extension_loaded('json')?'yes':'no'; ?>">PHP JSON extension (faster performance)</li> + <li class="<?php echo extension_loaded('gettext')?'yes':'no'; ?>">Gettext is used for translations (faster performance)</li> + <li class="<?php echo extension_loaded('mbstring')?'yes':'no'; ?>">Mbstring is <b>strongly</b> recommended for all installations</li> </ul> <div id="bar"> <form method="post" action="install.php"> -- GitLab