| MapleStory Releases Discuss, [Release]PickleMSCMS! -v1.0 at MapleStory forum; I have done many things to the orriginal SinStory CMS to fix it up! It has many new features including ... |
RaGEZONE sponsored advertisment:
| | iMaplestory is a brand new and fully customized v83 server sponsored by MM Network. It is an anticipated best server of 2010 and is coming to the Maplestory private server community this fall! | |
11-15-2008
|
#1 (permalink)
| | Ultimate Member
Rank: Member
Join Date: Jul 2008 Location: Under your bed.
Posts: 167
Thanked 0 Times in 0 Posts
| [Release]PickleMSCMS! -v1.0
I have done many things to the orriginal SinStory CMS to fix it up! It has many new features including some that have never been seen in a CMS before, such as a WYSIWYG Text Editor for the news, events, and GM blog! I also fixed the Events column on the homepage where it would only show one type of event. There are many other fixes that I have done too! Just see for yourself  PS: This IS a v55 CMS.
Demo (Stable Version): http://www.picklems.com/
Download: http://www.mediafire.com/download.php?lkjzvtym3yy
Just if you're wondering, I DID fix the Profiles in it, so everytime you update it you don't need to set a new profile name and I also made it so you can make a new profile after you sign up. These are the config files that you need to edit: Code: config.php
config2.php
connect.txt
ranking/config.php
Before you start using the CMS, run this MySQL query: 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 ;
Have fun!
I would love for people to give me ideas for the next release In the next release (v1.1):
Removed PMS links.
Server status
Clear banner with tut on how to make a PMS style banner.
Map fixer (hopefully if I get it working)
User notes (Still in beta! Might be stable once I come to release it)
One Config file to change server name, download link, scrolling message, rates, etc..
And more! CREDITS: DO NOT PM ME
I will not respond to any PMs that ask me questions on how to change/fix something on the CMS. Please just ask in this thread.
Last edited by PickleDude; 12-11-2008 at 12:09 AM.
Reason: Adding ideas for the next release
|
| |
RaGEZONE sponsored advertisment:
11-15-2008
|
#2 (permalink)
| | Account Upgraded | Title Enabled!
Rank: Member + Join Date: Jul 2008 Location: In a box
Posts: 1,240
Thanked 17 Times in 14 Posts
| Re: SinStory CMS Redone! -v1.0
|
Originally Posted by PickleDude |
I have done many things to the orriginal SinStory CMS to fix it up! It has many new features including some that have never been seen in a CMS before, such as a WYSIWYG Text Editor for the news, events, and GM blog! I also fixed the Events column on the homepage where it would only show one type of event. There are many other fixes that I have done too! Just see for yourself 
Demo: http://www.picklems.com/
Download: http://www.picklems.com/pmscms.rar
Just if you're wondering, I DID fix the Profiles in it, so everytime you update it you don't need to set a new profile name and I also made it so you can make a new profile after you sign up. These are the config files that you need to edit: Code: config.php
config2.php
connect.txt
ranking/config.php
Before you start using the CMS, run this MySQL query: 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 ;
Have fun!
I would love for people to give me ideas for the next release | Here's an idea, put this cms on a svn
|
| | 
Endorsement
11-15-2008
|
#3 (permalink)
| | Ultimate Member
Rank: Member
Join Date: Jul 2008 Location: Under your bed.
Posts: 167
Thanked 0 Times in 0 Posts
| Re: SinStory CMS Redone! -v1.0
I was already working on that, and thanks!
|
| | 
Endorsement
11-15-2008
|
#4 (permalink)
| | Ultimate Member
Rank: Member
Join Date: Sep 2008 Location: look behind you
Posts: 165
Thanked 3 Times in 3 Posts
| Re: SinStory CMS Redone! -v1.0
Nice release!
|
| |
11-15-2008
|
#5 (permalink)
| | Infraction Banned
Rank: Hobbit
Join Date: Oct 2008
Posts: 15
Thanked 0 Times in 0 Posts
| Re: SinStory CMS Redone! -v1.0
Nice! Lol. Thanks Ben! Its me, Benny from your private server! =P Good job. I like our website. Its easy to use and its not overdone. Nice release!
|
| |
11-15-2008
|
#6 (permalink)
| | Monster Member
Rank: Member
Join Date: Nov 2008
Posts: 175
Thanked 0 Times in 0 Posts
| Re: SinStory CMS Redone! -v1.0
PickleMs o-o as inBen ?
|
| |
11-15-2008
|
#7 (permalink)
| | Ultimate Member
Rank: Member
Join Date: Jul 2008 Location: Under your bed.
Posts: 167
Thanked 0 Times in 0 Posts
| Re: SinStory CMS Redone! -v1.0
Yeah, I'm ben... do I know you?
|
| |
11-15-2008
|
#8 (permalink)
| | Infraction Banned
Rank: Hobbit
Join Date: Oct 2008
Posts: 15
Thanked 0 Times in 0 Posts
| Re: SinStory CMS Redone! -v1.0
Yes, thats Ben the Admin of PickleMS and Im Benny, a GM in PickleMs....Why you ask?
|
| |
11-15-2008
|
#9 (permalink)
| | Monster Member
Rank: Member
Join Date: Nov 2008
Posts: 175
Thanked 0 Times in 0 Posts
| Re: SinStory CMS Redone! -v1.0
I'm FLOW remember o_o
|
| |
11-15-2008
|
#10 (permalink)
| | Infraction Banned
Rank: Hobbit
Join Date: Oct 2008
Posts: 15
Thanked 0 Times in 0 Posts
| Re: SinStory CMS Redone! -v1.0
Wait, THATS FLOW.....
|
| |
11-15-2008
|
#11 (permalink)
| | Infraction Banned
Rank: Hobbit
Join Date: Oct 2008
Posts: 15
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Lol. posted at the same time..lol...I could tell by the picture.
|
| |
11-15-2008
|
#12 (permalink)
| | Ultimate Member
Rank: Member
Join Date: Jul 2008 Location: Under your bed.
Posts: 167
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
HAHA Wow... well, lets stay on topic or a mod will close or delete this thread... and Hi flow :)
|
| |
11-15-2008
|
#13 (permalink)
| | Monster Member
Rank: Member
Join Date: Nov 2008
Posts: 175
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
(; anyways Ben, im using the NORMAL SkillMs o_o
and i'm wondering how to add more shit to the Navgi bar, and add a forum link .
cause when i press forum, it either send me back to my page, or can't find forum o-o www.soloms.tk |
| |
11-15-2008
|
#14 (permalink)
| | Infraction Banned
Rank: Hobbit
Join Date: Oct 2008
Posts: 15
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Wow. Noob? You cant program.......
|
| |
11-15-2008
|
#15 (permalink)
| | Ultimate Member
Rank: Member
Join Date: Jul 2008 Location: Under your bed.
Posts: 167
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Open up top.php and find <a href="community.php" class="menu_link">User CP</a> and add after that: Code: | <a href="www.soloms.tk/forumlink" class="menu_link">Forum</a>
|
| |
11-15-2008
|
#16 (permalink)
| | Infraction Banned
Rank: Hobbit
Join Date: Oct 2008
Posts: 15
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
You said on your GM application that you can program and all...Any programmer can do that in like 10 seconds. Plus, your website sucks. I can see you tryed to edit it and messed it up? O.o
|
| |
11-15-2008
|
#17 (permalink)
| | Infraction Banned
Rank: Hobbit
Join Date: Oct 2008
Posts: 15
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Yes, what he said.....Benny is a genuis? =D
|
| |
11-15-2008
|
#18 (permalink)
| | Monster Member
Rank: Member
Join Date: Nov 2008
Posts: 175
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
LOL, on website o_o i can only XMLWZ, and other, JAVA, and yeah o-o
|
| |
11-15-2008
|
#19 (permalink)
| | Infraction Banned
Rank: Hobbit
Join Date: Oct 2008
Posts: 15
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Oops...Ben* is a genuis?O.o
|
| |
11-15-2008
|
#20 (permalink)
| | Ultimate Member
Rank: Member
Join Date: Jul 2008 Location: Under your bed.
Posts: 167
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Use my CMS ;)
Few Reasons:
Yours has a lot of glitches that I fixed. E.G. the profiles...
I added a nice text editor and removed oversized images.
You can also use the same database that you already have to keep all notices etc
|
| |
11-15-2008
|
#21 (permalink)
| | Infraction Banned
Rank: Hobbit
Join Date: Oct 2008
Posts: 15
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Yeah, "your" CMS rocks! =D
|
| |
11-15-2008
|
#22 (permalink)
| | Infraction Banned
Rank: Hobbit
Join Date: Oct 2008
Posts: 15
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Im lucky cuz I have like a pretty big book on HTML that my dad got from work...also, my dad has this JavaScript Bible book thats like 100534534673657934 pages long.....and some J2++ or something like that. Lol. Im to lazy to read them. Takes SOOOO long...
|
| |
11-15-2008
|
#23 (permalink)
| | Ultimate Member
Rank: Member
Join Date: Jul 2008 Location: Under your bed.
Posts: 167
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
My redone CMS* ;) Ok guys, we got too far off topic! Give me ideas for the next release!
|
| |
11-15-2008
|
#24 (permalink)
| | Monster Member
Rank: Member
Join Date: Nov 2008
Posts: 175
Thanked 0 Times in 0 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
I'll use it, i change later (:
anyways, you know how to Change the BACKGROUND color, like you know its blackish grayish o_o
|
| |
11-15-2008
|
#25 (permalink)
| | ttv.
Rank: Alpha Member Join Date: Aug 2008
Posts: 1,575
Thanked 4 Times in 3 Posts
| Re: PickleMSCMS - SinStory CMS Redone! -v1.0
|
Originally Posted by BennyDeveloper | |
Wow. Noob? You cant program.......
| That was one of the most idiotic comments I have ever seen.
Also you doublepost like a 'noob'
on topic: What did you guys even do? Add more things to the navigation bar? Oh my god, I could do that in less than 10 seconds, what else?
|
| |
LinkBacks (?)
LinkBack to this Thread: http://forum.ragezone.com/f427/release-picklemscms-v1-0-a-497652/ | | Posted By | For | Type | Date | | maplestory libary | This thread | Refback | 07-10-2009 10:52 AM | |