blob: 21dbf519cede0e1abd76b05d5334d75102562258 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
SemanticScuttle installation
============================
Prerequisites
-------------
To run SemanticScuttle, you need:
- PHP5
- A web server, for example Apache
Installation instructions
-------------------------
1. Create a new MySQL database
2. Import tables.sql into that database, i.e.
run
> mysql -umyusername semanticscuttle < tables.sql
on the shell ("semanticscuttle" being the database name)
3. Copy config.inc.php.dist to config.inc.php and modify it as
necessary.
4. Make the cache directory writable by your web server.
For example, run
> chmod 0777 cache
on the shell.
|