有 84 筆資料符合您搜尋的條件

dtchang
2023-10-17, 14:13
版面: 網路與網站知識
主題: 關閉CompatRunner, devicecensus, Wermgr.exe 產生的問題
回覆: 0
觀看: 603

關閉CompatRunner, devicecensus, Wermgr.exe 產生的問題

1. Wermgr (回報錯誤用) [開始] [執行] servics.msc 把 windows error reporting manangement (wermgr.exe) 停用即可 2. devicecensus (收集設備訊息)(會佔用系統資源)(偶偶防毒軟體會問要不要允許連網)(可關閉) Task Scheduler Library(工作排程)(askschd.msc) > Microsoft > Windows > Device Information 停用即可 3. CompatRunner (同上)(回報使用訊息給MS) Task Scheduler Library > M...
dtchang
2023-10-17, 12:25
版面: 網路與網站知識
主題: 連接SSLVPN時使用cisco anyconnect會斷線(和Symantec相衝)
回覆: 0
觀看: 628

連接SSLVPN時使用cisco anyconnect會斷線(和Symantec相衝)

連接SSLVPN時使用cisco anyconnect會斷線是與Symantec Endpoint Protection 相衝之故. SSLVPN 主機為 sslvpn.chu.edu.tw, 為 Cisco 設備. 中華大學的VPN使用windows 7時的說明文件(2020/10/17)以建議使用 cisco anyconnect 並暫時關掉Symantec Endpoint Protection, 這會造成安全漏洞.不建議使用(請改連 chuvpn.chu.edu.tw). 而VPN使用windows 10時的yrcru ab 文件(2020/10/17)則建議使用 FortiClien...
dtchang
2022-12-11, 22:35
版面: Python
主題: 使用Notepad++快速在每一行前面加入 #
回覆: 0
觀看: 1074

使用Notepad++快速在每一行前面加入 #

1. 按 Ctrl+H 2. 尋找內容: ^ 3. 取代為: # 4. 搜尋模式: [v]規則運算式 5. 執行 [全部取代]即可 例如: #Function Main # ... h:身高(cm), w:體重(kg), bmi:BMI值 # Declare Integer h # Declare Integer w # Declare Real bmi # # Output "請輸入身高(cm)?" # Input h # Output "請輸入體重(kg)?" # Input w # Assign bmi = w/((h/100)^2) # Output "你的BMI值為:" & bmi ...
dtchang
2022-07-08, 15:43
版面: 網路與網站知識
主題: php mail() 的相關設定
回覆: 0
觀看: 1124

php mail() 的相關設定

1. 使用: fake sendmail for bugzilla/windows 安裝於: c:/wamp/sendmail 需設定 senmail.ini (含error log) 中華大學主機相關設定: 不使用ssl smtp_server=mail.chu.edu.tw ; smtp port (normally 25) smtp_port=25 ; SMTPS (SSL) support ; auto = use SSL for port 465, otherwise try to use TLS ; ssl = alway use SSL ; tls = always use TL...
dtchang
2022-07-08, 15:43
版面: 網路與網站知識
主題: php mail() 的相關設定
回覆: 0
觀看: 1037

php mail() 的相關設定

1. 使用: fake sendmail for bugzilla/windows 安裝於: c:/wamp/sendmail 需設定 senmail.ini (含error log) 中華大學主機相關設定: 不使用ssl smtp_server=mail.chu.edu.tw ; smtp port (normally 25) smtp_port=25 ; SMTPS (SSL) support ; auto = use SSL for port 465, otherwise try to use TLS ; ssl = alway use SSL ; tls = always use TL...
dtchang
2022-03-02, 17:56
版面: 網路與網站知識
主題: 來此加密 SSL 證書更新
回覆: 0
觀看: 1217

來此加密 SSL 證書更新

注意: 當憑證已過期時,可使用 firefox 以 http:// 測試. 1. 登入 https://letsencrypt.osfipin.com/ ; 選擇[登錄]. 如:使用者: dtchang0322@gmail.com 密碼:8-12碼 2. 點選右上角[我的證書]圖示; 重請申請新證書 (到期前 14天內才可申請; 過早不會有此功能挖鍵); 等待約1分鐘 3. 驗證,選取方式為: 手動驗證/下拉 http 4. 點擊下載驗證文件(立即下載),並上傳至網站根目錄下 .well_known/acme-challenge 下 (不可用自建的方式以免錯誤) 5. 上傳後點擊[點擊訪問]測...
dtchang
2022-01-18, 13:13
版面: 網路與網站知識
主題: jQueryMobile 無法正常顯示
回覆: 0
觀看: 1107

jQueryMobile 無法正常顯示

系統使用 iQueryMobile, 當使用 http://... 連線時正常運作.
但是使用 https://... 時無法正確套用外掛的 google api,
這是使用 google 要求使用安全連線之故,
即需使用

代碼: 選擇全部

https://ajax.googleapis.com//...

不可使用

代碼: 選擇全部

http://ajax.googleapis.com//...
dtchang
2022-01-05, 23:38
版面: 網路與網站知識
主題: apache 2.4 windows 版 mpm_winnt 設定
回覆: 0
觀看: 2576

apache 2.4 windows 版 mpm_winnt 設定

https://codertw.com/%E7%A8%8B%E5%BC%8F%E8%AA%9E%E8%A8%80/620817/ apache 2.4 lounge 較新版使用 mpm_winnt 模組 mpm_winnt.c是專門針對Windows NT優化的MPM(多路處理模組),它使用一個單獨的父程序產生一個單獨的子程序,在這個子程序中輪流產生多個執行緒來處理請求。也就是說mpm_winnt只能啟動父子兩個程序, 不能像Linux下那樣同時啟動多個程序。 參考設定: <IfModule mpm_winnt.c> ThreadsPerChild 250 MaxRequestsPerChi...
dtchang
2022-01-05, 23:30
版面: 網路與網站知識
主題: apache rotate log (windows) 設定
回覆: 0
觀看: 1660

apache rotate log (windows) 設定

按日將log分檔 (apache24通用) 其中一般的log/error 設定於 httpd.conf 中 而有關ssl 的log 則設定於extra/ httpd_ssl.conf 中 以下示範apache的安裝路徑為 D:/Apache2.2 #ErrorLog "logs/error.log" ErrorLog "|bin/rotatelogs.exe -l D:/Apache2.2/logs/error.%Y.%m.%d.log 86400" #CustomLog "logs/access.log" common CustomLog "|bin/rotatelogs.exe -l D:...
dtchang
2021-12-09, 23:08
版面: 網路與網站知識
主題: 使用 openssl 產生憑證
回覆: 0
觀看: 2500

使用 openssl 產生憑證

用openssl 產生各式檔案時,可以預先在 openssl.conf 設定好. 執行過程需要的資訊,其中: COMMON NAME 為網域名稱(FQDN),如: star.im.chu.edu.tw pass 為自設密碼 其餘為組織和機關的名稱和城市資料 step 1: 產生私用key (private key)(常用檔名: private.pem 或 server.key)(長度可用: 4096 或 2048; 以下的長度需一致) openssl genrsa -out server.key 4096 step 2: SHA256 產生需求 openssl req -new -sha256...