Verzeichnisstruktur phpBB-1.0.0
- Veröffentlicht
- 15.12.2000
So funktioniert es
|
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
INSTALL
01 Thank you for choosing phpBB as your forum software.
02
03 An install of phpBB should be very painless. First you will need
04 the following.
05
06 1 Webserver w/PHP 3.0.15 or greater (Apache is know to work very well with phpBB)
07 1 MySQL server (phpBB has been tested on 3.22 and 3.23)
08 1 Admin crazy enough to run a forum (That would be you :) )
09
10 Installation
11 ------------------------
12
13 -------------------------------------------------------------------------
14 NOTE: If you are running a Windows machine please skip down to the 'Notes
15 for installing phpBB on Windows systems runing Apache' Section! If you have
16 problems with a Windows install you will be reffered to this document
17 befor any other support is given!
18 -------------------------------------------------------------------------
19
20 Step 1: Untar the soure into the directory phpBB will run from. Seeing as you
21 are reading this file you have probably gotten that far. (Or if you are on a
22 different machine then your webserver FTP the resulting phpBB dir over to where
23 it will run from on the server. ie /www/yourdomain.com/phpBB)
24
25 Step 2: Edit config.php and change the following values:
26 $url_images = "http://$SERVER_NAME/phpBB/images";
27 $url_phpbb = "http://$SERVER_NAME/phpBB";
28 $url_admin = "http://$SERVER_NAME/phpBB/admin";
29
30 $cookiedomain = "www.yourdomain.com";
31 $cookiename = "phpBB";
32 $cookiepath = "/phpBB";
33 $cookiesecure = false;
34
35 The $url_* fields may work for you if you're running phpBB from a domain
36 like this: http://www.phpbb.com/phpBB
37
38 However if you access phpBB like this: http://www.domain.com/~you/phpBB you will
39 have to change these values.
40
41 Also, config.php MUST be writeable by the webserver or the install will fail.
42 To set this on UNIX systems you can use chmod
43 ie: chmod 777 config.php (after the install if finsished set it back to 755
44 via chmod 755 config.php so it can't be written by anyone again.)
45
46 Step 3: Edit extention.inc and set $phpEx to the extention of all your phpBB files.
47 ie. if all your files end in .php then extention.inc would include
48
49 $phpEx = "php";
50
51 DO NOT put the . in.
52
53 Step 4: Run install.php by going to http://www.youdomain.com/phpBB/install.php
54
55 Step 5: Go to the admin panel and setup your categories,
56 forums, ranks, etc etc.
57
58 Thats it. You should now have a working installation of phpBB.
59
60 --------------------------------------------------------------------------
61 Notes for installing phpBB on Windows Systems running Apache.
62
63 First, thanks to our Windows using bug hunter David Tod Sigafoos for
64 coming up with this solution.
65
66 phpBB will only function correctly when PHP4 is installed as an ISAPI Apache
67 module, here are instuctions for installing it as such:
68
69 1) Stop your apache server
70
71 2) Download php 4.0.3pl1 from php.net. Download the isapi version
72 from here http://www.php.net/downloads.php
73
74 3) Unzip php into your directory (for me it was c:\php)
75
76 4) Copy the php4ts.dll into the windows\system directory. (there
77 should only be one in system or system32)
78
79 In http.conf
80
81 5) In apache http.conf find the loadmodule section and add this line
82 LoadModule php4_module c:/php/sapi/php4apache.dll
83
84 6) Be sure you have the AddType for php
85
86 If you have any other problems installing on Windows please visit the
87 support forums at http://www.phpbb.com/phpBB/
88
89 --------------------------------------------------------------------------
90
91
92 Any questions/comments can be posted at our offical support forums at:
93 http://www.phpbb.com/phpBB/index.php
94 Or by emailing support@phpbb.com
95
96 Thank you.
97 The phpBB Group
98
99