11.Nas_1


아미나 스킨 림스모바일 에 적용하기



  • 첨부

  • 컨텐츠 정보

    • 15,219 조회
    • 2 댓글
    • 0 추천
    • 목록

    본문

    1) 림스 모바일을  설치 기본 설정 동작 확인 한다
    - config,php에 하나의 게시판 추가 하여 정상 동작 확인
       림스 모바일 2.4.2 다운로드
       http://www.rimsoft.co.kr/bbs/board.php?bo_table=builder&wr_id=40
    - 최신 업데이트를 하여 수정 한다.......

    2) 아미나빌더의 gnuboard\extend와  m폴더를 림스 모바일 설치 폴더에 카피한다
      [1.5.1] 아미나 스킨 풀버전 다운로드
    http://amina.co.kr/bbs/board.php?bo_table=gnu_down&wr_id=45

    3) 아미나 림스 모바일 스킨을 받아 카피한다
     
    \r\n
    \r\n
    림스 모바일 빌더(2.4.2)용 레이아웃 다운로드
    http://amina.co.kr/bbs/board.php?bo_table=gnu_skin&wr_id=178

    5) 아래와 같이 
    \r\n
    \r\n
    림스 모바일에서 amina \r\n스킨을 기본으로 적용하기 변경 한다
    \r\n
    림스 모바일 빌더 2.4.2 용 레이아웃으로 설치시 모바일 페이지가 위 이미지와 같이 구성됩니다.
    \r\n
     
    \r\n
    1. 설치 방법 : 압축을 푼후 림스 모바일이 설치될 곳(/m)에 덮어 씌워 주면 됩니다.(head.php, index.php, tail.php 파일을 덮어씁니다.)
    \r\n
     
    \r\n
    2. 적용방법 : index.php, menu.php, new.php 파일을 열어 자신이 원하는 형태로 수정해 주세요.
    \r\n
     
    \r\n
    - index.php : m_latest, m_menu 함수를 사용하여 최근글과 메뉴를 설정해 줄 수 있습니다.
    \r\n
    - menu.php : m_menu 함수를 사용하여 메뉴를 구성할 수 있습니다.
    \r\n
    - new.php : $bo_exclude 에서 제외하고자 하는 게시판을 설정할 수 있습니다.
    \r\n

    http://amina.co.kr/bbs/board.php?bo_table=gnu&wr_id=126
    AD 한별아빠 \r\n
    \r\n
    \r\n
    \r\n
    림스 모바일을 사용하면서 모바일 테마를 적용하면 사실 config.php에서 설정하는 각 설정값은 크게 의미가 없습니다. 아니 오히려 \r\n일일이 게시판과 스킨 등을 지정해 주려면 귀찮기만 하죠. 따라서 림스 모바일의 config.php 설정과 상관없이 항상 amina 스킨이 \r\n적용되도록 하려면 /m 폴더 내에 있는 list.php, view.php, write.php 파일에서 기본 스킨이름을 amina로 해 주시면 \r\n됩니다.
    \r\n
    \r\n
    : /m/list.php
    \r\n
    \r\n
    if(!$type) $type="amina";//목록 타입이 안넘어오면 일반 목록형으로
    \r\n
    //해당 타입이 존재해야만 정상 \r\n인클루드시킴
    if(file_exists($g4[m_path]."/skin/list.skin.$type.php")) include \r\n$g4[m_path]."/skin/list.skin.$type.php";
    else include \r\n$g4[m_path]."/skin/list.skin.amina.php";
    \r\n
    \r\n
    \r\n
    : /m/view.php
    \r\n
    \r\n
    if(!$view_type) $view_type="amina";//목록 타입이 안넘어오면 \r\n일반형으로
    if(!$list_type) $list_type="amina";//목록 타입이 안넘어오면 일반형으로
    \r\n
    //해당 타입이 존재해야만 정상 \r\n인클루드시킴
    if(file_exists($g4[m_path]."/skin/view.skin.{$view_type}.php")) \r\ninclude $g4[m_path]."/skin/view.skin.{$view_type}.php";
    else include \r\n$g4[m_path]."/skin/view.skin.amina.php";
    \r\n
    if(file_exists($g4[m_path]."/skin/list.skin.{$list_type}.php")) include \r\n$g4[m_path]."/skin/list.skin.{$list_type}.php";
    else include \r\n$g4[m_path]."/skin/list.skin.amina.php";
    \r\n
    \r\n
    \r\n
    : /m/write.php
    \r\n
    \r\n
    if(!$type) $type="amina";//타입이 안넘어오면 일반형으로
    \r\n
    //해당 타입이 존재해야만 정상 \r\n인클루드시킴
    if(file_exists($g4[m_path]."/skin/write.skin.$type.php")) include \r\n$g4[m_path]."/skin/write.skin.$type.php";
    else include \r\n$g4[m_path]."/skin/write.skin.amina.php";
    \r\n
    \r\n
    그리고 마지막으로 config.php 파일에서 각 설정값은 그냥 하나만 주세요.
    \r\n
    \r\n
    $g4[bo_arr]=$bo_arr=array("test"=>"테스트");
    \r\n
    $g4[list_skin_arr]=$bo_skin_arr=array("amina");
    $g4[view_skin_arr]=array("amina");
    $g4[write_skin_arr]=array("amina");
    \r\n
    \r\n
    이렇게 해 주시면 림스 모바일의 config.php의 설정과 상관없이 항상 amina 스킨이 기본으로 \r\n적용됩니다.

    Shims HomePage
    \r\n

    \r\n

    [https://11q.kr 홈피]
    .
    \n\n[이 게시물은 관리자님에 의해 2013-06-10 09:14:03 12.H_PDS에서 이동 됨]\n
    [이 게시물은 관리자님에 의해 2013-11-18 21:29:50 11.H_BBS에서 이동 됨]
    뷰PDF add1,add2



    관련자료

    댓글 2

    11q.kr관리자님의 댓글

    <div>아미나 모바일 스킨 적용방법 확인</div>\r\n<div><font size="3">list.php, view.php, write.php 파일에서&nbsp; </font></div>\r\n<div class="autosourcing-stub">\r\n<div style="padding-bottom: 0px; margin: 11px 0px 7px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><a href="https://11q.kr/mw/bbs/board.php?bo_table=z1_02&wr_id=285" target="_blank"><font color="#466c8a">[출처] Shims Home[https://11q.kr 홈피] - https://11q.kr/mw/bbs/board.php?bo_table=z1_02&amp;wr_id=285</font></a> </div></div>


    전체 1,749 / 14 페이지
    전체 1,749 / 14 페이지



    ♥간단_메모글♥


    최근글


    새댓글



    PHP 안에 HTML ☞ 홈페이지 화면갱신 시간은 ♨
    ▶ 2024-05-17 18:11:11

    오늘의 홈 현황


    • 현재 접속자♨ 90 명
    • 오늘 가입자※ 1 명
    • 어제 가입자※ 6 명
    • 주간 가입자※ 11 명
    • 오늘 방문자 1,238 명
    • 어제 방문자 2,015 명
    • 최대 방문자 13,042 명
    • 전체 방문자 4,327,583 명
    • 전체 게시물※ 8,573 개
    • 전체 댓글수※ 24,619 개
    • 전체 회원수 10,971 명

    QR코드


    ☞ QR코드 스캔은 kakao앱 자체 QR코드

    알림 0








    최신글↑