source: subversion/trunk/roundcubemail/installer/welcome.html @ 1162

Last change on this file since 1162 was 1162, checked in by thomasb, 5 years ago

Disable PHP notices + check for installer script on login page

File size: 1.2 KB
Line 
1<form action="index.php" methond="get">
2<input type="hidden" name="_step" value="1" />
3
4<p>Welcome to the interactive install script for the RoundCube Webmail package</p>
5<p>First let's check your local environment and find out if everything RoundCube needs is available.</p>
6
7<p>The basic requirements are:</p>
8<ul>
9  <li>PHP Version 4.3.1 or greater including
10    <ul>
11      <li>PCRE (perl compatible regular expression)</li>
12      <li>Session support</li>
13      <li>Sockets enabled</li>
14      <li>Libiconv (recommended)</li>
15      <li>OpenSSL (recommended)</li>
16      <li>FileInfo (optional)</li>
17      <li>Multibyte/mbstring (optional)</li>
18      <li>Mcrypt (optional)</li>
19      </ul>
20    </li>
21    <li>php.ini options:
22      <ul>
23        <li>error_reporting E_ALL &amp; ~E_NOTICE (or lower)</li>
24        <li>file_uploads on (for attachment upload features)</li>
25        <li>session.auto_start needs to be off</li>
26        <li>magic_quotes_gpc off</li>
27      </ul>
28    </li>
29    <li>A MySQL or PostgreSQL database engine or the SQLite extension for PHP</li>
30    <li>An SMTP server (recommended) or PHP configured for mail delivery</li>
31</ul>
32
33<input type="submit" value="START INSTALLATION" />
34
35</form>
Note: See TracBrowser for help on using the repository browser.