You cannot see this page without javascript.

Skip to content

Home

  1. No Image

    회원가입을 하면 user_name이 숫자로 나오는데요?

    /modules/member/member.controller.php 화일에서 // Insert data into the DB $args->list_order = -1 * $args->member_srl; $args->nick_name = htmlspecialchars($args->nick_name, ENT_COMPAT | ENT_HTML401, 'UTF-8', false); $args->homepage = htmlspec...
    Date2014.03.19 Views2836
    Read More
  2. No Image

    플래시 뒤로 로그인창 숨는 문제

    플레시를 메인 화면에 넣으면 로그인창이 뒤로 숨어 버리는데요 저도 고생하다가 저같은 분 계실지 몰라 글적여봅니다 object 태그에는 <param name="wmode" value="transparent"> embed 태그에는 <embed wmode="transparent" 이렇게 추가 해주시면 항상 최상...
    Date2013.11.25 Views3387
    Read More
  3. No Image

    특정 이메일 가입 않되게 (인증메일 관련)

    인증메일 때문에... 특정 사이트로는 인증메일이 않들어가지는 부분을 해결하고자 다음과 같이 수정 하였다 /modules/member/member.controller.php 이 화일을 열어서 case 'email_address' : // Check if duplicated $member_srl = $oMemberModel->getMemberS...
    Date2014.08.06 Views4766
    Read More
  4. No Image

    카카오 API 로그인 연동하여 토큰 받아오기

    https://www.xpressengine.com/index.php?mid=download&package_id=22753522 LginXE Server ver 1.02를 이용하여 하였다 해당 화일은 loginxeserver.view.php 이다 elseif($service=='github') { if(!isset($module_config->githubclientid) || $module_co...
    Date2015.02.14 Views1834
    Read More
  5. No Image

    카운터스킨에 총게시물수랑 댓글수 알아내기

    /widgets/counter_status/counter_status.class.php // 가입한 회원수 출력 $oMemberModel = &getModel('member'); $args->date = date("Ymd000000", time()-60*60*24); $today = date("Ymd"); $output = executeQueryArray("admin.getMemberStatu...
    Date2017.03.07 Views313
    Read More
  6. No Image

    인증메일이 발송 되지 않을때

    /classes/mail/Mail.class.php 에서 약 140번째 라인에 보면 function Mail() { } 여기 부분을 function Mail() { $this->useGmailAccount("구글아이디@gmail.com", "비밀번호"); // 이 한줄만 추가하면 됩니다. } 이렇게 추가하면 된다
    Date2015.01.13 Views489
    Read More
  7. 안드로이드 밴드 연동시키기

    //안드로이드 네이버 밴드 연동 예제입니다. 밴드는 따로 API를 제공하지 않아서 Intent 로 해줘야 되네요~ protected void go_band() { Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/plain"); intent.putExtra(Intent.EXTR...
    Date2014.03.26 Views4819
    Read More
  8. No Image

    신디케이션 ver 4.0을 사용시에 타이틀이 제대로 나오지 않을경우

    modules/syndication/syndication.model.php 여기 화일중에.. case 'site' : $site_info = new stdClass; $site_info->id = $this->getID('site'); $site_info->site_title = $this->handleLang($site_module_info->browser_title, $site_module_info->site_sr...
    Date2015.03.28 Views503
    Read More
  9. 밴드 보내기 팁

    http://www.xpressengine.com/download/20971314http://www.xpressengine.com/download/20971314 위 애드온을 약간 수정 하였습니다. addons/kakao_link/kakao_link.addon.php의 화일을 변경 하였다 <?php if(!defined("__ZBXE__")) exit(); if(Context::getRe...
    Date2014.04.04 Views51236
    Read More
  10. 다양한 카운터 위젯 그림및 소스 참조

    <?php /* Copyright (C) NAVER <http://www.navercorp.com> */ /** * @class counter_status * @author NAVER (developers@xpressengine.com) * @version 0.1 * @brief Display counter status by using data in the counter module */ class counter_status e...
    Date2015.01.07 Views291
    Read More
  11. No Image

    네이버 신디케이션 사용자 가이드 NAVER Syndication User Guide

    `` `` 2 저작권 Copyright © NAVER Corp. All Rights Reserved. 이 문서는 네이버(주)의 지적 재산이므로 어떠한 경우에도 네이버(주)의 공식적인 허가 없이 이 문서의 일부 또 는 전체를 복제, 전송, 배포하거나 변경하여 사용할 수 없습니다. 이 문서는 정보...
    Date2015.04.01 Views1736
    Read More
  12. No Image

    글쓰기&읽기 권한 없을때 로그인창으로 강제 이동법

    modules/board/board_view.php 파일에서 function alertMessage($message) //이 함수를 변경하면 된다. function alertMessage($message) { if($message=="msg_not_permitted") { // $message = '회원가입 후 이용해 주세요! 회원가입하시겠습니까? '; // 경고...
    Date2015.12.18 Views6264
    Read More
  13. No Image

    글쓰기 할때 자동으로 테그값을 글제목의 단어를 공간체크 하여 태그 입력되게

    function triggerArrangeTag(&$obj) // <-- 요부분 밑에 { // if(!$obj->tags) return new Object(); 이부분을 주석처리 if(!$obj->tags && $obj->title) // 타이틀(제목은 있는데 태그가 없으면) { $title_to_tag = str_replace(" ",",",$obj->t...
    Date2015.12.18 Views620
    Read More
  14. No Image

    게시물에 링크(Link) 있을때 새창으로 보여 주기

    jQuery(function(){ jQuery('.xe_content[class^=document_] a').attr('target', '_blank'); }); jQuery(function(){ jQuery('.xe_content[class^=comment_] a').attr('target', '_blank'); }); 위에 것을 modules/board/tpl/js/board.min.js 이 화일을 열어서...
    Date2015.04.16 Views512
    Read More
  15. No Image

    각종 API 적용(밴드,카카오톡,카카오스토리,마이피플)

    <?php if(!defined("__ZBXE__")) exit(); if(Context::getResponseMethod() == "XMLRPC" || Context::get('module') == "admin") return; if($called_position != "before_display_content") return; if($called_position == 'before_display_content' &&a...
    Date2014.11.26 Views23108
    Read More
  16. No Image

    [XE]Layouts 모듈이 Layout 을 파싱하는 시점에 전달해 주는 변수 및 데이터 덤프

    Array ( [buff] => file://./files/cache/template_compiled/99b4a68c4de6bdf7b15cc072553a8c7c.compiled.php [__Context] => stdClass Object ( [lang] => stdClass Object ( [msg_avail_install] => 이 항목 설치가 가능합니다. [msg_avail_update] => 이 ...
    Date2015.02.14 Views106247
    Read More
  17. No Image

    XE에서 태그값이 없으면 제목의 공간을 이용해 자동 태그값 넣기

    /modules/tag/tag.controller.php 중에서 function triggerArrangeTag(&$obj) { // if(!$obj->tags) return new Object(); 2015-02-10(화)_myceo 이부분을 주석처리 if(! $obj->tags && $obj->title) { $title = str_replace(" ",",",$obj->title...
    Date2015.02.11 Views440
    Read More
  18. No Image

    XE보드 회원가입시 가입 아이피 기록하기

    modules/member/member.controller.php 열기 // Insert data into the DB 찾기 // Insert data into the DB $args->list_order = -1 * $args->member_srl; $args->nick_name = htmlspecialchars($args->nick_name, ENT_COMPAT | ENT_HTML401, 'UTF-8', false);...
    Date2014.07.23 Views2333
    Read More
  19. XE 를 루트로 옮기는 방법과 문제 대응책 정리

    I. 서설 XE는 기본적으로 1.1.5 버전인가부터 이전에 사용하던 zbxe 폴더 대신 xe 폴더를 기본 폴더로 하여 설치하도록 되어 있습니다. 그런데, 많은 분들이 http://도메인/xe 의 모습이 거추장스럽다거나 그 외 여러가지 이유로 루트로 설치하고싶어 합니다. ...
    Date2013.07.11 Views6534
    Read More
  20. No Image

    xe files 삭제 않될때..

    <?php $dir="./files/"; function delete_dir($path) { @chmod($path,0777); $directory = dir($path); while($entry = $directory->read()) { if ($entry != "." && $entry != "..") { if (is_dir($path."/".$entry)) { delete_dir($path."/".$entry)...
    Date2014.03.21 Views2732
    Read More
Board Pagination Prev 1 2 Next
/ 2

전체 방문자 : 1,172,374 오늘 : 57 어제 : 222 문서 : 0 댓글 : 0
전체회원 : 0 엮인글 : 0 첨부파일 : 0 전체 페이지뷰 : 11,375,712 오늘 페이지뷰 : 242 어제 페이지뷰 : 1,258
Copyright by Myceo 2008 All rights reserved
수원시 팔달구 인계동 1017-3 2층
☏1600-0324

Made By Myceo

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소