2019年11月27日 星期三

[筆記]win10 透過 usb 連iphone 無法出現裝置。


  • 參考:https://www.techmarks.com/ios-usb-driver/
  • 裝置管理員>通用序列匯流排控制器
    找 Apple相關的裝置。移除並重新偵測即可。
  • 可能原因,可能第三方軟體或是驅動衝突。

2019年11月5日 星期二

[筆記]IIS500

近端:伺服器上
  • 控制台 > 網際網路選項 > 進階 > 顯示易懂的 HTTP 錯誤訊息 > 打勾取消
  • IIS7 > 站台 > ASP > 偵錯內容 > 將錯誤傳送到瀏覽器 > true


2019年10月23日 星期三

[筆記]安裝MySQL,IIS發生MySqlProvider衝突。

C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config
其中
<sitemap><provider>…..</provider></sitemap>
加入了MySql相關的provider設定。

移除相關MySQL設定即可。

2019年9月18日 星期三

[筆記]Tab鍵件突然無效

參考網址:

https://www.drivereasy.com/knowledge/solved-tab-key-not-working-in-windows/

提供解法:

  1. Restart your computer
  2. Update keyboard driver
  3. Try keyboard combinations
  4. Shut down TeamViewer

原因:果然是TeamViewer開啟所導致。

2019年8月15日 星期四

[筆記]被Yahoo退件

https://help.yahoo.com/kb/postmaster/SLN7253.html


Error: "554 5.7.9: Message not accepted for policy reasons" when sending email to Yahoo

If your emails aren't being received by Yahoo accounts, it's a good idea to review our Yahoo Mail deliverability FAQ to make sure you're following industry standards for bulk email senders.

Why you're seeing this error

Your message wasn't delivered because Yahoo was unable to verify that it came from a legitimate email sender.

Your email failed one or more authentication checks that Yahoo uses to verify emails are truly sent from the domains they claim to originate from.

Follow industry standards

2019年6月24日 星期一

[筆記]手機瀏覽器Debug工具 vConsole

使用方式:

<script src="https://cdn.jsdelivr.net/npm/vconsole@3.2.0/dist/vconsole.min.js"></script>

<script>

var vConsole = new VConsole();

</script>

2019年6月9日 星期日

[筆記]MVC路由傳遞空字串參數

參考網址:
https://stackoverflow.com/questions/17702203/mvc-html-actionlink-removes-empty-querystring-parameter-from-url


@Html.ActionLink("Action",
                 "Controller",
                  new { item1 = new EmptyParameter(), item2 = "value" });

public class EmptyParameter
{
    public override string ToString()
    {
        return String.Empty;
    }
}

2019年3月3日 星期日

[筆記]SSMS出現載入套件錯誤

問題:
未正確載入套件 "microsoft.visualstudio.shell.connected.packages.onlinelicensing.onlinelicensingmanagerpackage"

c:\users\kyle\appdata\roaming\microsoft\appenv\14.0\activitylog.xml

https://dotblogs.com.tw/dislin/2013/03/19/98198

原因:Visual Studio 2015過期,移除軟體就正常了。



2019年2月26日 星期二

[筆記]建立自解壓縮檔(.EXE)

1.選擇要壓縮的檔案

2.選擇自解壓格式壓縮文件

3.切換[高級],[自解壓選項]









4.設定解壓路徑
%systemroot%\SystemLead




5.確定後產生檔案

[測試]Open Live Writer發文至blogger

2019年因應google+下架,圖片上傳(API)功能2019-01目前是有問題的。

所以目前上傳貼文如果有圖片會發生400錯誤。

--

本文測試Open Live Writer發文至blogger,不傳圖片。

單純傳送文字。

2019年1月10日 星期四

[Note][SSMS]編輯器預設全形符號

問題:

  • 本篇寫在2019/01/10。
  • 發生編寫執行預存時,半形常常會被換成全型。
  • 環境:中文版,所以執行預存後他會自動切換到中文全形。(不勝其擾)
  • 希望SSMS能夠在後面的更新解決。

參考:

筆記:

剛裝好的SSMS輸入英數字都會變成全形。

在網路上找到的解法,將語言換成與Microsoft Windows相同。

image


  • 簡單的說:就是要寫預存的時候,切到ENG鍵盤。 
  • 另外一種方式:就是使用英文介面
    執行時自然就是英文模式。


2019年1月7日 星期一

[筆記][PHP]跨網域存取header設定

參考網址:
https://blog.toright.com/posts/3205/實作-cross-origin-resource-sharing-cros-解決-ajax-發送跨網域存取-request.html

<?php

// Cross-Origin Resource Sharing Header

header('Access-Control-Allow-Origin: *');

header('Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS');

header('Access-Control-Allow-Headers: X-Requested-With, Content-Type, Accept');

?>


其它:
header('content-type: application/json; charset=utf-8');