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!

[Release] Dynasty CMS -- Revision 7 --

Initiate Mage
Joined
Jan 6, 2008
Messages
1
Reaction score
0
WTF? My Dynasty has no .exe files, and, when I try to use the .php files, it says"not supported", and the link one the first page won't work! Help!
 
Newbie Spellweaver
Joined
Dec 17, 2004
Messages
47
Reaction score
0
The files u mirrored are unable to download, could u mirror to mediafire.com or megaupload.com ?
 
Initiate Mage
Joined
Jan 10, 2008
Messages
2
Reaction score
0
hello i have a problem w/ my site when i go to this page and fill all the requir then i press continue it says CONNOT CREATE TABLE. what must i do???
 
Junior Spellweaver
Joined
Aug 27, 2006
Messages
172
Reaction score
0
The links are dead. If anyone has the updated website info for the project, or can link the files here it would be greatly appreciated. Thanks.
 
Initiate Mage
Joined
Jan 26, 2008
Messages
1
Reaction score
0
Every time I try to login using the Admin or user Panel I get the message You must log in you noob!

Any advice on what might be causing this? I am running Server 2003 using IIS 6.0
Any help with this matter would be greatly appreciated thanks :)
 
Junior Spellweaver
Joined
Feb 3, 2007
Messages
167
Reaction score
0
I don't have the "config.php" in "/functions"-folder... How to fix it?
 
Newbie Spellweaver
Joined
Feb 24, 2008
Messages
11
Reaction score
0
How do i change my DynastyCms web address? instead of
 
Experienced Elementalist
Joined
Sep 11, 2007
Messages
295
Reaction score
2
i dont even have news wtf is with this CMS
 
Newbie Spellweaver
Joined
Apr 8, 2007
Messages
23
Reaction score
2
see post below...sry, wanted to delete this one
 
Last edited:
Newbie Spellweaver
Joined
Apr 8, 2007
Messages
23
Reaction score
2
i dont even have news wtf is with this CMS

The "edit news" doesn't work so, as per previous posts in the thread I will just edit the index or home.php manually whichever it is...
 
Master Summoner
Joined
Jun 11, 2006
Messages
518
Reaction score
0
I don't have the "config.php" in "/functions"-folder... How to fix it?

Run the install from your 127.0.0.1 or localhost or whatever. Make sure you enter correct information. It will CREATE a config.php

could you please help me? i get a cannot create tables error :(

Make sure you put all the correct data for SQL in the fields, and obviously that your SQL is on.
 
Newbie Spellweaver
Joined
Apr 8, 2007
Messages
23
Reaction score
2
I figured out how to get the news section to work in the admin section!

Go to the templates folder and then to default.

Right click on "adminbar" and add this into the code after Administator Options:
"{<p><a href="?op=news">News</a></p>}" minus the quotes and {} on the outside edges(the quotes around ?op=news need to stay there)

that will do it
 
Last edited:
Newbie Spellweaver
Joined
Apr 8, 2007
Messages
23
Reaction score
2
Another fix:

I noticed the patch link kept adding %3CE to the address whenever I clicked on it.

If you go to the downloads file in modules and open it in Notepad, one simple thing will fix this.

If you look at the code for the patch section check out line
Code:
<td><a href="<?php echo getConfig('patch') ?>>">

remove one of the > after the ? and it will fix the problem.
 
Last edited:
Newbie Spellweaver
Joined
Apr 8, 2007
Messages
23
Reaction score
2
I just got the staff section working! Note: I have the same code for server developers and server admins as I figure they are probably the same people.


Code:
<?php
/* 
DynastyCMS
Copyrigt (C) 2007 dynastycms

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 2
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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
*/
?>
<p><b>Server Administrators</b></p>
<?php
$sql = "SELECT
	a.username as username
        FROM
	accounts as a
	WHERE
	a.accesslevel = 300
	        ";
$result = @mysql_query($sql) or die(mysql_error());
echo "<table border='0'>";

while($row = mysql_fetch_array( $result )) {
	echo "<tr><td bgcolor=''>"; 
	echo $row['username'];
echo "</td><td bgcolor=''>";
	include ('functions/class.php');
	echo "</td></tr>"; 
}
                             echo "</table>";
?>
<br><br>

<p><b>Server Developers</b></p>
<?php
$sql = "SELECT
	a.username as username
        FROM
	accounts as a
	WHERE
	a.accesslevel = 300
	        ";
$result = @mysql_query($sql) or die(mysql_error());
echo "<table border='0'>";

while($row = mysql_fetch_array( $result )) {
	echo "<tr><td bgcolor=''>"; 
	echo $row['username'];
echo "</td><td bgcolor=''>";
	include ('functions/class.php');
	echo "</td></tr>"; 
}
                             echo "</table>";
?>
<br><br>

<p><b>Server Game Masters</b></p>
<?PHP
$sql = "SELECT
                c.char_name as char_name
              FROM
                characters as c
              LEFT JOIN
                accounts as a
              ON
                (c.account_name = a.username)
              WHERE
                a.accesslevel < 300
                            ";
$result = @mysql_query($sql) or die(mysql_error());


echo "<table border='0'>";

while($row = mysql_fetch_array( $result )) {
	echo "</td><td bgcolor=''>"; 
	echo $row['char_name'];
		
echo "</td><td bgcolor=''>";
	include ('functions/class.php');
	echo "</td></tr>"; 
} 
				echo "</table>";				
	?>
<br><br>
 
Newbie Spellweaver
Joined
Apr 8, 2007
Messages
23
Reaction score
2
my bad, something is still glitchy with the "Game Masters" section. I just realize I don't have a GM character set up and it is seeing my character as a GM anyway...darn it all!
 
Newbie Spellweaver
Joined
Feb 1, 2008
Messages
85
Reaction score
0
Cool ! This Is Awesome and it all works!
 
Newbie Spellweaver
Joined
Apr 2, 2008
Messages
59
Reaction score
0
Lol, mine says this:

Code:
Warning: require(functions/config.php) [function.require]: failed to open stream: No such file or directory in C:\wamp\www\index.php on line 26

Fatal error: require() [function.require]: Failed opening required 'functions/config.php' (include_path='.;C:\php5\pear') in C:\wamp\www\index.php on line 26
 
Back
Top