Fixed some errors/omissions in setup docs

Signed-off-by: Loui Chang <louipc.ist@gmail.com>
This commit is contained in:
Mark Taylor 2009-03-12 11:46:04 -04:00 committed by Loui Chang
parent d57b28ac7e
commit ab1300d23a

View file

@ -9,9 +9,11 @@ Setup on Arch Linux:
3) Configure Apache 3) Configure Apache
- Edit /etc/httpd/conf/httpd.conf and make sure that PHP - Edit /etc/httpd/conf/httpd.conf and enable PHP support
support is enabled by uncommenting the LoadModule line by adding the following lines.
that specifies the PHP module.
LoadModule php5_module modules/libphp5.so
Include conf/extra/php5_module.conf
- Also append the following snippet to enable the aur - Also append the following snippet to enable the aur
Virtual Host (Replace MYUSER with your username). Virtual Host (Replace MYUSER with your username).
@ -24,6 +26,8 @@ Setup on Arch Linux:
<Directory /home/MYUSER/aur/web/html> <Directory /home/MYUSER/aur/web/html>
Options Indexes FollowSymLinks Options Indexes FollowSymLinks
AllowOverride All AllowOverride All
Order allow,deny
Allow from all
</Directory> </Directory>
</VirtualHost> </VirtualHost>
@ -50,7 +54,7 @@ Setup on Arch Linux:
- Put PEAR in your php include_path in web/html/.htaccess: - 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. PEAR's path may vary depending on your set up.