관리자 페이지로 들어가셔서 모듈들의 업데이트를 해주세요. (특히 위젯 모듈)

( http://홈페이지주소/?module=admin )

혹여나 그래도 안된다면 files/cache폴더를 다른 이름으로 잠시 바꾼 다음

제대로 작동하는 것을 확인하시고, 홈페이지의 모든 기능이 정상적으로 작동한다면 새로 생긴 cache폴더는 그대로 두고

임시로 이름을 바꾼 cache폴더는 삭제하셔도 됩니다.


Posted by Parker Falcon
jQuery를 이용했습니다.

응용하면 없이도 가능합니다.


키포인트는,

  Opener의 문서
Option 객체 생성
Opener에 객체 생성
 IE  window.opener.document  document.createElement('option')  window.opener.document.createElement('option')
 Non-IE  opener.document  new Option
 new Option(?)



function registerComponentToKiosk() {
    var resultList = document.getElementById('componentSelect');
    var moduleName = document.getElementById('module_name').value;

    var result_srl = resultList.value;
    var resultText = resultList.options[resultList.selectedIndex].text;

   
   
    try { // IE 왕따
        var targetList = $('#kiosk_component_list', window.opener.document)[0];
        for (var i = 0; i < targetList.length; i++) {
            if (targetList.options[i].value == result_srl) {
                alert ('같은 부품이 있습니다.');
                return false;
            }
        }
        var targetObj = window.opener.document.createElement('option');
        targetObj.text = moduleName + ' - ' + resultText;
        targetObj.value = result_srl;
        targetList.add (targetObj);
    } catch (ex) { // 기타 다른 브라우져
        var targetList = $('#kiosk_component_list', opener.document);
        if ($('#kiosk_component_list > option[value=' + result_srl + ']').length > 0) {
            alert ('같은 부품이 있습니다.');
            return false;
        }
        targetList.addOption(result_srl, moduleName + ' - ' + resultText );
    }
    window.close();
}
Posted by Parker Falcon
$('#your_object_id', window.opener.document)
그리고 jQuery가 객체들을 배열로 가져오는걸 이제알았다(..)
Posted by Parker Falcon
욕은 참고,

이 천진난만한 Windows Internet Exploer 7 께서 아무리 해도 :hover 기능을 사용하지 않으신다.

내가 뭘 잘못 한것일까

고민하고 고민하고 또 고민한 결과

해답은 어이없었다.

http://www.bernzilla.com/item.php?id=762

이거 한줄 넣으면 된다.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
아이구 잘한다. 싸우자.

내 시간 돌려줘 ㅠㅠ


Posted by Parker Falcon

한 30분 터미널 보니 나오더군요 엉엉...

원인이 여러가지 있으니 안되는 경우도 있을겁니다.

아무튼 간단한 설명

1.
zbxe/modules/module/query/getDefaultMidInfo.xml에서

#9         <condition operation="equal" column="site_srl" var="site_srl" default="0" notnull="notnull" />

이 줄을 없에시고

2.
도메인/?module=admin 으로 들어가셔서

로그인 후 첫화면(또는 모듈 관리화면)에서

modue 모듈을 설치 / 업데이트 하시고

3.
zbxe/modules/module/query/getDefaultMidInfo.xml에서

#9         <condition operation="equal" column="site_srl" var="site_srl" default="0" notnull="notnull" />

이거 다시 붙여넣으시고

4. 관리자 페이지에서 캐쉬 파일 업데이트 하세요



원인은

1.1.0인가에서에서 가상 사이트 생기면서

모듈에 site_srl 컬럼이 생기지 않았는데 해당 쿼리만 업데이트되어서 제대로 기본 모듈을 못가져오는 문제였습니다.


다른 문제 있으면 블로그로 놀러오세요 ~_~//


추가 : 2009. 04. 10. 13:34 >

http://www.xpressengine.com/index.php?path=%2F&mid=xe_issuetracker&act=dispIssuetrackerViewSource&type=compare&erev=6076&brev=6075


r6076에서 수정되었네요. 감사합니다 :)

Posted by Parker Falcon
06 - 魂 :Map The Soul (2009)/[EpikHigh 6집] 01.Believe
06 - 魂 :Map The Soul (2009)/[EpikHigh 6집] 02.Cipher (Feat. Beatbox DG)
06 - 魂 :Map The Soul (2009)/[EpikHigh 6집] 03.Map The Soul (Feat. MYK)
06 - 魂 :Map The Soul (2009)/[EpikHigh 6집] 04.Customer Service (Skit)
06 - 魂 :Map The Soul (2009)/[EpikHigh 6집] 05.Top Gun
06 - 魂 :Map The Soul (2009)/[EpikHigh 6집] 06.Scenario (피해망상 Pt. 2) (Feat. MYK)
06 - 魂 :Map The Soul (2009)/[EpikHigh 6집] 07.London
06 - 魂 :Map The Soul (2009)/[EpikHigh 6집] 08.Free Music (Tablo And MYK)
06 - 魂 :Map The Soul (2009)/[EpikHigh 6집] 09.Map The Soul (Worldwide Ver.) (Tablo, MYK & Kero One)
06 - 魂 :Map The Soul (2009)/[EpikHigh 6집] 10.8 By 8, Part 2 (Bonus Track) (Feat. MYK, Minos, Paloalto, The Quiett, Verbal Jint, Kebee, E-Sens, Simon Dominic)
Posted by Parker Falcon
http://local.daum.net/map/index.jsp#
Posted by Parker Falcon
희망은 물건너갔습니다.

Posted by Parker Falcon
자신이 설치한 리눅스가 RedHat 계열 (RedHat, Fedora, CentOS등등) 인지 확인해보시고,

만약 그렇다면 


    # sed -e 's/FOO/lighttpd/g' doc/rc.lighttpd > lighttpd.init

이 작업을

    # sed -e 's/FOO/lighttpd/g' doc/rc.lighttpd.redhat > lighttpd.init

으로 하시면 됩니다.

이후에 다른 작업은 그대로 :)
Posted by Parker Falcon
사용자 삽입 이미지

iPod Touch에 Monopoly게임
감옥에 갇혀서 다른 플레이어들을 파산 시키는 장면을 보고 있으니 웬이 웃음이 나온다.
Posted by Parker Falcon