- Joined
- Aug 17, 2008
- Messages
- 21
- Reaction score
- 0
FIRST i'd like to say...YES I KNOW THIS GUIDE IS ALREADY OUT...but they suck 
oh thats it.
First download wampserver 2.0
pretty self explanatory...leave all stuff at DEFAULTS...doesnt really matter.
then download a CMS...i used kakashirocks ...
http://forum.ragezone.com/showthread.php?t=416648
- link to forum -
then when after you download put the CMS FILES, not FOLDER the root files into the WWW folder in your wamp server folder
should b in ur PROGRAM FILE folder usually...or where you keep ur program file folder...
C:\wamp\www <-- mines that.. urs doesnt have to be.
then u should have ALL the files in there...copy + paste
depending on your CMS...it might have multiple config files
in the www folder with ur CMS files it has config2.php
open it
SHOULD LOOK LIKE THIS
<?php
$host['naam'] = 'localhost'; // my host
$host['gebruikersnaam'] = 'root'; // my database username
$host['wachtwoord'] = 'root'; // my database password
$host['databasenaam'] = 'odinms'; // my database name
$db = mysql_connect($host['naam'], $host['gebruikersnaam'], $host['wachtwoord']) OR die ('Cant connect to the database');
mysql_select_db($host['databasenaam'], $db);
$serverip = "5.37.135.47"; //WAN IP , i just put hamachi for EXAMPLE
$loginport = "8484"; //Don't change
$sql_db = "odinms"; //DB Name
$sql_host = "127.0.0.1"; //DB Host
$sql_user = "root"; //DB User
$sql_pass = "root";
then maybe in the INCLUDES / inc folder there should be more config.php files.... just make sure they look the same at the top
pretty simple.
then on the lil wampserver icon...left click on it...go to PHP/PHP settings. make sure short open tag is CHECKED.
then start it up...
it should b FULLY WHITE...NO YELLOW
then go to your site...
should be
WANIP:8484
or for EXAMPLE 71.58.364.720:8484
then your site should pop up
then CLICK on ALL the options...like for kakaCMS it had...
registration...rank....etc
click on ALL OF THEM. if it says something like
could not connect to mysql....blah blah blah
it'll say the file that is INCOMPLETE....
go to it...for EXAMPLE
in the ranking it'll say it...then it'll say the file thats wrong
c../programfiles/page/downloads <-- FOR EXAMPLE
then go to that file...it should have something like this at the top
$conn = mysql_connect("127.0.0.1", "root", "") or die ('Error connecting to mysql!');
mysql_select_db("odinms");
on that line..the 1st line... "127.0.0.1", "root", "" <-- between the " " add your mysql password.
so its like
"127.0.0.1", "root", "root". TADAHHHHH....it works now
now look around more and keep correcting the mistakes
also to add the drop rate/meso rate crap look for info.inc (its a php file...but says .inc)
<?php
$config['server_name'] = ''; // Server name
$config['server_ip'] = '--.--.---.---'; // Server IP
$config['server_exp'] = ''; // Server EXP (do not add 'x')
$config['server_drop'] = ''; // Server Drop (do not add 'x')
$config['server_meso'] = ''; // Server meso (do not add 'x')
$config['server_owner'] = ''; // Server owner
?>
for server ip put like..what ur using..for hamachi..use the hamachi ip...for static...use static...etc.
YES THERE IS ONLY ONE ' to end it...so for server meso
$config['server_meso'] = '999'; // Server meso (do not add 'x')
like that.
and ur regis is set up !
Notes:
when fixing the error that you get when loading somethign such as downloads...it'll also tell your the line number thats messed up. usually it just needs to add the password.
to take away a page...or navigation just go to www/navigation.php and delete the one you DONT want then save...and its gone
to add one...you should probably COPY another one and rename it...such as copy www/downloads and rename it...contacts <-- or whatever you wanna name it - make sure its a .php file
-
then go to www/page and add a file..EXACTLY NAMED the same as the one you renamed... so for contacts... contacts.php
then add w.e. you want...you might wanna look at OTHER .php files in the www/page b4 u add something
also if you do add a page...make sure to change this in www file for the file you MADE...<?php include ("page/contact.php"); ?> make sure you change it to what you named it in the www/page folder.
and also....MAKE SURE YOU ADDED THE DIRECTORY TO THE NAVIGATION.PHP.... if you add contacts... add
<?php include ("page/contact.php"); ?> under something...yes the order where it is, is the spot it'll take...1 home. 2 regis...3 contact...etc common sense ppl okay ?
and your done o.o
thats it...dont flame for old topic...cuz i was stuck on exact same things and MAYBE thought some OTHER ppl are too.

