-
Notifications
You must be signed in to change notification settings - Fork 1
/
INSTALL
58 lines (39 loc) · 1.9 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Prerequirements for Installation
- - - - - - - - - - - - - - - - -
* A running MySQL database (5.0 or greater).
The server *must* be configured to support InnoDB tables.
* A webserver with PHP5 support. (PHP5.2+, stay secure)
* PHP gettext support.
If something does not work
- - - - - - - - - - - - - -
PLEASE read our FAQ first. It is contained in the README file shipped with
this package.
Installation Instructions
- - - - - - - - - - - - - -
0. Configure your PHP installation. The following options are required:
allow_call_time_pass_reference = On
short_open_tag = Off
Please also setup your default timezone.
http://php.net/date.timezone
e.g. date.timezone = "Europe/Berlin"
1. Copy the contents of the "src/" directory to your webserver, including all
subdirectories.
2. Change the permissions of "data/" (recursively) so that the webserver
can write into the directory. This can either be done using your FTP client
(consult the documentation of the client in case you use one), or by using
the following command on the webserver:
chmod -R a+rwX data/
3. Make sure that your database server has an existing database! The installer
will ask you for a database, but it will not create one for you.
- If you are running the forum in a hosted webspace, your webspace
provider has to provide you with the tools to do this.
- If you are running your own server it is presumed that you know how
to do create a database.
4. Point your browser to the installer/ directory. For example:
http://www.mydomain.com/freech/installer/
5. Follow the installation instructions.
6. Delete the installer/ directory. You are done!
7. If you want to, you may now customize your installation by adding
options into the data/config.inc.php file.
For a list of available options please check the file
'default_config.inc.php' that comes with this package.