Mahara安装

前端之家收集整理的这篇文章主要介绍了Mahara安装前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装前,必须有
* Linux (window and mac不保证)
* PHP - 5.2.0 or greater.
* Postgresql 8.1+,or MysqL 5.0.25+ with InnoDB table support.
* Apache - 2.0 or higher

1. 下载mahara latest version and extract it to web dir
2. create database "mahara"
3. Create the Dataroot Directory and make it writable by the web server user. You can either change its owner to be the web server user,or you can chmod it to 777
4. modify mahara config.PHP file following settings:
$cfg->dbtype,$cfg->dbname,$cfg->dbuser,$cfg->dbpass
$cfg->dataroot
5. add following settings to config.PHP (这步骤mahara官方网站的安装指南没有,但少了它有可能出错
$cfg->directorypermissions = 0777; //or 0700?
$cfg->wwwroot = 'http://xxx.xxx.xxx/mahara/';
6. append directory in apache httpd.conf file
for example:
<Directory "/var/www/mahara/web">
AllowOverride All
</Directory>
Alias /mahara "/var/www/mahara/web"

7. restart apache with command "/etc/init.d/httpd restart"

8. run http://xxx.xxx/mahara to install


Integrate to moodle,use "Mahoodle". integration guide refers to "Mahoodle.pdf" at https://wiki.mahara.org/index.PHP/System_Administrator%27s_Guide/Moodle//Mahara_Integration

原文链接:https://www.f2er.com/postgresql/197005.html

猜你在找的Postgre SQL相关文章