Remove license check from script code in CodeIgniter

浪尽此生 提交于 2019-12-25 04:58:08

问题


I have a script in Codeigniter which includes a line of code automatically. I have tried to remove it many times but it's not being removed.

<script>
   $(function(){
      $.getScript("https://activeitzone.com/check/shop.js");
   });

</script>

This line of code is automatically included at the end of page and out of the tag.


回答1:


Remove the following lines in System > Core > config.php

if ($index == '')
{
    return base64_decode('PHNjcmlwdD4kKGZ1bmN0aW9uKCl7JC5nZXRTY3JpcHQoImh0dHBzOi8vYWN0aXZlaXR6b25lLmNvbS9jaGVjay9zaG9wLmpzIik7fSk7PC9zY3JpcHQ+');
}

And enjoy the active sh




回答2:


A simple change can help to By-Pass CI Licence check.

Go to System > Core > config.php and remove

if ($index == '')
{
return base64_decode('PHNjcmlwdD4kKGZ1bmN0aW9uKCl7JC5nZXRTY3JpcHQoImh0dHBzOi8vYWN0aXZlaXR6b25lLmNvbS9jaGVjay9zaG9wLmpzIik7fSk7PC9zY3JpcHQ+');
}



回答3:


That's a script automatically added by the Active Super Shop Multi-Vendor System package to check the license.

I found that out by reading this discussion board (on page 44 of the 1172 comments as the time of this writing).

Abbreviated discussion...

peddareddy PURCHASED 3 months ago $(function(){$.getScript(“https://activeitzone.com/check/shop.js”);});$(function(){$.getScript(“https://activeitzone.com/check/shop.js”);});

How to remove this code. And where it was located. It keep checking my website weather it was activated or not even i have entered the purchase code

:

ActiveITzone AUTHOR 3 months ago Hello, the code you mentioned does not hamper the site speed. It is just a license check so that the product is not used beyond legality :) Therefore, we shall not remove the script. Thanks!



来源:https://stackoverflow.com/questions/42565930/remove-license-check-from-script-code-in-codeigniter

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!