diff options
author | alecpl <alec@alec.pl> | 2009-12-31 08:32:31 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-12-31 08:32:31 +0000 |
commit | d62c312e04d06408b3a51f8c80ec58493fe70da9 (patch) | |
tree | 4885c4d808a2dbbc7fd4101f426fed6e45477084 /installer | |
parent | a2cb306981d8665f1a3907933d52793f8a216053 (diff) |
- required JSON check added, changed links to PHP modules
Diffstat (limited to 'installer')
-rw-r--r-- | installer/check.php | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/installer/check.php b/installer/check.php index 459305138..3afbdf799 100644 --- a/installer/check.php +++ b/installer/check.php @@ -2,7 +2,7 @@ <?php $required_php_exts = array('PCRE' => 'pcre', 'DOM' => 'dom', - 'Session' => 'session', 'XML' => 'xml'); + 'Session' => 'session', 'XML' => 'xml', 'JSON' => 'json'); $optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv', 'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl', 'Mcrypt' => 'mcrypt', @@ -22,20 +22,21 @@ $ini_checks = array('file_uploads' => 1, 'session.auto_start' => 0, $optional_checks = array('date.timezone' => '-NOTEMPTY-'); $source_urls = array( - 'Sockets' => 'http://www.php.net/manual/en/ref.sockets.php', - 'Session' => 'http://www.php.net/manual/en/ref.session.php', - 'PCRE' => 'http://www.php.net/manual/en/ref.pcre.php', - 'FileInfo' => 'http://www.php.net/manual/en/ref.fileinfo.php', - 'Libiconv' => 'http://www.php.net/manual/en/ref.iconv.php', - 'Multibyte' => 'http://www.php.net/manual/en/ref.mbstring.php', - 'Mcrypt' => 'http://www.php.net/manual/en/ref.mcrypt.php', - 'OpenSSL' => 'http://www.php.net/manual/en/ref.openssl.php', - 'GD' => 'http://www.php.net/manual/en/ref.image.php', + 'Sockets' => 'http://www.php.net/manual/en/book.sockets.php', + 'Session' => 'http://www.php.net/manual/en/book.session.php', + 'PCRE' => 'http://www.php.net/manual/en/book.pcre.php', + 'FileInfo' => 'http://www.php.net/manual/en/book.fileinfo.php', + 'Libiconv' => 'http://www.php.net/manual/en/book.iconv.php', + 'Multibyte' => 'http://www.php.net/manual/en/book.mbstring.php', + 'Mcrypt' => 'http://www.php.net/manual/en/book.mcrypt.php', + 'OpenSSL' => 'http://www.php.net/manual/en/book.openssl.php', + 'GD' => 'http://www.php.net/manual/en/book.image.php', + 'JSON' => 'http://www.php.net/manual/en/book.json.php', + 'DOM' => 'http://www.php.net/manual/en/book.dom.php', 'PEAR' => 'http://pear.php.net', 'MDB2' => 'http://pear.php.net/package/MDB2', 'Net_SMTP' => 'http://pear.php.net/package/Net_SMTP', 'Mail_mime' => 'http://pear.php.net/package/Mail_mime', - 'DOM' => 'http://www.php.net/manual/en/intro.dom.php' ); echo '<input type="hidden" name="_step" value="' . ($RCI->configured ? 3 : 2) . '" />'; |