欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
Moodle
来自开放百科 - 灰狐
(版本间的差异)
小 (→技巧) |
|||
(未显示2个用户的19个中间版本) | |||
第1行: | 第1行: | ||
+ | {{SeeWikipedia}} | ||
[[Image:Moodlelogo.gif|right]] | [[Image:Moodlelogo.gif|right]] | ||
第5行: | 第6行: | ||
Moodle的重要的特色是以社会建构教学法为其设计基础。Moodle的在线教学模块采用可自由组合的动态模块化设计,教师组织在线教学时就象搭积木一样简单有趣。Moodle支持多种教学模式,可应用在多种不同领域。Moodle功能强大、易于使用,近来发展十分迅速,迄今为止,有近百个国家2000 余个机构采用了Moodle网络教育平台。 | Moodle的重要的特色是以社会建构教学法为其设计基础。Moodle的在线教学模块采用可自由组合的动态模块化设计,教师组织在线教学时就象搭积木一样简单有趣。Moodle支持多种教学模式,可应用在多种不同领域。Moodle功能强大、易于使用,近来发展十分迅速,迄今为止,有近百个国家2000 余个机构采用了Moodle网络教育平台。 | ||
− | == | + | ==新闻== |
+ | <rss>https://moodle.org/useful/rss.php?lang=zh_cn|short|date|max=10</rss> | ||
+ | |||
+ | ==安装== | ||
*创建 mysql 数据库 | *创建 mysql 数据库 | ||
mysqladmin -u root -p create moodle 或 | mysqladmin -u root -p create moodle 或 | ||
第11行: | 第15行: | ||
mysql>GRANT ALL PRIVILEGES ON moodle.* TO moodle@localhost IDENTIFIED BY 'moodle'; | mysql>GRANT ALL PRIVILEGES ON moodle.* TO moodle@localhost IDENTIFIED BY 'moodle'; | ||
mysql>flush privileges; | mysql>flush privileges; | ||
− | 注意: moodle 需要 mysql 4.1.16 | + | 注意: moodle 需要 mysql 4.1.16 及以上版本 |
*创建 postgresql 数据库 | *创建 postgresql 数据库 | ||
− | /usr/local/pgsql/bin/ | + | /usr/local/pgsql/bin/createuser moodle |
− | /usr/local/pgsql/bin/psql | + | /usr/local/pgsql/bin/psql -d template1 |
− | + | template1=# create database moodle with owner moodle; | |
− | + | template1=# alter user moodle with password 'moodle'; | |
+ | |||
+ | 注意: moodle 需要 PostgreSQL 7.4 及以上版本 | ||
* Extract the files and place them in the documents folder on the webserver (or any webserver subfolder) | * Extract the files and place them in the documents folder on the webserver (or any webserver subfolder) | ||
* Go to http://yourserver/install.php or http://yourserver/subfolders/install.php to start the installation | * Go to http://yourserver/install.php or http://yourserver/subfolders/install.php to start the installation | ||
− | * Download the config.php file from your webserver and place in the moodle root if prompted | + | * Download the config.php file from your webserver and place in the moodle root if prompted |
+ | |||
+ | ==技巧== | ||
+ | 管理员密码重置 | ||
+ | update mdl_user set password=md5('huihoo') where username='admin' | ||
+ | 检测到错误的访问,该服务器可能只能经由"http://localhost/moodle"地址访问,抱歉。 | ||
+ | |||
+ | ==文档== | ||
+ | *[http://docs.huihoo.com/smalltalk/esug/ESUG2009/MondayAfternoon/smalltalk-in-moodle.1.pdf Smalltalk in moodle] | ||
+ | |||
+ | ==图集== | ||
+ | <gallery> | ||
+ | image:MTC-Designs.jpg|证书 | ||
+ | image:moodle-community-hubs-flowchart.png|流程图 | ||
+ | image:moodle-activity-modules-admin.png|模块 | ||
+ | </gallery> | ||
+ | |||
+ | ==链接== | ||
+ | *[http://moodle.org/ Moodle官网] | ||
+ | *[https://docs.moodle.org/all/zh Moodle Docs 中文] | ||
+ | *[http://moodle.com/ Moodle Service Network] | ||
+ | *[http://docs.moodle.org/en/Installing_Moodle Installing Moodle] | ||
+ | *[http://docs.huihoo.com/moodle/ Moodle开放文档] | ||
+ | *[http://download.huihoo.com/moodle/ Moodle下载] | ||
− | + | {{comment}} | |
− | + | ||
− | + | [[category:e-learning]] | |
− | [[ | + | [[category:PHP]] |
− | + | ||
− | + |
2017年1月26日 (四) 05:26的最后版本
您可以在Wikipedia上了解到此条目的英文信息 Moodle Thanks, Wikipedia. |
Moodle的开源学习内容管理系统(LCMS): 基于PHP技术,后台采用MySQL数据库。
Moodle的重要的特色是以社会建构教学法为其设计基础。Moodle的在线教学模块采用可自由组合的动态模块化设计,教师组织在线教学时就象搭积木一样简单有趣。Moodle支持多种教学模式,可应用在多种不同领域。Moodle功能强大、易于使用,近来发展十分迅速,迄今为止,有近百个国家2000 余个机构采用了Moodle网络教育平台。
目录 |
[编辑] 新闻
自https://moodle.org/useful/rss.php?lang=zh_cn加载RSS失败或RSS源被墙
[编辑] 安装
- 创建 mysql 数据库
mysqladmin -u root -p create moodle 或 mysql>create database moodle; mysql>GRANT ALL PRIVILEGES ON moodle.* TO moodle@localhost IDENTIFIED BY 'moodle'; mysql>flush privileges;
注意: moodle 需要 mysql 4.1.16 及以上版本
- 创建 postgresql 数据库
/usr/local/pgsql/bin/createuser moodle /usr/local/pgsql/bin/psql -d template1 template1=# create database moodle with owner moodle; template1=# alter user moodle with password 'moodle';
注意: moodle 需要 PostgreSQL 7.4 及以上版本
- Extract the files and place them in the documents folder on the webserver (or any webserver subfolder)
- Go to http://yourserver/install.php or http://yourserver/subfolders/install.php to start the installation
- Download the config.php file from your webserver and place in the moodle root if prompted
[编辑] 技巧
管理员密码重置
update mdl_user set password=md5('huihoo') where username='admin'
检测到错误的访问,该服务器可能只能经由"http://localhost/moodle"地址访问,抱歉。
[编辑] 文档
[编辑] 图集
[编辑] 链接
<discussion>characters_max=300</discussion>
分享您的观点