MRX.LAFuck the Rules!

火车头7.6破解版闪退解决办法

网上各种什么工具什么的,最好别乱搞,很多人火车头都是挂在服务器上的..中标了,就等于给别人做了流量,还是自己手动的好!

卧槽,zblog没自动保存真不行,发布失败了…算了,各位自行百度如何编辑hosts文件,上面是下载直接覆盖的,下面是具体修改方法阅读全文 →

苹果CMS8.X去除自带广告办法

20220109更新,最新的苹果CMS已经去掉了播放页的广告,下面已经不需要参考了.(说实话,不是有人冒充苹果cms,我估计他也不会去掉广告..)

最近不是很多哥们被海洋挂马给弄疯了么.然后改用苹果CMS.又发现苹果CMS居然会在不固定的时间段内跳出广告劫持自己的流量,这就有点意思了.只能说国产程序咱能不能厚道点…

奉上去除广告的办法.阅读全文 →

用JS控制手机或者PC来访分别iframe不同的内容

function uaredirect() {
    var n = navigator.userAgent.toLowerCase();
         if (n.indexOf(’android’)>-1){
document.writeln(’<iframe scrolling=”no” frameborder=”0” marginheight=”0” marginwidth=”0” width=”100%” height=”2000” allowTransparency src=”http://www.xxx.com”></iframe>’);
}
         else  if (n.indexOf(’iphone’)>-1 || n.indexOf(’iPhone’)>-1 || n.indexOf(’ipod’)>-1 || n.indexOf(’ipad’)>-1 || n.indexOf(’ios’)>-1){
document.writeln(’<iframe scrolling=”no” frameborder=”0” marginheight=”0” marginwidth=”0” width=”100%” height=”2000” allowTransparency src=”http://www.xxx.com”></iframe>’);
}
         else {
document.writeln(’<center><iframe scrolling=”no” frameborder=”0” marginheight=”0” marginwidth=”0” width=”100%” height=”1450” allowTransparency src=”http://www.xxx.com”></iframe></center>’);
 
}
}
uaredirect();

阅读全文 →