oh thats it.
First download wampserver 2.0
To view the content, you need to sign in or register
pretty self explanatory...leave all stuff at DEFAULTS...doesnt really matter.
then download a CMS...i used kakashirocks ...
http://forum.ragezone.com/showthread.php?t=416648
- link to forum -
then when after you download put the CMS FILES, not FOLDER the root files into the WWW folder in your wamp server folder
should b in ur PROGRAM FILE folder usually...or where you keep ur program file folder...
C:\wamp\www <-- mines that.. urs doesnt have to be.
then u should have ALL the files in there...copy + paste
depending on your CMS...it might have multiple config files
in the www folder with ur CMS files it has config2.php
open it
SHOULD LOOK LIKE THIS
<?php
$host['naam'] = 'localhost'; // my host
$host['gebruikersnaam'] = 'root'; // my database username
$host['wachtwoord'] = 'root'; // my database password
$host['databasenaam'] = 'odinms'; // my database name
$db = mysql_connect($host['naam'], $host['gebruikersnaam'], $host['wachtwoord']) OR die ('Cant connect to the database');
mysql_select_db($host['databasenaam'], $db);
$serverip = "5.37.135.47"; //WAN IP , i just put hamachi for EXAMPLE
$loginport = "8484"; //Don't change
$sql_db = "odinms"; //DB Name
$sql_host = "127.0.0.1"; //DB Host
$sql_user = "root"; //DB User
$sql_pass = "root";
then maybe in the INCLUDES / inc folder there should be more config.php files.... just make sure they look the same at the top
pretty simple.
then on the lil wampserver icon...left click on it...go to PHP/PHP settings. make sure short open tag is CHECKED.
then start it up...
it should b FULLY WHITE...NO YELLOW
then go to your site...
should be
WANIP:8484
or for EXAMPLE 71.58.364.720:8484
then your site should pop up

then CLICK on ALL the options...like for kakaCMS it had...
registration...rank....etc
click on ALL OF THEM. if it says something like
could not connect to mysql....blah blah blah
it'll say the file that is INCOMPLETE....
go to it...for EXAMPLE
in the ranking it'll say it...then it'll say the file thats wrong
c../programfiles/page/downloads <-- FOR EXAMPLE
then go to that file...it should have something like this at the top
$conn = mysql_connect("127.0.0.1", "root", "") or die ('Error connecting to mysql!');
mysql_select_db("odinms");
on that line..the 1st line... "127.0.0.1", "root", "" <-- between the " " add your mysql password.
so its like
"127.0.0.1", "root", "root". TADAHHHHH....it works now
now look around more and keep correcting the mistakes
also to add the drop rate/meso rate crap look for info.inc (its a php file...but says .inc)
<?php
$config['server_name'] = ''; // Server name
$config['server_ip'] = '--.--.---.---'; // Server IP
$config['server_exp'] = ''; // Server EXP (do not add 'x')
$config['server_drop'] = ''; // Server Drop (do not add 'x')
$config['server_meso'] = ''; // Server meso (do not add 'x')
$config['server_owner'] = ''; // Server owner
?>
for server ip put like..what ur using..for hamachi..use the hamachi ip...for static...use static...etc.
YES THERE IS ONLY ONE ' to end it...so for server meso
$config['server_meso'] = '999'; // Server meso (do not add 'x')
like that.
and ur regis is set up !
Notes:
when fixing the error that you get when loading somethign such as downloads...it'll also tell your the line number thats messed up. usually it just needs to add the password.
to take away a page...or navigation just go to www/navigation.php and delete the one you DONT want then save...and its gone
to add one...you should probably COPY another one and rename it...such as copy www/downloads and rename it...contacts <-- or whatever you wanna name it - make sure its a .php file

then go to www/page and add a file..EXACTLY NAMED the same as the one you renamed... so for contacts... contacts.php
then add w.e. you want...you might wanna look at OTHER .php files in the www/page b4 u add something
also if you do add a page...make sure to change this in www file for the file you MADE...<?php include ("page/contact.php"); ?> make sure you change it to what you named it in the www/page folder.
and also....MAKE SURE YOU ADDED THE DIRECTORY TO THE NAVIGATION.PHP.... if you add contacts... add
<?php include ("page/contact.php"); ?> under something...yes the order where it is, is the spot it'll take...1 home. 2 regis...3 contact...etc common sense ppl okay ?

and your done o.o
thats it...dont flame for old topic...cuz i was stuck on exact same things and MAYBE thought some OTHER ppl are too.
Last edited: