| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
- node.js
- Node.js 소스 설치
- mod_unique_id
- Node.js apache 연동
- epel repository
- vim color scheme
- httpd-mpm.conf
- httpd-default.conf
- CentOS 6.10
- httpd-info.conf
- httpd-dav.conf
- python 3.X 소스 설치
- PHP 5.2.17 .ini
- CentOS 6
- vimrc 옵션
- unique_id
- PHP 5.2 .ini
- Repository
- CentOS
- httpd-vhosts.conf
- gcc update
- Mod_Security 룰 셋
- MySQL
- httpd.conf
- MySQL 5.1.41
- python 3.5.10
- httpd 2.2.32
- httpd-autoindex.conf
- jQuery
- apache 연동
- Today
- Total
목록Web Development (21)
곰시기's
function get_pdf_prop( $file ) { $f = fopen($file,'rb'); if( !$f ) return false; //Read the last 16KB fseek( $f, -16384, SEEK_END ); $s = fread( $f, 16384 ); //Extract cross-reference table and trailer if( !preg_match( "/xref[\r\n]+(.*)trailer(.*)startxref/s", $s, $a ) ) return false; $xref = $a[1]; $trailer = $a[2]; //Extract Info object number if( !preg_match( '/Info ([0-9]+) /', $trailer, $a ..
Ajax는 기본적으로 UTF-8로 작동하는데 이 때 서버가 EUC-KR일경우 넘겨받는 데이터가 깨질 수 있다. 이럴 때 "contentType: 'application/x-www-form-urlencoded; charset=euc-kr'"을 추가 해주면 정상적으로 값을 받아올 수 있다. $.ajax({ type: "post", url : "", data: frmData, contentType: 'application/x-www-form-urlencoded; charset=euc-kr', dataType:"json", success : function( data ) { console.log( data ); }, error: function( jqXHR, textStatus, errorThrown ) { c..
#listViewBox.foldList{ height: calc( 100% - 82px ); min-height:unset; animation-name: foldList; -moz-animation-name: foldList; -webkit-animation-name: foldList; animation-duration: 2s; -moz-animation-duration: 2s; -webkit-animation-duration: 2s; animation-timing-function: ease; -moz-animation-timing-function: ease; -webkit-animation-timing-function: ease; animation-fill-mode: forwards; -moz-an..
function fncCreateSelectBox( $name = "", $selectedOpt = "", $data ) { $optCnt = count( $title ); $dataType = strtoupper( gettype( $data ) ); $rtn = ""; switch( $dataType ) { case "INTEGER" : case "DOUBLE" : $data = ( int )$data; for( $i = 0; $i < $data; $i++ ) { $selected = ""; if( $i == $selectedOpt ) { $selected = "selected='selected'"; } $rtn .= "{$i}"; } break; case "ARRAY" : foreach( $data ..