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]Itsu MS CMS V2?

Status
Not open for further replies.
Newbie Spellweaver
Joined
Sep 12, 2008
Messages
27
Reaction score
0
I think my last post was removed so I am rereleasing it as it is my work and as such I am free to release it. Please do not remove it again.

Eternal Darknes - [release]Itsu MS CMS V2? - RaGEZONE Forums


Download:

Mirror thanks to Antv http://forum.ragezone.com/redirecto...efront.com/Itsumsrar/;12384061;/fileinfo.html


Demo:


If you have a suggestion contact me on MSN Eternal.Darknes@live.com
If you need help IDC not to be condescending but I don't.
It is a large file so give it time.

In stafflist.php remove this so it connects correctly.
Code:
# Change these values
define('DB_HOST', '65.75.243.179');
define('DB_USER', 'TestCMS');
define('DB_PASSWORD', 'gdb1itamejj');
define('DB_DATABASE', 'odinms');

# Don't change anything below this line unless you know what you are doing!
# ---
mysql_connect(DB_HOST, DB_USER, DB_PASSWORD) or die('Cannot connect: '.mysql_error());
mysql_select_db(DB_DATABASE) or die('Cannot select: '.mysql_error());

There are more scripts than are used feel free to implement them.


SQL tables
Code:
 CREATE TABLE `web_profile` (
`id` INT( 10 ) NOT NULL AUTO_INCREMENT ,
`accountid` INT( 10 ) NOT NULL ,
`name` VARCHAR( 16 ) NOT NULL ,
`mainchar` INT( 10 ) NOT NULL ,
`realname` VARCHAR( 32 ) NOT NULL ,
`age` INT( 2 ) NOT NULL ,
`country` VARCHAR( 100 ) NOT NULL ,
`motto` VARCHAR( 255 ) NOT NULL ,
`favjob` VARCHAR( 50 ) NOT NULL ,
`text` TEXT NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM ;

 CREATE TABLE `web_pcomments` (
`id` INT( 10 ) NOT NULL AUTO_INCREMENT ,
`accountid` INT( 10 ) NOT NULL ,
`commenter` VARCHAR( 16 ) NOT NULL ,
`feedback` INT( 1 ) NOT NULL ,
`date` VARCHAR( 32 ) NOT NULL ,
`comment` TEXT NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM ;

 CREATE TABLE `web_ncomments` (
`id` INT( 10 ) NOT NULL AUTO_INCREMENT ,
`nid` INT ( 10 ) NOT NULL ,
`author` VARCHAR( 16 ) NOT NULL ,
`feedback` INT( 1 ) NOT NULL ,
`date` VARCHAR( 32 ) NOT NULL ,
`comment` TEXT NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM ;

 CREATE TABLE `web_ecomments` (
`id` INT( 10 ) NOT NULL AUTO_INCREMENT ,
`eid` INT ( 10 ) NOT NULL ,
`author` VARCHAR( 16 ) NOT NULL ,
`feedback` INT( 1 ) NOT NULL ,
`date` VARCHAR( 32 ) NOT NULL ,
`comment` TEXT NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM ;

 CREATE TABLE `web_bcomments` (
`id` INT( 10 ) NOT NULL AUTO_INCREMENT ,
`bid` INT ( 10 ) NOT NULL ,
`author` VARCHAR( 16 ) NOT NULL ,
`feedback` INT( 1 ) NOT NULL ,
`date` VARCHAR( 32 ) NOT NULL ,
`comment` TEXT NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM ;

 CREATE TABLE `web_news` (
`id` INT( 10 ) NOT NULL AUTO_INCREMENT ,
`title` VARCHAR( 50 ) NOT NULL ,
`author` VARCHAR( 16 ) NOT NULL ,
`date` VARCHAR( 32 ) NOT NULL ,
`type` VARCHAR( 50 ) NOT NULL ,
`content` TEXT NOT NULL ,
`views` INT ( 10 ) NOT NULL DEFAULT '0',
PRIMARY KEY ( `id` )
) ENGINE = MYISAM ;

 CREATE TABLE `web_events` (
`id` INT( 10 ) NOT NULL AUTO_INCREMENT ,
`title` VARCHAR( 50 ) NOT NULL ,
`author` VARCHAR( 16 ) NOT NULL ,
`date` VARCHAR( 32 ) NOT NULL ,
`type` VARCHAR( 100 ) NOT NULL ,
`status` VARCHAR( 32 ) NOT NULL ,
`content` TEXT NOT NULL ,
`views` INT ( 10 ) NOT NULL DEFAULT '0',
PRIMARY KEY ( `id` )
) ENGINE = MYISAM ;

 CREATE TABLE `web_gmblog` (
`id` INT( 10 ) NOT NULL AUTO_INCREMENT ,
`title` VARCHAR( 50 ) NOT NULL ,
`author` VARCHAR( 16 ) NOT NULL ,
`date` VARCHAR( 32 ) NOT NULL ,
`content` TEXT NOT NULL ,
`views` INT( 10 ) NOT NULL DEFAULT '0',
PRIMARY KEY ( `id` )
) ENGINE = MYISAM ;

ALTER TABLE `accounts` ADD `gm` INT( 1 ) DEFAULT '0';
ALTER TABLE `accounts` ADD `webadmin` INT( 1 ) DEFAULT '0';
ALTER TABLE `accounts` ADD `nick` VARCHAR( 16 ) NOT NULL ;
ALTER TABLE `accounts` ADD `mute` INT( 1 ) DEFAULT '0';
ALTER TABLE `accounts` ADD `sitelogged` VARCHAR( 255 ) NOT NULL ;


V3 info

I am working on V3 I expect few updates because the lack of people putting scripts in but I am redoing a lot of it so it loads better and the script is cleaner.
 
Last edited:
Custom Title Activated
Loyal Member
Joined
Oct 3, 2008
Messages
1,936
Reaction score
3
Re: Itsu MS CMS

does this have easy navigation???

HOLY poop! its taking me forever to download o.o
 
Newbie Spellweaver
Joined
Sep 12, 2008
Messages
27
Reaction score
0
Re: Itsu MS CMS

It's 173.64.118.88:8080/itsums See for your self, the HS doesn't work because I was fiddling with it.
 
Divine Celestial
Loyal Member
Joined
Jul 19, 2008
Messages
830
Reaction score
2
Re: Itsu MS CMS

Can you post up some screenshots?
 
Junior Spellweaver
Joined
Apr 26, 2008
Messages
154
Reaction score
0
Re: [release]Itsu MS CMS

ty but why the neg is to down and now _________________________
 
Divine Celestial
Loyal Member
Joined
Jul 19, 2008
Messages
830
Reaction score
2
Re: [release]Itsu MS CMS

Thanks for the demo
Looks great btw !
 
Junior Spellweaver
Joined
Apr 26, 2008
Messages
154
Reaction score
0
Re: [release]Itsu MS CMS

dude i means why the register and user cp and all its down and not in ______________________
 
Master Summoner
Loyal Member
Joined
Jul 14, 2008
Messages
584
Reaction score
1
Re: [release]Itsu MS CMS

It looks great, good job!
 
Newbie Spellweaver
Joined
Sep 13, 2008
Messages
7
Reaction score
0
Re: [release]Itsu MS CMS

Is there a log out fix button for normal users?
 
Retired
Joined
Jul 25, 2008
Messages
188
Reaction score
29
Re: [release]Itsu MS CMS

Looks pretty nice. I am going to add you on msn if we can talk.
 
Junior Spellweaver
Joined
Feb 22, 2008
Messages
156
Reaction score
0
Re: [release]Itsu MS CMS

I like it. Great work, Eternal Darknes. Thank you!
PS: btw, can you make image-ranking add-on?
 
Newbie Spellweaver
Joined
Sep 12, 2008
Messages
27
Reaction score
0
Re: [release]Itsu MS CMS

Image rankings is ranking1.php if you go there you can probably see why it was scraped.
 
Junior Spellweaver
Joined
Oct 29, 2008
Messages
107
Reaction score
0
Re: [release]Itsu MS CMS

Isn't there that uber shiny thing?
 
Status
Not open for further replies.
Back
Top