發表文章

[WorldPress] 解決WP Google Maps 後面版本 正體中文變成簡體中文的問題

在wp-google-maps>inculdes資料夾底下找到 classs.google-maps-api-loader.php 打開修改 找到 protected function getGoogleMapsAPIParams() 將 $locale = substr($locale,0,2); 改成 if($locale <> "zh_TW"){ $locale = substr($locale,0,2); }else{ $locale = "zh_TW"; } 就正常了

[遊戲][解包]OverHit 解包教學

1.手機安裝OverHit 2.開啟遊戲,等他抓完資源包數據 3.將資源複製出來,路徑大概是/legacy/Android/data/com.nexon.overhit.global/files/Patches 4.裡面會看到很多.pak的檔案 5.下載最新版本QuickBMS 下載 6.下載BMS解包unreal腳本 下載 7.個別解壓後執行quickbms_4gb_files.exe 8.選擇腳本unreal_tournament_4.bms 9.選擇要解包資料的資料夾,在下方檔案名稱欄位輸入*.pak決定解包pak檔案 10.選擇解包後檔案存取位置 11.遇到詢問選項時輸入7,為該pak Key位置 12.解包完成 如何讀取角色模組? 1.下載UE Viewer 下載 官網 2.解壓縮後執行umodel.exe 3.選擇要讀取的資料夾路徑 4.選擇版本Unreal engine 4 > Unreal engine 4.17 5.點選OK 6.選擇SKEL資料夾內項目>這裏面放的是骨架 7.看到模型 輸入h看該程式說明 enjoy

Frida DLL load failed 問題解決法

Failed to load the Frida native extension: DLL load failed: The specified module could not be found. Please ensure that the extension was compiled for Python 3.x. 遇到這個問題試了幾個小時 最後發現 原來是他Frida寫死對應對新版本Python 所以安裝最新版本Python後再進行Frida安裝就解決了

[IIS] 常用對應弱點掃描設定

圖片
無聊記錄一下 使用在web.config 程式碼貼起來一直有問題只好直接用圖片了=.=

[Bootstrap][Ckeditor] Bootstrap中的Model與Ckeditor同時使用時的問題解決方法

當使用Ckeditor在Bootstrap的Model模組時會發生無法點選input控制項的情形 可以在html頁面添加下面的javascript // 把這段加在jQuery跟bootstrap載入之後,要不然會出錯。 $.fn.modal.Constructor.prototype.enforceFocus = function () { modal_this = this $(document).on('focusin.modal', function (e) { if (modal_this.$element[0] !== e.target && !modal_this.$element.has(e.target).length && !$(e.target.parentNode).hasClass('cke_dialog_ui_input_select') && !$(e.target.parentNode).hasClass('cke_dialog_ui_input_textarea') && !$(e.target.parentNode).hasClass('cke_dialog_ui_input_text')) { modal_this.$element.focus() } }) }; 原文連結

[Windows] Windows更新遇到80243004錯誤

解決辦法: 去右下角把系統圖示點出來,把Windows update 設定為總是顯示就可以正常更新。