Pages

2016年11月20日 星期日


Apache的Order Allow Deny心得

轉自 http://www.fwolf.com/blog/post/191

今天又被這兩個參數小小的耍了一把,痛下決心整理一下,免得再被耽誤時間。

Allow和Deny可以用於apache的conf檔或者.htaccess檔中(配合Directory, Location, Files等),用來控制目錄和檔的訪問授權。

所以,最常用的是:
      Order Deny,Allow
      Allow from All

注意“Deny,Allow”中間只有一個逗號,也只能有一個逗號,有空格都會出錯;單詞的大小寫不限。上面設定的含義是先設定“先檢查禁止設定,沒有禁止的全部允許”,而第二句沒有Deny,也就是沒有禁止訪問的設定,直接就是允許所有訪問了。這個主要是用來確保或者覆蓋上級目錄的設置,開放所有內容的訪問權。

2016年8月7日 星期日


CSS3 transition 屬性的(transition-timing-function速度曲線)

CSS3 transition 屬性的(transition-timing-function速度曲線)

本篇主要介紹transition屬性中的cubic-bezier速度曲線

2016年6月23日 星期四


win mysql cmd 匯出入 table

匯出一個表
#mysqldump -u 使用者名 -p 資料庫名 表名> 匯出的檔案名


建立資料庫名為test
#CREATE DATABASE test;
成功的話會出現:Query OK, 0 rows affected (0.00sec)

使用test資料庫(轉換資料庫為特定的資料庫)
#USE test;
成功的話會出現:Database changed

將本機c槽內的test.sql匯入(要完整path)
#SOURCE c:\test.sql;
成功的話會出現:
Query OK, 0 rows affected (0.00sec)
Query OK, 0 rows affected (0.00sec)


2016年4月28日 星期四


textarea 渲染HTML tag

<script>
function submit_test(){
$('#editable').val($('#editable_div').html());
}
function submit_test2(){
$('#editable_div').html($('#editable').val());
}
</script>

<style>
.editable, .editable_div { width:600px; }
.editable { height:100px; }
.editable_div {
    height: 200px;
    border: 1px solid #ccc;
    padding: 10px;
    margin : 0 0 15px 0;
    background: #cccccc;
    box-shadow: 10px 10px 5px #888888;
}
</style>

<textarea id="editable"  class="editable" ></textarea><br/>
<div id="editable_div" class="editable_div" contenteditable="true">
  <img src="http://127.0.0.1/Docs/Images/utf-8/style1/logo02.png"><br/>
  contenteditable 属性规定元素内容是否可编辑。
</div>
<a class="btn" href="#" onclick="document.execCommand('bold');">bolt</a>
<a class="btn" href="#" onclick="document.execCommand('italic');">italic</a>
<a class="btn" href="#" onclick="document.execCommand('underline');">underline</a>
<a class="btn" href="#" onclick="submit_test();">submit</a>
<a class="btn" href="#" onclick="submit_test2();">submit2</a>