This script checks if your server configuration meets the requirements for running PRADO-powered applications. It checks if the server is running the right version of PHP, if appropriate PHP extensions have been loaded, and if php.ini file settings are correct.
Your server configuration satisfies minimum requirements by PRADO. Please pay attention to the warnings listed below.
PHP version check | PHP version 5.1.0 or higher is required by PRADO. |
$_SERVER["HTTP_ACCEPT"] check | $_SERVER["HTTP_ACCEPT"] is required by multilanguage support. |
$_SERVER["SCRIPT_FILENAME"] check | $_SERVER["SCRIPT_FILENAME"] must point to the file path of this checker script. |
$_SERVER["REQUEST_URI"] check | Either $_SERVER["REQUEST_URI"] or $_SERVER["QUERY_STRING"] must be available for resolving user requests. |
$_SERVER["PATH_INFO"] check | $_SERVER["PATH_INFO"] or $_SERVER["PHP_SELF"] and $_SERVER["SCRIPT_NAME"] are required for determining URL pathinfo. |
Reflection extension check | Reflection extension is required by PRADO. It is used in by PRADO to check the validity of page templates. |
DOM extension check | DOM extension is required by PRADO. It is used in TXmlDocument to parse all sorts of XML-based configurations. |
SPL extension check | SPL extension is required by PRADO. |
CType extension check | CType extension is required by PRADO. |
PCRE extension check | PCRE extension is required by PRADO. |
PDO extension check | PDO extension is optional. If it is absent, you will not be able to use System.Data.* components. |
ICONV extension check | ICONV extension is optional. If it is absent, some internationalization components may not work properly. |
Zlib extension check | Zlib extension is optional. If it is absent, page state will not be compressed and your page size may increase. |
SQLite extension check | SQLite extension is optional. If it is absent, you will not be able to use TSqliteCache. |
Memcache extension check | Memcache extension is optional. If it is absent, you will not be able to use TMemCache. |
APC extension check | APC extension is optional. If it is absent, you will not be able to use TAPCCache. |
Mcrypt extension check | Mcrypt extension is optional. If it is absent, sensitive data, such as viewstate, cannot be encrypted. |
XSL extension check | XSL extension is optional. If it is absent, you will not be able to use TXmlTransform. |
SOAP extension check | SOAP extension is optional. If it is absent, you will not be able to use TSoapService. |
passed | failed | warning |