Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

RANCP GUIDE - Apache/2.2.15 (Win32) PHP 5.2.17

Status
Not open for further replies.
Mythic Archon
Joined
Dec 22, 2008
Messages
700
Reaction score
224
Location
United States

> INSTALLATION PROCESS
  • Download files
  • php directory
  • Installing Apache
  • Adding PHP module
  • Adding MIME module
  • Configuration Test
  • Download RANCP/BLUE RANCP files


> PHP CONFIG INFO
  • GD Image DLL Enabled
  • MSSQL Extension DLL Enabled



===========================================



> Open Apache PHP Files.rar

> Put php folder in C:\ drive

> Open and install apache_2.2.15-x86-openssl-0.9.8m.EXE

> STOP APACHE SERVICE IF RUNNING

> After the installation find the Apache Folder Directory, mine is C:\Program Files\Apache Software Foundation\Apache2.2 and open the folder conf


===========================================

> ADDING PHP MODULE IN APACHE

> Open httpd.conf with notepad

> Add the CODE after " #LoadModule vhost_alias_module modules/mod_vhost_alias.so "
Code:
[COLOR="red"]LoadModule php5_module "C:/php/php5apache2_2.dll"[/COLOR]

> Find/Search the text " IfModule dir_module " and add index.php
Code:
[COLOR="red"]DirectoryIndex index.html index.php[/COLOR]

> Find/Search the text " IfModule alias_module " add the code at the end of the module.
Code:
  [COLOR="red"]ScriptAlias /cgi-bin/ "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/"
 ScriptAlias /php/ "C:/php/"[/COLOR]

> Find/Search the code
Code:
[COLOR="Red"]<Directory "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>[/COLOR]

> Add the CODE below the </Directory> afterwards. it should look.
Code:
[COLOR="Red"]<Directory "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>[/COLOR]

[COLOR="cyan"]<Directory "C:/php">
   AllowOverride None
   Options None
   Order allow,deny
   Allow from all
</Directory> [/COLOR]

===========================================

> ADDING PHP MIME MODULE

> Find/Search " IfModule mime_module " add the CODE below "AddType application/x-gzip .gz .tgz "
Code:
[COLOR="red"]AddType application/x-httpd-php .php 
Action application/x-httpd-php "/php/php-cgi.exe"
[/COLOR]

> And FINALLY, add this CODE at the END OF THE LINE or Somewhere in the file.
Code:
[COLOR="Red"]phpIniDir "C:\php" [/COLOR]

===========================================

> TESTING CONFIGURATION

> Locate C:\Program Files\Apache Software Foundation\Apache2.2\bin

> OPEN httpd.exe, there should be a cmd window that will pop-up and exit by itself.
if the cmd window somehow didn't exit then Post the error here of what it says on cmd window.


> IF THE CONFIGURATION IS SUCCESS THEN START APACHE

===========================================


> TO MAKE MSSQL EXTENSION DLL WORK

> Open C:\php and copy the ntwdblib.dll and paste it in C:\Windows\System32

===========================================




> Put Files in Apache HtDocs Folder/




===========================================
 
Last edited:
please all post here dont get bad instruction cause your distracting the interested people please post good instructions and file"god bless us"
 
hello sir jerico.. i got a problem starting the apache services.. it says "Error the requested operation has failed".. i followed your step but that's the error pop-up.. any idea how to fix it?? thank you sir..

and do i need to download the bbcp.rar? i have BOSSWEB.rar.
 
how to edit ? or how to log in in the admin panel . it always show Access forbidden
 
i already do that . but when im going to example local host or other site to see my ranCP its also say's IT'S WORKS .. why is it like that ?

i try to follow again all step but still the outcome is "IT'S works!"

nitro+ - RANCP GUIDE - Apache/2.2.15 (Win32) PHP 5.2.17 - RaGEZONE Forums
 
Last edited:
If u have a rancp folder in ur htdocs try
Http:// 127.0.0.1/myrancp foldername/
If not try
 
sir when i test Files\Apache Software Foundation\Apache2.2\htdocs it's 403 fobidden .. but in index i saw only text ...
 
it keeps saying
Connection with SQL Server failed! Error #119

EVEN THOUGH THE HTDOCS FOLDER IS empty :mad:

how to fix this ??

i used xampp the result is the same
 
Status
Not open for further replies.
Back