source: gm_system/help/en_help_setup3.php@ 651

Last change on this file since 651 was 651, checked in by aleg, 15 years ago

Změněná cesta k GM a Char logům pro realmy 4 a 7.

File size: 5.0 KB
Line 
1<?php
2/*
3 $Id: en_help_setup3.php 2072 2009-01-31 08:23:23Z andrewsimpson $
4
5 WebCollab
6 ---------------------------------------
7
8 This program is free software; you can redistribute it and/or modify it under the
9 terms of the GNU General Public License as published by the Free Software Foundation;
10 either version 2 of the License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14 PARTICULAR PURPOSE. See the GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License along with this
17 program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave,
18 Cambridge, MA 02139, USA.
19
20 Function:
21 ---------
22
23 Help page
24
25*/
26
27//get our location
28require_once("path.php" );
29require_once(BASE.'path_config.php' );
30require_once(BASE_CONFIG.'config.php' );
31
32define('CHARACTER_SET', 'UTF-8' );
33
34include_once(BASE."includes/screen.php" );
35define('XML_LANG', "en" );
36
37create_top("Help for Setup 3", 1 );
38
39$content = "
40<p><b>Site address:</b></p>
41<p>This is the base URL for your WebCollab site. For example:</p>
42<pre style=\"background-color : #F2F2F2; padding-top : 0px; padding-bottom :
435px\">http://mydomain.com/webcollab/</pre>
44<p>Don't forget the trailing forward slash on the end. This is required.</p>
45<p><b>Site name:</b></p>
46<p>This is the name of your site and will appear on the web pages.</p>
47<p>The default name is 'WebCollab'</p>
48<p><b>Abbreviated site name:</b></p>
49<p>This is the name of your site that will sent in the subject line of emails.<br />
50The title needs to be relatively short in length to be easily read in your users' email
51inboxes.</p>
52<p><b>Database name:</b></p>
53<p>This is the name of your database previously set up for WebCollab.</p>
54<p><b>Database user:</b></p>
55<p>This is the database user that WebCollab will use to access the database and tables.</p>
56<p>This user only needs to have access to read and write the WebCollab tables. This corresponds to
57privileges on a database such as SELECT, INSERT, UPDATE, and DELETE. The other privileges can be
58locked out for better security.</p>
59<p><b>Database password:</b></p>
60<p>The password for the database user.</p>
61<p><b>Database type:</b></p>
62<p>The dropdown box shows the types of databases available with WebCollab.</p>
63<p>The chosen database must be the same as the database type you have created. For a new install
64the dropdown box will default to the correct value.</p>
65<p><b>File location:</b></p>
66<p>This is the directory where the uploaded files will be stored. This needs to be a full
67(absolute) directory path. This is not the web address. Examples of an absolute path are:</p>
68Unix:<br />
69<pre style=\"background-color:#F2F2F2; padding-top:0px; padding-bottom:5px\">/var/www/webcollab/files/filebase</pre>
70Windows:<br />
71<pre style=\"background-color:#F2F2F2; padding-top:0px; padding-bottom:5px\">c:\www\webcollab\files\filebase</pre>
72Note:<br />
73<ul>
74<li>The file directory does not end with a trailing slash.</li>
75<li>WebCollab will automatically convert back slashes '\' in Windows to forward slashes '/'. This
76is still readable by Windows servers, but avoids the problem that a back slash is an escape
77character in PHP.</li>
78<li>The filebase directory should be outside your webserver root directory to maintain file
79security. (The default location given is <span style=\"text-decoration: underline\">not</span>
80outside the web server root, but it does makes first-time setup easier).</li>
81<li>The chosen upload file directory must be readable and writeable by the Apache web server.</li>
82</ul>
83<p><b>File location:</b></p>
84<p>This is the maximum size of file that can be uploaded (in bytes).</p>
85<p>Note: PHP and Apache settings will override the maximum file size set here. See the FAQ for more
86information.</p>
87<p><b>Language:</b></p>
88<p>The language that will be used at the completion of set up.</p>
89<p>Multi-byte languages (Chinese, Japanese and Korean) are only available in the Unicode version of
90WebCollab. For easy reference these languages are marked with an asterisk '*' in the drop down box.</p>
91<p><b>Timezone:</b></p>
92<p>Preferred timezone to be used.</p>
93<p><b>Use email:</b></p>
94<p>Email is high recommended for full functionality in WebCollab</p>
95<p><b>SMTP Host:</b></p>
96<p>WebCollab needs a SMTP host to relay email though. The mail server can be a local, or external
97machine. If this is on the same machine as the web server, the value 'localhost' (meaning this
98machine) can be used.</p>
99<p>The SMTP host can be a:</p>
100Fully qualified address:<br />
101<pre style=\"background-color:#F2F2F2; padding-top:0px; padding-bottom:5px\">mail.mydomain.com</pre>
102IP Address:<br />
103<pre style=\"background-color:#F2F2F2; padding-top:0px; padding-bottom:5px\">192.168.1.1</pre>
104<p>WebCollab will also work with mail servers requiring SMTP AUTH. You will need to hand edit the
105<i>[webcollab]/config/config.php</i> after configuration</p> ";
106
107new_box("Help for Setup 3", $content );
108create_bottom();
109?>
Note: See TracBrowser for help on using the repository browser.