發表文章

目前顯示的是 6月, 2018的文章

IIS remote server management

Windows 7 原生個IIS要裝呢個:  https://www.iis.net/downloads/microsoft/iis-manager 參考:  http://registerboy.pixnet.net/blog/post/31620284-iis-%E9%81%A0%E7%A8%8B%E7%AE%A1%E7%90%86 記得開server port, 改完setting 除左要enable仲要start~~~

Fix jquery dialog content size issue when resize

https://stackoverflow.com/questions/31584544/jquery-ui-dialog-on-resizing-shrinks-the-content-of-the-dialog Fix: resize : function () { var heightPadding = parseInt ( $ ( this ). css ( 'padding-top' ), 10 ) + parseInt ( $ ( this ). css ( 'padding-bottom' ), 10 ), widthPadding = parseInt ( $ ( this ). css ( 'padding-left' ), 10 ) + parseInt ( $ ( this ). css ( 'padding-right' ), 10 ), titlebarMargin = parseInt ( $ ( this ). prev ( '.ui-dialog-titlebar' ). css ( 'margin-bottom' ), 10 ); $ ( this ). height ( $ ( this ). parent (). height () - $ ( this ). prev ( '.ui-dialog-titlebar' ). outerHeight ( true ) - heightPadding - titlebarMargin ); $ ( this ). width ( $ ( this ). prev ( '.ui-dialog-titlebar' ). outerWidth ( true ) - widthPadding ); },

IIS virtual folder settings

1. Site-> Explore -> web.config <?xml version="1.0" encoding="UTF-8"?> <configuration>     <system.webServer>         <directoryBrowse enabled="true" />  <staticContent>       <mimeMap fileExtension="*" mimeType="text/plain" />     </staticContent>     </system.webServer> </configuration> https://stackoverflow.com/questions/4388066/the-page-you-are-requesting-cannot-be-served-because-of-the-extension-configura Client 出404有機會係permission/ mime type問題, 去返local 用localhost先會見到個error message..