forked from mkoppanen/php-aware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINSTALL.txt
More file actions
33 lines (21 loc) · 793 Bytes
/
INSTALL.txt
File metadata and controls
33 lines (21 loc) · 793 Bytes
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
1. Get the aware sources
git clone git://github.com/mkoppanen/php-aware.git
2. Run the build script
# bash build.sh
The build script should compile and install the extensions.
Just comment out the backends you dont need
3. Configure aware, the following entries to PHP ini should get you started:
-----
; Load the aware core extension
extension=aware.so
; Load aware tokyo plugin
extension=aware_tokyo.so
; Enable tokyo backend
aware.storage_modules=tokyo
; Tokyo Cabinet
aware_tokyo.backend="cabinet"
aware_tokyo.cabinet_file="/tmp/test.tct"
-----
This assumes you chose to install the tokyo backend for aware.
The gui is currently hardcoded to use the tokyo backend so to
test drive things it probably makes sense to enable it.