本帖最后由 黄少尘 于 2024-12-11 10:02 编辑
文件 `admin\article.php`,注释如下代码: - // if (!Register::isRegLocal() && $sta_cache['lognum'] > 50) {
- // emDirect("auth.php?error_article=1");
- // }
复制代码文件 `include\lib\register.php`
直接 `return true` - public static function isRegLocal() {
- // $CACHE = Cache::getInstance();
- // $options_cache = $CACHE->readCache('options');
- // $emkey = isset($options_cache['emkey']) ? $options_cache['emkey'] : '';
- // if (strlen($emkey) !== self::EMKEY_LEN) {
- // return false;
- // }
- return true;
- }
复制代码文件`include\lib\option.php` - static function getAll() {
- $CACHE = Cache::getInstance();
- $options_cache = $CACHE->readCache('options');
- $options_cache['site_title'] = $options_cache['site_title'] ?: $options_cache['blogname'];
- $options_cache['site_description'] = $options_cache['site_description'] ?: $options_cache['bloginfo'];
- // if (empty($options_cache['emkey'])) {
- // $options_cache['site_title'] = '未注册的版本 ' . $options_cache['site_title'];
- // }
- return $options_cache;
- }
复制代码文件 `admin\views\index.php`, - // Check for updates
- // $.get("./upgrade.php?action=check_update", function (result) {
- // if (result.code === 200) {
- //$("#ckup").append('<span class="badge bg-danger ml-1">!</span>');
- // }
- // });
复制代码- // $.get("./upgrade.php?action=check_update", function (result) {
- // if (result.code === 1001) {
- // rep_msg = "您的emlog pro尚未注册,<a href="auth.php">去注册</a>";
- // } else if (result.code === 1002) {
- rep_msg = "已经是最新版本";
- // } else if (result.code === 200) {
- // rep_msg = `有可用的新版本:<span class="text-danger">${result.data.version}</span> <br><br>`;
- // rep_changes = "<b>更新内容</b>:<br>" + result.data.changes;
- // rep_btn = `<hr><a href="javascript:doUp('${result.data.file}','${result.data.sql}');" id="upbtn" class="btn btn-success btn-sm">现在更新</a>`;
- // } else {
- // rep_msg = "检查失败,可能是网络问题";
- // }
- updateModalLoading.removeClass();
- updateModalMsg.html(rep_msg);
- updateModalChanges.html(rep_changes);
- updateModalBtn.html(rep_btn);
- // });
复制代码`admin\views\plugin.php` - // $.ajax({
- // url: './plugin.php?action=check_update',
- // type: 'POST',
- // data: {
- // plugins: pluginList
- // },
- // success: function (response) {
- // if (response.code === 0) {
- // var pluginsToUpdate = response.data;
- // $.each(pluginsToUpdate, function (index, item) {
- // var $tr = $('table tbody tr[data-plugin-alias="' + item.name + '"]');
- // var $updateBtn = $tr.find('.update-btn');
- // $updateBtn.append($('<a>').addClass('btn btn-success btn-sm').text('更新').attr("href", "./plugin.php?action=upgrade&alias=" + item.name));
- // });
- // } else {
- // $('#upMsg').html('插件更新检查无法正常进行,错误码:' + response.code).addClass('alert alert-warning');
- // }
- // },
- // error: function (xhr) {
- // var responseText = xhr.responseText;
- // var responseObject = JSON.parse(responseText);
- // var msgValue = responseObject.msg;
- // $('#upMsg').html('插件更新检查异常: ' + msgValue).addClass('alert alert-warning');
- // }
- // });
复制代码
|