summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Taylor <skymt0@gmail.com>2009-03-12 16:46:04 +0100
committerLoui Chang <louipc.ist@gmail.com>2009-03-12 19:01:34 +0100
commitab1300d23a48a35d45c0a3a4b97402855c6129aa (patch)
tree3a9b2fd040d4882e11cfcefceddd11e4ed041732
parentd57b28ac7e8b5fc89189c8c0ab07550497b45f1e (diff)
downloadaur-ab1300d23a48a35d45c0a3a4b97402855c6129aa.tar.gz
aur-ab1300d23a48a35d45c0a3a4b97402855c6129aa.tar.xz
Fixed some errors/omissions in setup docs
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
-rw-r--r--web/README12
1 files changed, 8 insertions, 4 deletions
diff --git a/web/README b/web/README
index 9958e7f3..d08dae7b 100644
--- a/web/README
+++ b/web/README
@@ -9,9 +9,11 @@ Setup on Arch Linux:
3) Configure Apache
- - Edit /etc/httpd/conf/httpd.conf and make sure that PHP
- support is enabled by uncommenting the LoadModule line
- that specifies the PHP module.
+ - Edit /etc/httpd/conf/httpd.conf and enable PHP support
+ by adding the following lines.
+
+ LoadModule php5_module modules/libphp5.so
+ Include conf/extra/php5_module.conf
- Also append the following snippet to enable the aur
Virtual Host (Replace MYUSER with your username).
@@ -24,6 +26,8 @@ Setup on Arch Linux:
<Directory /home/MYUSER/aur/web/html>
Options Indexes FollowSymLinks
AllowOverride All
+ Order allow,deny
+ Allow from all
</Directory>
</VirtualHost>
@@ -50,7 +54,7 @@ Setup on Arch Linux:
- Put PEAR in your php include_path in web/html/.htaccess:
- php value include_path = ".:../lib:../lang:/usr/share/pear"
+ php_value include_path ".:../lib:../lang:/usr/share/pear"
PEAR's path may vary depending on your set up.