PHP 에서 imagepng 사용해서 이미지 합성하는 방법. imagecolorallocatealpha = 이미지 배경색상 지정 + alpha 값 지정 // 모자 리사이징 이미지의 배경색 지정후 채워주기 $moja_resize_bg = imagecolorallocatealpha($moja_resize, 0, 0, 0, 127); imagefill($moja_resize, 0, 0, $moja_resize_bg); ##################################################################################################################### // 저장할 이미지의 사이즈 영역 생성 (220 x 260) $save_user_im..
CKEditor & CKFinder 를 PHP 에서 설치시 CKEditor 파일 및 CKFinder 에 설정파일들을 각각 수정해 주어야 한다. 우선적으로 CKEditor 에서 config.js 파일 을 아래와 같이 수정한다. CKEDITOR.editorConfig = function( config ) { config.filebrowserBrowseUrl = '/ckfinder/ckfinder.html', config.filebrowserImageBrowseUrl = '/ckfinder/ckfinder.html?type=Images', config.filebrowserFlashBrowseUrl = '/ckfinder/ckfinder.html?type=Flash', config.filebrowserUploa..
오라클 홈페이지에서 10204_vista_w2k8_x64_production_db.ZIP 파일을 다운받은 다음 압축을 풀고 아래의 database.rar 파일을 압축풀기하여 추가로 덮어쓰기 함. ( or 아래와 같이 호환모드에 체크 하여 호환할 프로그램을 설정 후 설치도 가능. ) 이후 정상적 설치가 되면, 내부 DBMS 로는 위와 같은 문제가 발생하며, OCI 접속이 안됨. 이유인 즉슨 32비트 체재에서 설치된 오라클의 경우는 문제가 없지만, 64비트 체제에서 설치된 오라클의 경우 DBMS 에서 지원하지 않아서 발생하는 문제로, 해경방법은 32비트 체제로 설치된 오라클 및 DBMS 가 있는 폴더에서 NS 설정후 OCI 로 접속하면 됨. ( or 32비트 오라클 폴더의 BIN 폴더 파일을 사용하면 됨 )..
Hex Code Entity Code Number Code Character Description " " " Quotation Mark & & & Ampersand ⁄ / / Slash < < Greater Than Sign ‚ ‚ ? Single Low-9 Quote „ „ ? Double Low-9 Quote † † † † Dagger ‡ ‡ ‡ Double Dagger ‰ ‰ ‰ Per Mill Sign ‹ ‹ ? Single Left Angle Quote ‘ ‘ ‘ Left Single Quote ’ ’ ’ Right Single Quote “ “ “ Left Double Quote ” ” ” Right Do..
Function Check_sql(str) Dim result_str SQL_Val = str SQL_Val = Replace(SQL_Val, ";", " ") SQL_Val = Replace(SQL_Val, "@variable", " ") SQL_Val = Replace(SQL_Val, "@@variable", " ") SQL_Val = Replace(SQL_Val, "+", " ") SQL_Val = Replace(SQL_Val, "print", " ") SQL_Val = Replace(SQL_Val, "set", " ") SQL_Val = Replace(SQL_Val, "%", " ") SQL_Val = Replace(SQL_Val, "", " ") SQL_Val = Replace(SQL_Val, ..
1번 방법 $mysql_last_query = ""; //this var contains the last mysql query function query($sql, $args) { #sintax: query("query", "arg1", "arg2", "argn"); EXAMPLE: query("select * from %s", $_GET["table"]); global $mysql_last_query; $args = func_get_args(); if(($num = func_num_args()) > 1) $sql = call_user_func_array("sprintf", $args); $mysql_last_query = $sql; return mysql_query($sql); } function se..
Javascript trim In programming, trim is a string manipulation function or algorithm. The most popular variants of the trim function strip only the beginning or end of the string. Typically named ltrim and rtrim respectively. This Javascript code trim implementation removes all leading and trailing occurrences of a set of characters specified. If no characters are specified it will trim whitespac..
AJAX file upload Ever wanted to upload files using AJAX like in GMAIL, without reloading the page? Now you can. Cross browser method to upload files using AJAX in only 1Kb of code. You need to create a form with file fields you wish to upload and define “onsubmit” event. Look at the example below how to do that. Tested in IE5.5+, FF1.0+, OP 8.0+ DEMOSource code for index.html Name: File: # of su..
strPhone = "123-456-789" Dim result, acnt // 초기 정의 및 초기화 ReDim strPhone_num(3) // 배열정의 및 초기화 result = Split(strPhone,"-") // 특정구분자 ('-') 로 자르기 acnt = UBound(result) // 총 배열수 확인 For i=0 To acnt Step 1 // FOR 문 (0부터 배열수까지) strPhone_num(i) = result(i) // 배열저장 Next // 다음
1, SELINUX 설정시. -> 보안 강화로 인하여 접근권한 미 설정시 SELINUX 에서 차단을 하기에 /etc/selinux/config 파일에서 DISABLE 처리를 하여 아예 사용을 안하거나. -> chcon -R -h -t httpd_sys_content_t /home/dev/www 식으로 권한을 주면, 된다. Shell에서 'ls -Z'를 해 보면 아래와 같이 파일이나 디렉터리의 보안 환경을환경을 볼 수 있다. # ls -Z /home/... drwx--x--x abcd abcd user_u:object_r:user_home_dir_t abcd drwx--x--x efgh efgh user_u:object_r:httpd_sys_content_t efgh 보안 환경에서 세번째 요소가 중요한 부..
- Total
- Today
- Yesterday
- Entity Code
- 1차원 배열저장
- CKEditor
- 정규식
- selinux
- 파일명 공백
- HTTPD
- 엔티티 코드표
- php
- CKFinder
- resttemplate
- postForObject
- iis 파일 다운로드 공백
- 구분자 자르기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |