找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 127|回复: 0

emlog pro v2.3.2 破解

[复制链接]

4

主题

0

回帖

18

积分

新手上路

积分
18
发表于 2024-12-11 10:00:38 | 显示全部楼层 |阅读模式
本帖最后由 黄少尘 于 2024-12-11 10:02 编辑

文件 `admin\article.php`,注释如下代码:
  1.     // if (!Register::isRegLocal() && $sta_cache['lognum'] > 50) {
  2.     //     emDirect("auth.php?error_article=1");
  3.     // }
复制代码
文件 `include\lib\register.php`

直接 `return true`
  1.     public static function isRegLocal() {
  2.         // $CACHE = Cache::getInstance();
  3.         // $options_cache = $CACHE->readCache('options');
  4.         // $emkey = isset($options_cache['emkey']) ? $options_cache['emkey'] : '';

  5.         // if (strlen($emkey) !== self::EMKEY_LEN) {
  6.         //     return false;
  7.         // }
  8.         return true;
  9.     }
复制代码
文件`include\lib\option.php`
  1. static function getAll() {
  2.         $CACHE = Cache::getInstance();
  3.         $options_cache = $CACHE->readCache('options');
  4.         $options_cache['site_title'] = $options_cache['site_title'] ?: $options_cache['blogname'];
  5.         $options_cache['site_description'] = $options_cache['site_description'] ?: $options_cache['bloginfo'];
  6.         // if (empty($options_cache['emkey'])) {
  7.         //     $options_cache['site_title'] = '未注册的版本 ' . $options_cache['site_title'];
  8.         // }
  9.         return $options_cache;
  10.     }
复制代码
文件 `admin\views\index.php`,
  1. // Check for updates
  2. // $.get("./upgrade.php?action=check_update", function (result) {
  3. // if (result.code === 200) {
  4. //$("#ckup").append('<span class="badge bg-danger ml-1">!</span>');
  5. // }
  6. // });
复制代码
  1. // $.get("./upgrade.php?action=check_update", function (result) {
  2. //     if (result.code === 1001) {
  3. //         rep_msg = "您的emlog pro尚未注册,<a href="auth.php">去注册</a>";
  4. //     } else if (result.code === 1002) {
  5. rep_msg = "已经是最新版本";
  6. //     } else if (result.code === 200) {
  7. //         rep_msg = `有可用的新版本:<span class="text-danger">${result.data.version}</span> <br><br>`;
  8. //         rep_changes = "<b>更新内容</b>:<br>" + result.data.changes;
  9. //         rep_btn = `<hr><a href="javascript:doUp('${result.data.file}','${result.data.sql}');" id="upbtn" class="btn btn-success btn-sm">现在更新</a>`;
  10. //     } else {
  11. //         rep_msg = "检查失败,可能是网络问题";
  12. //     }

  13. updateModalLoading.removeClass();
  14. updateModalMsg.html(rep_msg);
  15. updateModalChanges.html(rep_changes);
  16. updateModalBtn.html(rep_btn);
  17. // });
复制代码
`admin\views\plugin.php`
  1. // $.ajax({
  2. //     url: './plugin.php?action=check_update',
  3. //     type: 'POST',
  4. //     data: {
  5. //         plugins: pluginList
  6. //     },
  7. //     success: function (response) {
  8. //         if (response.code === 0) {
  9. //             var pluginsToUpdate = response.data;
  10. //             $.each(pluginsToUpdate, function (index, item) {
  11. //                 var $tr = $('table tbody tr[data-plugin-alias="' + item.name + '"]');
  12. //                 var $updateBtn = $tr.find('.update-btn');
  13. //                 $updateBtn.append($('<a>').addClass('btn btn-success btn-sm').text('更新').attr("href", "./plugin.php?action=upgrade&alias=" + item.name));
  14. //             });
  15. //         } else {
  16. //             $('#upMsg').html('插件更新检查无法正常进行,错误码:' + response.code).addClass('alert alert-warning');
  17. //         }
  18. //     },
  19. //     error: function (xhr) {
  20. //         var responseText = xhr.responseText;
  21. //         var responseObject = JSON.parse(responseText);
  22. //         var msgValue = responseObject.msg;
  23. //         $('#upMsg').html('插件更新检查异常: ' + msgValue).addClass('alert alert-warning');
  24. //     }
  25. // });
复制代码

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表