Moodle是一個開源課程管理系統(CMS),也被稱爲學習管理系統(LMS),是由澳大利亞Marting Dougiamas博士在2002年主持開發的開放源碼網絡教育平臺。
1、安裝工具
xampp-windows-x64-7.4.9-0-VC15
moodle-latest-39
最新版下載地址:https://download.moodle.org/releases/latest/
2、安裝環境配置php
; Experimental for Moodle 2.6 and later
;opcache.fast_shutdown = 1
;opcache.enable_cli = 1 ; Speeds up CLI cron
;opcache.load_comments = 0 ; May lower memory use, might not be compatible with add-ons and other apps.
而後,在php.ini的文檔的最末尾添加
[ExtensionList]
zend_extension=php_opcache.dll
d.您的數據庫在使用 Antelope 做爲文件格式。在MySQL和MariaDB實現徹底 UTF-8 支持須要使用 Barracuda 文件格式。請切換至 Barracuda 文件格式。
修改c:\xampp\mysql\bin|\my.ini 分別在對應位置添加下列代碼
[client]
default-character-set = utf8mb4mysql
[mysqld]
innodb_file_format = Barracuda
innodb_file_per_table = 1
innodb_large_prefixweb
character-set-server = utf8mb4
collation-server = utf8mb4_unicode_ci
skip-character-set-client-handshakesql
[mysql]
default-character-set = utf8mb4
在xampp-control重啓Apache和mysql服務,而後點擊瀏覽器頁面最下面的從新載入按鈕,等待系統安裝組件,須要等待一段時間,所有安裝完成後會出現確認按鈕。
填寫登錄用戶名、密碼、郵箱等信息。
首頁設置
保存信息後,moodel就安裝完成了,如下是登錄後的界面。
4、修改moodel局域網訪問設置
1.config 中,將'http://loalhost/moodle';改成'http://本機IP/moodle';
2.Apache conf中的httpd文件找到Listen 127.0.0.1:80修改Listen 127.0.0.1:80——本機IP:80
3.要實現局域網的訪問,還要作一件事:打開你的防火牆—高級設置—服務—web服務器(http)綜合以上三步便可實現局域網的訪問了。數據庫
五.外機配置指南(外網訪問設置)
第一步:對EASYPHP的更改
修改安裝目錄下的conf_fileshttpd.conf文件,
在下面位置
#Listen 3000
#Listen 12.34.56.78:80
Listen 10.0.128.158:80 ****重要就是這裏!!加多一行,真實IP地址加上端口號
Listen 127.0.0.1:80
!!!!注意: 此目錄下其它文件都不須要改 !!!windows
第二步:對MOODLE配置文件的修改
打開MOODLE目錄後,在根目錄下找到config.php文件,找到這一行,
$CFG->wwwroot = 'http://127.0.0.1/moodle';
把它改爲:
$CFG->wwwroot = 'http://你的IP/moodle';
再找到admin這一行,這裏是關鍵,
$CFG->admin = 'admin';瀏覽器