_read.html 114번째줄의 바로 밑 줄에 아래를 추가해 줍니다 {@ $has_voted = false; $valname = array('사용자 정의 이름1','사용자 정의 이름2','사용자 정의 이름3','사용자 정의 이름4');} {@ $has_voted = true;...
팁/튜토리얼 팁
시리즈 연재 환영합니다.^^
내용 원문 참조 https://xe1.xpressengine.com/index.php?mid=forum&search_target=title_content&search_keyword=만우절&document_srl=22664106
15.08.13
0
조회 3425
modules/member/member.controller.php 에서 function updateMember 함수내부에 list($args->email_id, $args->email_host) = explode('@', $args->email_address); 부분 위에다가 추가해주세요 if($logged_info->is_...
15.08.13
1
조회 1056
XE를 개인서버로 운영하거나 호스팅을 이용해 운영할 경우 메일이 각 메일사이트마다 차단되는 경우가 있다.. 이럴때 사용하면 거의 모든 사이트에 인증메일등이 보내지는 팁입니다. xe/classes/mail/Mail.class.php ...
15.08.13
0
조회 3317
/** * @brief the method for displaying the warning messages * display an error message if it has not a special design function alertMessage($message) { $script = sprintf('<script> jQuery(function(){ al...
15.08.13
0
조회 2138
XE. 계정(호스팅)이전시에 해야 할 것 정리 1. Data (FTP) files/config/db.config.php db.config.php 내용을 수정합니다. * 만약에 이미지 파일 무단링크 방지등의 이유로 htaccess에 자신의 도메인이 있을 경우 수...
15.08.13
1
조회 4493
목차 Trigger 동작 원리 Trigger DB Trigger를 이용하기 위해 사용하는 함수 함수기능 설명 Trigger 등록해보기 2편 마무리 Trigger 동작 원리 그림1) 그림1)은 Trigger의 동작원리를 나타냅니다. insertDocument에서...
15.08.11
6
조회 1204
들어가기전에 이번에 설명하게될 Trigger(트리거)라는 기능은 XE의 모듈제작 중에서도 상당히 활용도가 높고 다루기 어려운 기능 중 하나 입니다. 본 설명은 이 Trigger를 적극 활용하고 다룰 수 있도록 사용방법을 ...
15.08.10
6
조회 1781
로컬에서 이미지를 복사해서 XE 위지윅 게시판에 붙여넣기하면 base64로 인코딩되어 이미지가 코드로 출력됩니다. 정상적으로 저장은 되나, 수정시 이미지 경로에 'http://도메인'이 붙여 이미지가 제대로 보이지 않...
15.08.08
0
조회 3622
정의 위치 ./classes/context/Context.class.php 정의 내용 /** * Convert strings into UTF-8 * * @param string $str String to convert * @return string converted string */ function convertEncodingStr($str) ...
15.08.07
0
조회 985
15.08.06
0
조회 989
정의 위치 ./classes/context/Context.class.php 정의 내용 /** * Get one more vars in object vars with given arguments(key1, key2, key3,...) * * @return object */ function gets() { $num_args = func_num_ar...
15.08.05
0
조회 964
정의 위치 ./classes/context/Context.class.php 정의 내용 /** * Return key's value * * @param string $key Key * @return string Key */ function get($key) { is_a($this, 'Context') ? $self = $this : $self =...
15.08.05
0
조회 3631
이 스크립트는 보통 롤링 배너 스크립트, 또는 슬라이드 소스라고 합니다. 일반적으로 한 항목만 보여지게 되고 이전, 다음 버튼을 이용해서 다음 항목을 보여주게 동작하는데 이 소스는 일정한 갯수만큼 보여준 뒤 ...
15.08.04
0
조회 3661
http://codepen.io/eond/pen/XboxoZ slidetimer(); var current=0; var $interval; function slidetimer(){ var $interval=setInterval(function(){slide()},3000); } function slide(){ $("ul").animate({left:"-=10...
15.08.03
2
조회 6963
http://codepen.io/eond/pen/jPXeBW // moveType (0:left / 1:right) var moveType = 0; // 이동시간간격 3초 var moveSpeed = 3000; // 움직이는 작업중 다시 명령 받지 않음 var moveWork = false; // 일시정지 fla...
15.08.03
0
조회 3491
정의 위치 ./classes/context/Context.class.php 정의 내용 /** * Set a context value with a key * * @param string $key Key * @param string $val Value * @param mixed $set_to_get_vars If not FALSE, Set to g...
15.08.03
0
조회 3267
var content = document.getElementById('content').innerHTML; // html 안에 'content'라는 아이디를 content 라는 변수로 정의한다. var splitedArray = content.split(' '); // 공백을 기준으로 문자열을 자른다. ...
15.08.03
0
조회 8962
15.08.03
0
조회 2955
15.08.03
0
조회 3157