- 插件安装需要通过extensions上传,及localsettings.php修改
require_once "$IP/extensions/CategoryTree/CategoryTree.php";
require_once "$IP/extensions/Cite/Cite.php";
wfLoadExtension( 'WikiEditor' );
$wgUseAjax = true;
- smtp配置需要修改localsetting.php,同时,又遇到了pfsockopen() 函数问题;
Deermin Wiki不能发送确认邮件,请检查您的邮箱地址是否包含无效字符。邮件发送器的返回信息:
Failed to connect to ssl://smtp.qq.com:465
[SMTP: Failed to connect socket: pfsockopen() has been disabled for security reasons (code: -1, response: )]
- localsettings.php按照官网建议,增加如下代码:
$wgSMTP = array(
'host' => "mail.example.com", // could also be an IP address. Where the SMTP server is located
'IDHost' => "example.com", // Generally this will be the domain name of your website (aka mywiki.org)
'port' => 25, // Port to use when connecting to the SMTP server
'auth' => true, // Should we use SMTP authentication (true or false)
'username' => "my_user_name", // Username to use for SMTP authentication (if being used)
'password' => "my_password" // Password to use for SMTP authentication (if being used)
);
ssl://smtp.example.com
Mediawiki对比Dokuwiki使用感受
- 对比dokuwiki,不够轻便,功能多,运行速度较慢,后台设置较为繁琐
- 页面过于生硬,不如dokuwiki柔和
- 曾经出现过user.php运行异常,页面错误
目前为止安装剩余问题点
2018/5/4
- 文件上传MIME拦截
- 分类根目录未理解
- MobileFrontend插件使用异常
2018/5/3
- 邮件发送配置问题
- extensions安装问题
- skin设置问题
- sidebar设置问题