8bf6b08cdf
- Add static plist PR: ports/125190 Submitted by: Wen heping <wenheping@gmail.com> (maintainer)
30 lines
881 B
Text
30 lines
881 B
Text
|
|
POST-INSTALL CONFIGURATION FOR ATutor
|
|
=====================================
|
|
|
|
1) Add the following to your Apache configuration, and
|
|
restart the server:
|
|
|
|
### Add the AcceptPathInfo directive only for Apache 2.0.30 or later.
|
|
Alias /atutor %%WWWDIR%%
|
|
AcceptPathInfo On
|
|
<Directory %%WWWDIR%%>
|
|
AllowOverride None
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</Directory>
|
|
<Directory %%WWWDIR%%/content/>
|
|
AllowOverride None
|
|
Order Allow,Deny
|
|
Deny from all
|
|
</Directory>
|
|
|
|
2) Visit your ATutor site with a browser (i.e.,
|
|
http://your.server.com/atutor/), and you should
|
|
be taken to the install.php script, which will lead
|
|
you through creating a config.inc.php file and then
|
|
setting up ATutor, creating an admin account, etc.
|
|
|
|
For more information, see the INSTALL DOCUMENTATION:
|
|
|
|
http://www.atutor.ca/atutor/docs/installation.php
|