You are Unregistered, please register to gain Full access.
    


RaGEZONE sponsored advertisment:

Dragonica Image
The free 3D side scrolling MMORPG.

 
 
LinkBack (1) Thread Tools
Old 11-15-2008   1 links from elsewhere to this Post. Click to view. #1 (permalink)
Ultimate Member
 
PickleDude's Avatar
 
Rank: Member
Join Date: Jul 2008
Location: Under your bed.
Posts: 167
Thanked 0 Times in 0 Posts

[Release]PickleMSCMS! -v1.0

Your Ad Here
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:
Spoiler:
Credits for the original CMS given to erick33321.


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 01:09 AM. Reason: Adding ideas for the next release
PickleDude is offline  

RaGEZONE sponsored advertisment:
Old 11-15-2008   #2 (permalink)
Account Upgraded | Title Enabled!
 
917893678251's Avatar
 
Rank: Member +
Join Date: Jul 2008
Location: In a box
Posts: 1,218
Thanked 10 Times in 9 Posts

Re: SinStory CMS Redone! -v1.0

Originally Posted by PickleDude View Post
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
917893678251 is offline  

Endorsement
Old 11-15-2008   #3 (permalink)
Ultimate Member
 
PickleDude's Avatar
 
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!
PickleDude is offline  

Endorsement

Old 11-15-2008   #4 (permalink)
Ultimate Member
 
koolhomie's Avatar
 
Rank: Member
Join Date: Sep 2008
Location: look behind you
Posts: 157
Thanked 3 Times in 3 Posts

Re: SinStory CMS Redone! -v1.0

Nice release!
koolhomie is offline  
Old 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!
BennyDeveloper is offline  
Old 11-15-2008   #6 (permalink)
Monster Member
 
SoloMs's Avatar
 
Rank: Member
Join Date: Nov 2008
Posts: 176
Thanked 0 Times in 0 Posts

Re: SinStory CMS Redone! -v1.0

PickleMs o-o as inBen ?
__________________
SoloMs is offline  
Old 11-15-2008   #7 (permalink)
Ultimate Member
 
PickleDude's Avatar
 
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?
PickleDude is offline  
Old 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?
BennyDeveloper is offline  
Old 11-15-2008   #9 (permalink)
Monster Member
 
SoloMs's Avatar
 
Rank: Member
Join Date: Nov 2008
Posts: 176
Thanked 0 Times in 0 Posts

Re: SinStory CMS Redone! -v1.0

I'm FLOW remember o_o
__________________
SoloMs is offline  
Old 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.....
BennyDeveloper is offline  
Old 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.
BennyDeveloper is offline  
Old 11-15-2008   #12 (permalink)
Ultimate Member
 
PickleDude's Avatar
 
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 :)
PickleDude is offline  
Old 11-15-2008   #13 (permalink)
Monster Member
 
SoloMs's Avatar
 
Rank: Member
Join Date: Nov 2008
Posts: 176
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
__________________
SoloMs is offline  
Old 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.......
BennyDeveloper is offline  
Old 11-15-2008   #15 (permalink)
Ultimate Member
 
PickleDude's Avatar
 
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>
PickleDude is offline  
Old 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
BennyDeveloper is offline  
Old 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
BennyDeveloper is offline  
Old 11-15-2008   #18 (permalink)
Monster Member
 
SoloMs's Avatar
 
Rank: Member
Join Date: Nov 2008
Posts: 176
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
__________________
SoloMs is offline  
Old 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
BennyDeveloper is offline  
Old 11-15-2008   #20 (permalink)
Ultimate Member
 
PickleDude's Avatar
 
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
PickleDude is offline  
Old 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
BennyDeveloper is offline  
Old 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...
BennyDeveloper is offline  
Old 11-15-2008   #23 (permalink)
Ultimate Member
 
PickleDude's Avatar
 
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!
PickleDude is offline  
Old 11-15-2008   #24 (permalink)
Monster Member
 
SoloMs's Avatar
 
Rank: Member
Join Date: Nov 2008
Posts: 176
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
__________________
SoloMs is offline  
Old 11-15-2008   #25 (permalink)
ttv.
 
Rank: Alpha Member
Join Date: Aug 2008
Posts: 1,589
Thanked 4 Times in 3 Posts

Re: PickleMSCMS - SinStory CMS Redone! -v1.0

Originally Posted by BennyDeveloper View Post
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?
__________________
YouAreNotBob is offline  
 

Bookmarks

Thread Tools


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



Translated by Google
Albanian Arabic Belarusian Bulgarian Catalan Chinese Croatian Czech Danish Dutch English Estonian Filipino Finnish French Galician German Greek Hebrew Hindi Hungarian Icelandic Indonesian Italian Japanese Korean Latvian Lithuanian Maltese Norwegian Polish Portuguese Romanian Russian Serbian Slovak Slovenian Spanish Swedish Taiwanese Thai Turkish Ukrainian Vietnamese
no new posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267