Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Web [Web]How to set up a CMS

Initiate Mage
Joined
Dec 26, 2009
Messages
3
Reaction score
0
Re: [Tutorial]How to set up a CMS

Hmm , btw

When I do the last step in the installation it sais rename the file install to install.lock

well i did that and now I get this error : sais it isnt found :eek:

Not Found

The requested URL /install/install.php was not found on this server.
 
Joined
Aug 24, 2009
Messages
1,221
Reaction score
170
Re: [Tutorial]How to set up a CMS

Hmm , btw

When I do the last step in the installation it sais rename the file install to install.lock

well i did that and now I get this error : sais it isnt found :eek:

Not Found

The requested URL /install/install.php was not found on this server.

Well don't save as just right click it and just change the .file to .lock and you probably locked the wrong install file since there is two. rename the install file that is 1kb and said FILE underneath it
 
Newbie Spellweaver
Joined
Oct 18, 2008
Messages
6
Reaction score
0
Re: [Tutorial]How to set up a CMS

Nvm NyCPirate, it works again ;)

---------- Post added at 05:30 PM ---------- Previous post was at 05:13 PM ----------

Where can I put my download for the the v.75?
This is the download link:
But I don't get where I should put it (not the game client, I do get that :p)
 
Joined
Aug 24, 2009
Messages
1,221
Reaction score
170
Re: [Tutorial]How to set up a CMS

Nvm NyCPirate, it works again ;)

---------- Post added at 05:30 PM ---------- Previous post was at 05:13 PM ----------

Where can I put my download for the the v.75?
This is the download link:
But I don't get where I should put it (not the game client, I do get that :p)

Go into mysql and double click cype_properties and keep scroll to the right until you see a colomn where it says download then put it there.
 
Newbie Spellweaver
Joined
Oct 18, 2008
Messages
6
Reaction score
0
Re: [Tutorial]How to set up a CMS

Go into mysql and double click cype_properties and keep scroll to the right until you see a colomn where it says download then put it there.

No dude, that's not it :(
THat's only for your client, but not for the real v.75 server setup!
 
Newbie Spellweaver
Joined
Dec 31, 2009
Messages
18
Reaction score
0
Re: [Tutorial]How to set up a CMS

I can't enter the page. It keeps saying . "Link broken"
 
Newbie Spellweaver
Joined
Dec 19, 2009
Messages
34
Reaction score
1
Re: [Tutorial]How to set up a CMS

How can i make the files with Notepad?
Also if u got time can u doit for me with Teamviewer I'll help alot and verry nice Turtorial.
Ty
 
Joined
Nov 27, 2009
Messages
442
Reaction score
230
Re: [Tutorial]How to set up a CMS

I really don't get what's so hard about setting up a CMS o-o but good job anyways priate
 
Initiate Mage
Joined
Dec 29, 2009
Messages
2
Reaction score
0
Re: [Tutorial]How to set up a CMS

Awsome guide, but I do have two questions, I have my up and working but one the pictures of the characters do not show, and two how can I make my site piblic for others to see? Thanks :)
 
Newbie Spellweaver
Joined
Jul 11, 2008
Messages
38
Reaction score
0
Re: [Tutorial]How to set up a CMS

I did all of that, when i put in 127.0.0.1 it works for me, I see the site, but when I give my players my ip it doesn't work for them, it doesnt take them to a working site. Help?
 
Junior Spellweaver
Joined
Nov 12, 2009
Messages
163
Reaction score
7
Re: [Tutorial]How to set up a CMS

I did all of that, when i put in 127.0.0.1 it works for me, I see the site, but when I give my players my ip it doesn't work for them, it doesnt take them to a working site. Help?

Is the site setup to your WAN IP?
 
Initiate Mage
Joined
Dec 24, 2008
Messages
3
Reaction score
0
Re: [Tutorial]How to set up a CMS

When i open up 127.0.0.1 it doesnt do anything
 
Newbie Spellweaver
Joined
Feb 8, 2010
Messages
8
Reaction score
0
Re: [Tutorial]How to set up a CMS

Warning: include(../config/database.php) [function.include]: failed to open stream: No such file or directory in C:\wamp\www\install\install.php on line 111

Warning: include() [function.include]: Failed opening '../config/database.php' for inclusion (include_path='.;C:\php5\pear') in C:\wamp\www\install\install.php on line 111

Warning: mysql_query() [function.mysql-query]: Access denied for user 'SYSTEM'@'localhost' (using password: NO) in C:\wamp\www\config\properties.php on line 25

Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in C:\wamp\www\config\properties.php on line 25

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\wamp\www\config\properties.php on line 26
That is what I get.

This is my database file:
<?php
/*
Copyright (C) 2009 Murad <Murawd>
Josh L. <Josho192837>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

if(basename($_SERVER["PHP_SELF"]) == "database.php"){
die("403 - Access Forbidden");
}

/* MySQL Connection Information */
// Where is MySQL Hosted? If you aren`t sure, just leave it as "localhost"
$host = "localhost";
// Database Username - Usually "root"
$user = "root";
// Database Password - Usually "root". If you don`t have a password, or are not sure, leave it blank.
$pass = "";
// Database Name - Usually "odinms"
$database = "odinms";
// What is the server`s Wan IP
$serverip = "24.185.184.8";
// What is your server`s log in port - Don`t change if you aren`t sure.
$loginport = "3306";
// What is your server`s world port - Don`t change if you aren`t sure.
$worldport = "8484";

/* Don`t touch. */
$conn = mysql_connect($host,$user,$pass);
$db = mysql_select_db($database, $conn) or die(mysql_error());

?>
 
Initiate Mage
Joined
Jan 1, 2010
Messages
4
Reaction score
0
Re: [Tutorial]How to set up a CMS

Does this work for non-hamachi and hamachi?
 
Newbie Spellweaver
Joined
Jan 28, 2010
Messages
32
Reaction score
1
Re: [Tutorial]How to set up a CMS

still fail, T.T help please. how about the sql? how does it work?

If you still have the problem with your cms do the following:

1. Open MySQL
2. Go to your accounts and right click accounts
3. Click on "Edit Table"
4. Roll down till you see lastknownip and untick it.
 
Joined
Aug 24, 2009
Messages
1,221
Reaction score
170
Re: [Tutorial]How to set up a CMS

Why doesn't it work?

PHP:
Warning: include(../config/database.php) [function.include]: failed to open stream: No such file or directory in C:\wamp\www\install\install.php on line 111

Warning: include() [function.include]: Failed opening '../config/database.php' for inclusion (include_path='.;C:\php5\pear') in C:\wamp\www\install\install.php on line 111

Warning: mysql_query() [function.mysql-query]: Access denied for user 'ODBC'@'localhost' (using password: NO) in C:\wamp\www\config\properties.php on line 25

Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in C:\wamp\www\config\properties.php on line 25

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\wamp\www\config\properties.php on line 26
Post your properties.php file here and I'll see if I can help you out.
 
Back
Top