• SEARCH

    통합검색
  • GAMEZONE
    • 커뮤니티
      • 공지사항
      • 유저게시판
        • 등업게시판
        • 출석체크
        • 정회원 무료자료실
      • 스크린샷
      • 인증자료실
    • 리니지
      • 게임공략 & 팁
      • 홍보게시판
      • 유틸자료실
      • 소스자료실
      • 자유게시판
      • 노하우 게시판
    • 메이플스토리
      • 게임공략 & 팁
      • 홍보게시판
      • 유틸자료실
      • 소스자료실
      • 자유게시판
      • 노하우 게시판
    • 바람의나라
      • 자유게시판
      • 홍보게시판
      • 자료게시판
        • 유틸자료실
        • 소스자료실
        • 클라이언트
        • 팩 자료실
      • 연구게시판
        • 개발내역
        • 질문과답변
        • 기타
      • 강의게시판
        • DR
        • CR
        • 구버전
        • 클라이언트 개조
        • 노하우 게시판
        • 게임공략 & 팁
    • 다크에덴
      • 게임공략 & 팁
      • 홍보게시판
      • 유틸자료실
      • 소스자료실
      • 자유게시판
      • 노하우 게시판
    • 믹스마스터
      • 게임공략 & 팁
      • 홍보게시판
      • 유틸자료실
      • 소스자료실
      • 자유게시판
      • 노하우 게시판
    • 라그나로크
      • 게임공략 & 팁
      • 홍보게시판
      • 유틸자료실
      • 소스자료실
      • 자유게시판
      • 노하우 게시판
    • 기타게임
      • 게임공략 & 팁
      • 홍보게시판
      • 유틸자료실
      • 소스자료실
      • 자유게시판
      • 노하우 게시판
    • 게임강의
    • 비베&포토샵
      • 자유게시판
      • 자료실
        • 일반자료실
        • 포인트 자료실
      • 노하우게시판
      • 포토샵게시판
    • 모바일
      • 게임공략
      • 포인트 자료실
      • 유틸자료실
      • 자유게시판
  • 기타게임
    • 기타게임 기타 ()
    • RF 2.1.6

      • 딤딤
      • 2020.06.12 - 20:46 2017.04.07 - 13:37 159 2

    So many people got an error for Setup Emulator, bcause...
    - Never Understand and never learn how to setup Webserver Config
    - Only begging to other members


    now, ill explain about emulator for Launcher RF Online
    for global setup, we use 3 Port for that

    Port 80 for Launcher Update
    Port 8080 for update Login Server IP
    Port 10007 for update Patchinfo.z for Auto Update


    here we Go for Setup Webserver for Emulator.

    1. Download Appserv or anything else you know.
    ( In this case, ill use Appserv 2.5.9 )
    Download Here


    2. After Download Install Appserv on your machine.
    - Up to you, you want to install in Drive C or D or E or whatever
    ( here, i install in Drive C )
    - untick Mysql Database. no need that..!!!
    - ServerName with ip or Localhost ( Be better is localhost )
    - port 80


    3. After Install
    - Open C:AppServApache2.2conf
    - Open File httpd.conf with Notepad ( Be better use Notepad++, i use that )

    Now we need to setup DocumentRoot, ServerRooot and ServerName
    - Find Text ServerName or go to Line 233. and change it with this :

    Code:

    ServerName localhost

    - and Above you will see the DocumentRoot, and leave it. dont edit if you not understand
    - Find Listen 80 or go to line 67. Delete that text ( Listen 80 )
    - SAVE IT and DONT CLOSE ( continue for Step 4 )



    4. Now We Need to make a vhost or Virtual Host. we need 3 Port for vhost launcher emulator
    - Find text again in httpd.conf = Find httpd-vhosts.conf
    - Delete the #, and will like this

    Code:

    # Virtual hosts
    Include conf/extra/httpd-vhosts.conf

    - SAVE AND CLOSE

    this is the file config for setup virtualhost



    5. Open Folder Extra and open httpd-vhosts.conf with notepad++
    - Delete all Text theres
    - and now we need to Listening Port and make an Virtualhost Directory
    - write like this.

    Code:

    Listen 80
    Listen 8080
    Listen 10007
    NameVirtualHost *:80
    NameVirtualHost *:8080
    NameVirtualHost *:10007
    ####################################################################################
    <VirtualHost *:80 *:8080 *:10007>
    
        ServerAdmin hidden
        ServerName hidden
    
        DocumentRoot "C:/AppServ/www/emulator/"
        CustomLog logs/rfpatch.log combined
        ErrorLog logs/rfpatch_err.log
    
        <Directory "C:/AppServ/www/emulator/">
    
    	Options -Indexes MultiViews FollowSymLinks IncludesNoExec
    	AllowOverride None
    	AddOutputFilter Includes html
    	Order allow,deny
    	Allow from all
    
    	AddType application/zip .tmp
    	AddType application/zip .cab
    	AddType application/zip .z
    
    
    	<Files update.dll>
    	   AddType application/x-httpd-php .dll
    	</Files>
    
    
        </Directory>
    
    </VirtualHost>
    ####################################################################################

    - SAVE IT AND CLOSE


    Setup Webserver for Vhost emulator now DONE. and now, we need to create some directory for put the file for make this launcher work.
    you can see the virtualhost directory in extra config. it mean

    Code:

    DocumentRoot "C:/AppServ/www/emulator/"

    and now you need to go to folder C:/AppServ/www, and make new folder with the name is "emulator"



    7. now Go inside Emulator Folder, Create new Document with extention .dll. not .txt
    and Rename to update.dll
    and open it with notepad++, write this text there.

    Spoiler: 



    - SAVE But dont CLOSE...!!!!


    and now, i want to explain about this file ( update.dll )
    see here 

    Code:

    $PatchInfo_ver = 10;
    $LPServerInfo_ver = 10;
    $main_launcher_ver  = 10;
    
    $main_launcher_file_path = 'Launcher';
    $LPServerInfo_file_path = 'Config';
    $PatchInfo_path = 'Update';
    
    $use_archive_three = true;
    $main_launcher_host   = '127.0.0.1';
    $LPServerInfo_host[0] = '127.0.0.1';
    $PatchInfo_host[0]    = '127.0.0.1';

    it mean
    $main_launcher_file_path = 'Launcher'; <-- Need to create new Folder with Name "Launcher"
    $LPServerInfo_file_path = 'Config'; <-- Need to create new Folder with Name "Config"
    $PatchInfo_path = 'Update'; <-- Need to create new Folder with Name "Update"

    and this
    $main_launcher_ver = 10; <-- Need to rename "Launcher" Folder with Name "Launcher10"
    $LPServerInfo_ver = 10; <-- Need to rename "Config" Folder with Name "Config10"
    $PatchInfo_ver = 10; <-- Need to rename "Update" Folder with Name "Update10"

    for 127.0.0.1 Replace with your IP, ( local or Public )

    now we have done for this one. Next Step


    8. Make Sure your have 3 Folder in "C:/AppServ/www/emulator/"
    a. Config10
    b. Update10
    c. Launcher10

    and then, First
    - Open Folder Config10
    - Make New File with Name "LPServerInfo.dat" ( use .dat extention )
    - Open LPServerInfo.dat with notepad++, and write like this
    replace 127.0.0.1 with your IP 

    Code:

    [LoginServer]
    ServerNumber = 1
    Server0 = 127.0.0.1
    
    [PatchServer]
    ServerNumber = 1
    Server0 = 127.0.0.1
    
    [Notice]
    Server = 127.0.0.1

    - SAVE and CLOSE

    - Open Folder Update10
    - Download This Text
    Download Here
    - Zip text file with Password ( Remember, ZIP not Rar or 7Zip )


     

    Code:

    dhelsaktmxj

    - Rename the Extention with .z not .zip or .rar or .7z

    - now Open Folder Launcher10
    Download This Launcher from Here, and Use this STRS for edit the Launcher IP
    [Guide] Make 2 Different Server in 1 Machine (2232 Version)

    If you have done with the launcher. Make a Copy Launcher with name RF with .lc Extention. Put RF.lc in Launcher10 Folder


    9. now is Last Step.
    - Make new File with .bat Extention
    Example Run.bat, and Open with Notepad++ with this text

    Code:

    makecab.exe RF.lc newRF.cab

    - SAVE it and Close
    - Make Sure your folder Launcher10 with 2 files there
    a. RF.lc
    b. Run.bat
    Double Click "Run.bat". and will shown the CMD window,.
    and will automatic creating new File with name newRF.cab


    and now RUN your appserv with Apache Monitor.exe from Start Menu -> AppServ -> Control Server By Services.
    see the right bottom appserv is appeared. Right Click And Start.

    Now, Run Your Launcher from your Client installer...


     

    Attached file
    2.1.6.Final.Update.RaGEZONE.7z 158.39MB 2
    이 게시물을..
    N
    0
    0
    • 씰온라인 서버권밍꼬
    • 0
      딤딤

    딤딤 님의 최근 글

    쿠우 3.0 189 2017 04.24 1124 린올버전 73 2017 04.24 악세0316 입니다 53 2017 04.24 C9 Server 136 1 2017 04.19 ROW 1105 61 2017 04.19

    딤딤 님의 최근 댓글

    감사합니다 2017 04.18 감사합니다 2017 04.18 감사합니다 2017 04.18 감사합니다 2017 04.18 감사합니다 2017 04.17
    글쓴이의 서명작성글 감추기 

    댓글2

    • 0
      sddeess
      2017.05.08 - 21:57 #572831

      죄다 영어네요 ㅠㅜ

    • 0
      쥬지스님
      2020.06.12 - 20:46 #8275274

      저도 영어울렁증 ㅋㅋ

    댓글 쓰기 에디터 사용하기 닫기
    • view_headline 목록
    • 14px
    • 씰온라인 서버
    • 목록
      view_headline
    2
    × CLOSE
    전체 뮤 328 아이온 157 어둠의전설 92 던파 94 프로젝트신루 15 리니지2 240 천상비 6 크로노스 40 칼 온라인 15 기타 3303
    기본 (4,324) 제목 날짜 수정 조회 댓글 추천 비추
    분류 정렬 검색
    4324
    기타
    스톤에이지 해피서버 통파일 (3)
    봉황팔선 2026.02.17 - 04:58 20
    4323
    기타
    스톤에이지 해피서버 통파일 (2)
    봉황팔선 2026.02.17 - 04:56 7
    4322
    기타
    스톤에이지 해피서버 통파일 (1)
    봉황팔선 2026.02.17 - 04:52 27
    4321
    기타
    스톤에이지 7.5 서버팩 - 오렌지팩
    봉황팔선 2026.02.17 - 04:12 8
    4320
    기타
    스톤에이지 7.5 서버팩 - 쪼아팩
    봉황팔선 2026.02.17 - 04:11 6
    4319
    기타
    스톤에이지 7.5 서버팩 - 리엘팩
    봉황팔선 2026.02.17 - 04:10 9
    4318
    기타
    스톤에이지 9.0 클라이언트 (3)
    봉황팔선 2026.02.17 - 04:09 5
    4317
    기타
    스톤에이지 9.0 클라이언트 (2)
    봉황팔선 2026.02.17 - 04:07 1
    4316
    기타
    스톤에이지 9.0 클라이언트 (1)
    봉황팔선 2026.02.17 - 04:06 4
    4315
    기타
    스톤에이지 8.0 클라이언트 (3)
    봉황팔선 2026.02.17 - 04:05 1
    4314
    기타
    스톤에이지 8.0 클라이언트 (2)
    봉황팔선 2026.02.17 - 04:04
    4313
    기타
    스톤에이지 8.0 클라이언트 (1)
    봉황팔선 2026.02.17 - 04:02 2
    4312
    기타
    스톤에이지 7.5 클라이언트 (3)
    봉황팔선 2026.02.17 - 04:00 1
    4311
    기타
    스톤에이지 7.5 클라이언트 (2)
    봉황팔선 2026.02.17 - 04:00
    4310
    기타
    스톤에이지 7.5 클라이언트 (1)
    봉황팔선 2026.02.17 - 03:55 9
    4309
    뮤
    뮤 S20 VM-1
    야구동호랑이 2026.02.12 - 12:44 67
    4308
    기타
    미르의전설3 지르콘 클라 (2) 알집
    miniature 2026.02.06 - 14:13 17
    4307
    기타
    미르의전설3 지르콘 클라 (1)
    miniature 2026.02.06 - 14:10 16
    4306
    기타
    미르의전설3 지르콘 서버.소스.설명서
    miniature 2026.02.06 - 14:07 38
    4305
    기타
    미르의전설2 산댜미르2 (3) 알집
    miniature 2026.02.06 - 13:58 5
    4304
    기타
    미르의전설2 산댜미르2 (2)
    miniature 2026.02.06 - 13:55 6
    4303
    기타
    미르의전설2 산댜미르2 (1)
    miniature 2026.02.06 - 13:51 14
    4302
    기타
    미르의전설2 C# 풀 클라이언트(2015) (3) 알집
    miniature 2026.02.06 - 13:33 7
    4301
    기타
    미르의전설2 C# 풀 클라이언트(2015) (2)
    miniature 2026.02.06 - 13:30 4
    4300
    기타
    미르의전설2 C# 풀 클라이언트(2015) (1)
    miniature 2026.02.06 - 13:26 17
    4299
    기타
    미르의전설2 해피서버 풀 클라이언트(13) 알집
    miniature 2026.02.06 - 13:02 6
    4298
    기타
    미르의전설2 해피서버 풀 클라이언트(12)
    miniature 2026.02.06 - 13:00 1
    4297
    기타
    미르의전설2 해피서버 풀 클라이언트(11)
    miniature 2026.02.06 - 12:57 2
    4296
    기타
    미르의전설2 해피서버 풀 클라이언트(10)
    miniature 2026.02.06 - 12:53
    4295
    기타
    미르의전설2 해피서버 풀 클라이언트(9)
    miniature 2026.02.06 - 12:50 8
    4294
    기타
    미르의전설2 해피서버 풀 클라이언트(8)
    miniature 2026.02.06 - 12:47 6
    4293
    기타
    미르의전설2 해피서버 풀 클라이언트(7)
    miniature 2026.02.06 - 12:44 4
    4292
    기타
    미르의전설2 해피서버 풀 클라이언트(6)
    miniature 2026.02.06 - 12:41 6
    4291
    기타
    미르의전설2 해피서버 풀 클라이언트(5)
    miniature 2026.02.06 - 12:38 1
    4290
    기타
    미르의전설2 해피서버 풀 클라이언트(4)
    miniature 2026.02.06 - 12:36 7
    4289
    기타
    미르의전설2 해피서버 풀 클라이언트(3)
    miniature 2026.02.06 - 12:33 3
    4288
    기타
    미르의전설2 해피서버 풀 클라이언트(2)
    miniature 2026.02.06 - 12:30 8
    4287
    기타
    미르의전설2 해피서버 풀 클라이언트
    miniature 2026.02.06 - 12:23 19
    4286
    기타
    미르의전설2 필리핀소스
    miniature 2026.02.06 - 12:09 7
    4285
    기타
    미르의전설2 크리스탈(릴리즈)서버/클라/소스 25.1.25
    miniature 2026.01.25 - 13:44 67
    4284
    기타
    미르의전설2 크리스탈 서버/클라/소스 23.5.19
    miniature 2026.01.25 - 13:36 38
    4283
    크로노스
    원클릭 크로노스
    권밍꼬 2026.01.05 - 16:11 130
    4282
    크로노스
    충남붕어님 원클릭 크로노스
    권밍꼬 2026.01.05 - 16:10 91
    4281
    기타
    오르카 온라인 클라
    핑구맨이야 2025.12.18 - 23:36 93
    4280
    기타
    마비노기 G20 한글화 + 스마트컨텐츠 + 구축방법
    turrtui 2025.12.05 - 11:47 304
    4279
    기타
    스톤에이지 윈10 2.5 한글화 + 수정 + 구축방법
    turrtui 2025.12.05 - 11:46 537
    4278
    기타
    씰온라인 중국사이트서버
    권밍꼬 2025.12.04 - 11:58 102
    4277
    기타
    데카론 구축방법영상
    권밍꼬 2025.12.03 - 22:45 137
    4276
    기타
    씰온라인 서버
    권밍꼬 2025.12.03 - 22:43 107
    4275
    기타
    위드온라인1
    권밍꼬 2025.12.03 - 22:40 80
    • 1 2 3 4 5 6 7 8 9 10 .. 87
    • / 87 GO
  • GAMEZONE
 GAMEZONE all rights reserved.
by OrangeDay