diff --git a/include/upgrader/prereq.inc.php b/include/upgrader/prereq.inc.php index 56a9d347ea0cef5c54c9cd6ac1701cdddf72c5dc..ac2b0b2febf2d454604d5f03476ea9b83c6bbb11 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 6bdb25594a14be7d89975c3656c82937dd16b2a4..37579a32a1ac976e0800511612f29029e1f23be3 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">