diff options
author | Loui Chang <louipc.ist@gmail.com> | 2008-06-16 21:17:26 -0400 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2008-06-16 21:20:14 -0400 |
commit | 44dbb49ae9d5ef475a43c477aec009577a04169c (patch) | |
tree | 000d059579ead077119b8dd337375ef488c8edc2 /web/README.txt | |
parent | dc5b3d674e45e326d6b64205dd3dab43db570278 (diff) |
Reorganise web/README.txt and elaborate on PEAR and File_Find.
Add PEAR path to web/html/.htaccess.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/README.txt')
-rw-r--r-- | web/README.txt | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/web/README.txt b/web/README.txt index 06fc246..69bec04 100644 --- a/web/README.txt +++ b/web/README.txt @@ -27,21 +27,32 @@ Setup on Arch Linux: </Directory> </VirtualHost> -4) Configure PHP - Make sure you have mysql and json enabled in PHP and - PEAR is properly configured with the File_Find package - (http://pear.php.net/package/File_Find) installed +4) Clone the AUR project (using the MYUSER from above) + $ cd + $ git clone http://projects.archlinux.org/git/aur.git + +5) Configure PHP + Make sure you have mysql and json enabled in PHP. - Edit php.ini and uncomment/add these lines: extension=mysql.so extension=json.so + + AUR requires PEAR and the File_Find module. + Installing PEAR will vary depending on the system and may already + be included with PHP. You can also find it in the PHP source distribution. + + PHP sources: http://www.php.net/downloads.php + File_Find PEAR module: http://pear.php.net/package/File_Find - Install the File_Find PEAR package: # pear install File_Find -5) Clone the AUR project (using the MYUSER from above) - $ cd - $ git clone http://projects.archlinux.org/git/aur.git + - Put PEAR in your php include_path in web/html/.htaccess: + + php value include_path = ".:../lib:../lang:/usr/share/pear" + + PEAR's path may vary depending on your set up. 6) Configure MySQL - Connect to the mysql client |