#使用方法: #1. 修改 ida-tmplv6v7.key 中的信息 #2. 通过以下命令生成key文件 ida_key.exe -s ida-tmplv6v7.key > ida.key
Gravatar 头像无法加载
Gravatar(英语:Globally Recognized Avatar)是一项用于提供在全球范围内使用的头像服务。只要你在Gravatar的服务器上上传了你自己的头像,你便可以在其他任何支持Gravatar的博客、论坛等地方使用它。
由于众所周知的原因,头像服务器多数都无法正常访问,不管是http还是https。为了解决头像问题有两个办法:
1.直接禁用头像服务
2.替换头像服务器连接。
第二种情况比较蛋疼的地方在于要找一个可用的镜像比较麻烦,可以通过下面的连接来获取可用连接。
Litespeed Cache https模式下css/js 加载失败
安装litespeed插件并且开启之后,发现原有的页面样式丢失了。导致这个问题的原因在于虽然访问的是https的链接,但是资源文件依旧是http协议加载的,所以就直接挂掉了。解决这个问题最简单的办法应该是开启全站https,但是我并不想这么干,想依旧提供http访问的能力。于是找各种解决方法,网上提供的解决方案包含但不限于下面这几种:
1. 通过插件解决:例如Really Simple SSL等进行样式修复,但是我安装了没有效果。
2.通过修改functions.php添加以下代码(无效):
add_filter('script_loader_src', 'agnostic_script_loader_src', 20,2); function agnostic_script_loader_src($src, $handle) { return preg_replace('/^(http|https):/', '', $src); } add_filter('style_loader_src', 'agnostic_style_loader_src', 20,2); function agnostic_style_loader_src($src, $handle) { return preg_replace('/^(http|https):/', '', $src); }
Loginpress Pro Cracked
LoginPress Pro is a premium plugin which works if you have installed Free version already. So, first install our Free version from wordpress.org https://wordpress.org/plugins/loginpress/ and then install the Pro package.
Crack log:
1. replace the content of loginpress-main.php with flow content
2. active the plugin with any code .
The Enigma Protector v6.70 【x32 x64】
The Enigma Protector is a powerful tool designed for complex protection of program modules. Program modules include the following types of objects:
- Win32 and Win64 Portable Executable Files (*.exe);
- Dynamic Link Libraries (*.dll);
- .NET Executables (*.exe).
- Windows Screen Saver Files (*.scr);
- ActiveX Component Files (*.ocx);
In this context the term “protection” means realization of two major ideas. The first one is “try before you buy” concept support system (the mentioned concept is the main principle of the shareware marketing method). And the second one is protection of program module machine code from analysis and cracking. As it can be seen, the protection is realized in different, but nevertheless greatly interrelated aspects which are protection of the developer’s economic interests and technical protection of a software product. Later we will consider these ideas in more detail.
IDA Pro 7.6 + HexRays Decompilers
UniApp Android高德地图黑屏
如何在uniapp中引入高德地图可以参考这篇文章,http://www.xiongdalin.com/2019/11/27/unaipp-amap/。不过引入之后如果离线打包那么很可能在安卓系统上会黑屏,因为没有引入对应的sdk。
如果要解决这个问题需要引入:
implementation files('libs/map-amap-release.aar') implementation files('libs/amap-libs-release.aar') # 不要同时引入amap-gp-libs-release
官方文档中没有说明如何引入高德的sdk,如果通过高德下载sdk导入会导致各种冲突,同样引入上面的amap-gp-libs-release也会导致各种冲突。