Mention dependency of the DOM exension and add link to php.net
| | |
| | | * .htaccess support allowing overrides for DirectoryIndex |
| | | * PHP Version 5.2 or greater including |
| | | - PCRE (perl compatible regular expression) |
| | | - DOM (xml document object model) |
| | | - libiconv (recommended) |
| | | - mbstring (optional) |
| | | * php.ini options: |
| | |
| | | <form action="index.php" method="get"> |
| | | <?php |
| | | |
| | | $required_php_exts = array('PCRE' => 'pcre', 'Session' => 'session', |
| | | 'DOM XML' => 'dom'); |
| | | $required_php_exts = array('PCRE' => 'pcre', 'DOM' => 'dom2', 'Session' => 'session',); |
| | | |
| | | $optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv', |
| | | 'Multibyte' => 'mbstring', 'OpenSSL' => 'openssl', 'Mcrypt' => 'mcrypt', |
| | |
| | | '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' |
| | | '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) . '" />'; |