]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - INSTALL.mSQL
Updated the credits for Joel and Pablo
[SourceForge/phpwiki.git] / INSTALL.mSQL
1 mSQL support is new (as of 1.1.6) and is fairly stable.
2
3 Setting up mSQL is beyond the scope of this document. See
4 http://www.hughes.com.au/ for information on downloading and
5 instructions.
6
7 Create the database. You might need system privledges to do this:
8
9 [root@localhost phpwiki]# msqladmin create wiki
10 Database "wiki" created.
11 [root@localhost phpwiki]# 
12
13 Load the database schema:
14
15 [swain@localhost phpwiki]$ msql wiki < schemas/schema.minisql 
16
17 You will see a few error messages like this: 
18
19 mSQL >     -> 
20
21 ERROR : Unknown table "wiki"
22
23 This is normal because the schema file drops the table and then
24 creates it... dropping a nonexistent table is a nonfatal error and you
25 don't have to worry about it. You should see a lot of these:
26
27 mSQL >     ->     -> 
28 Query OK.  1 row(s) modified or retrieved.
29
30
31
32
33 mSQL >     -> 
34 Bye!
35
36 [swain@localhost phpwiki]$ 
37
38
39 Now the database is created; edit lib/config.php and comment out the
40 DBM file settings. Uncomment the mSQL settings, making sure the values
41 are correct.
42
43 That should be all! Try accessing your Wiki now. Read INSTALL and
44 README for more information, plus the comments in lib/config.php.
45
46 --Steve Wainstead
47 swain@panix.com
48
49 $Id: INSTALL.mSQL,v 1.2 2000-10-08 18:12:13 wainstead Exp $