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   #26 (permalink)
Infraction Banned
 
Rank: Hobbit
Join Date: Oct 2008
Posts: 15
Thanked 0 Times in 0 Posts

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

Ummm.....The WYSIWYG isnt that great? I dunno. Lol. Maybe release one with a WYSIWYG and one without it?
BennyDeveloper is offline  

RaGEZONE sponsored advertisment:
Old 11-15-2008   #27 (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. We did get off topic. Well, I dunno about this CMS but there is going to be something like <body bgcolor="watever...."> so check that in the main php file or html file. Ask Ben, I didnt download this. DOWNLOADING NOW! =D
BennyDeveloper is offline  

Endorsement
Old 11-15-2008   #28 (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: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

@Flow: Open css\stylesheet.css and find this:
background-color:#333333;
Then change 333333 to whatever hex color that you want the background to be
PickleDude is offline  

Endorsement

Old 11-15-2008   #29 (permalink)
What
 
Przndude's Avatar
 
Rank: Member +
Join Date: Aug 2008
Location: California
Posts: 439
Thanked 0 Times in 0 Posts

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

Great release!
__________________
Blargh
Przndude is offline  
Old 11-15-2008   #30 (permalink)
Account Upgraded | Title Enabled!
 
gtxx911's Avatar
 
Rank: Member +
Join Date: Jul 2008
Location: Stalker
Posts: 1,158
Thanked 0 Times in 0 Posts

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

Nice job, looks good!
gtxx911 is offline  
Old 11-15-2008   #31 (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: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

Thank you for the people that appreciate this.
Quote:
You should give credits to the person who made the base of the "CMS" in the first place.
Yeah I'm still having trouble with finding original thread that I got the CMS from. If you can tell me the link or the user to give credits to, I would gladly to it :)
PickleDude is offline  
Old 11-15-2008   #32 (permalink)
Я Люблю Вас
 
♠Markii♠'s Avatar
 
Rank: Alpha Member
Join Date: Nov 2008
Location: Downtown
Posts: 1,919
Blog Entries: 2
Thanked 0 Times in 0 Posts

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

Nice :D
__________________
♠Markii♠ is offline  
Old 11-15-2008   #33 (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: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

Thank you Markii. Doesn't anyone have any ideas for the next release?
PickleDude is offline  
Old 11-15-2008   #34 (permalink)
I AM 10 AND WAT IS THIS?
 
Legacy's Avatar
 
Rank: Member +
Join Date: Sep 2008
Posts: 476
Thanked 12 Times in 7 Posts

Re: [release]PickleMSCMS - 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
./end thread
there is no point in this release, it's so easy to do this..

/flame
__________________
/l、
(゚、 。 7   I CAN HAS A CHEEZBURGER?
 l、 ~ヽ
 じしf_, )ノ

Originally Posted by Murawd View Post
I stopped reading when you said Moogra helped.
Legacy is offline  
Old 11-16-2008   #35 (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: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

This thread ends when a mod closes it or when I say when it ends. Stay in your own threads. Lets see you try to do this.
PickleDude is offline  
Old 11-16-2008   #36 (permalink)
Infraction Banned
 
Rank: Hobbit
Join Date: Oct 2008
Posts: 15
Thanked 0 Times in 0 Posts

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

Umm. I remeber getting one from somewhere but I forget where. Ima try to find it again.

Edit: NVM. I think what I saw was a SkillMS CMS or something but it was similar...
BennyDeveloper is offline  
Old 11-16-2008   #37 (permalink)
Member
 
~_AustraliaMS_~'s Avatar
 
Rank: Member +
Join Date: Aug 2008
Location: Australia
Posts: 679
Thanked 0 Times in 0 Posts

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

nice CMS..
~_AustraliaMS_~ is offline  
Old 11-16-2008   #38 (permalink)
Kuchiki Byakuya
 
chuayaowei's Avatar
 
Rank: Alpha Member
Join Date: Jul 2008
Location: Singapore
Posts: 1,517
Thanked 1 Time in 1 Post

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

Looks good
chuayaowei is offline  
Old 11-16-2008   #39 (permalink)
♣ Heretic Source Dev ♣
 
ProGamerForLife's Avatar
 
Rank: Member +
Join Date: Sep 2008
Location: iTouchMs
Posts: 1,090
Thanked 3 Times in 2 Posts

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

lol ye i remember ericks Sinstory CMS
but nice release and gj looks nice
__________________
ProGamerForLife is offline  
Old 11-16-2008   #40 (permalink)
[ Sizz'em Out ]
 
xbLazE's Avatar
 
Rank: Member +
Join Date: Jul 2008
Location: Singapore
Posts: 1,278
Thanked 0 Times in 0 Posts

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

Looking great :D
__________________
xbLazE is offline  
Old 11-16-2008   #41 (permalink)
♣ Heretic Source Dev ♣
 
ProGamerForLife's Avatar
 
Rank: Member +
Join Date: Sep 2008
Location: iTouchMs
Posts: 1,090
Thanked 3 Times in 2 Posts

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

nice fixes btw
__________________
ProGamerForLife is offline  
Old 11-16-2008   #42 (permalink)
AzuraStory
 
YaNdAoGM's Avatar
 
Rank: Member +
Join Date: Apr 2008
Location: public boolean isSingapore { return true; }
Posts: 575
Blog Entries: 1
Thanked 1 Time in 1 Post

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

this is not a bad 1 unlike xrave's cms which i don't even called it a cms =X
__________________
[IMG]http://i303.photobucket.com/albums/nn141/YaNdAoBuCk/*************.png[/IMG]
[admin][/admin]
YaNdAoGM is offline  
Old 11-16-2008   #43 (permalink)
The Omega
 
terens's Avatar
 
Rank: Member
Join Date: Apr 2008
Posts: 123
Thanked 0 Times in 0 Posts

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

xrave's cms is horrible.=)
__________________
terens is offline  
Old 11-16-2008   #44 (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: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

I added a user notes system to the next release. It is still in Pre-Beta and has a LOT of glitches, but should all be fixed before the next release. Any other ideas for it? And thank you guys! Tell me if you notice any glitches that I haven't fixed :)
PickleDude is offline  
Old 11-16-2008   #45 (permalink)
Infraction Banned
 
Rank: Hobbit
Join Date: Oct 2008
Posts: 15
Thanked 0 Times in 0 Posts

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

Hmm...I just found this CMS buried under all these files in my computer....



Edit: Dont ask for it...I deleted it from my computer..
BennyDeveloper is offline  
Old 11-16-2008   #46 (permalink)
I wanna be a ROSE GM!!
 
Rank: Member +
Join Date: Sep 2006
Location: England
Posts: 1,006
Thanked 0 Times in 0 Posts

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\xampp\htdocs\maple\top.php:7) in C:\xampp\htdocs\maple\config.php on line 2

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\xampp\htdocs\maple\top.php:7) in C:\xampp\htdocs\maple\config.php on line 2


Help please?

Fixed by Deleting
session_start(); form config.php but i have another problem! i login but then it says "You are not logged in yet!"
MDFK is online now  
Old 11-16-2008   #47 (permalink)
I <3 JY
 
SaintsIan's Avatar
 
Rank: Alpha Member
Join Date: Apr 2008
Location: In your closet.
Posts: 2,587
Blog Entries: 19
Thanked 103 Times in 63 Posts

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

P.S. this CMS is still not browser compatible, looks like minor changes, and what happen to those days where users find problem, post them at the real owner's thread and help them fix it up instead of making minor fixes and callign it their own CMS. And dammit, some mods deleted my post o.0
__________________

Aerosol Hostings (A Division of Aerosol Studios)
SaintsIan is offline  
Old 11-16-2008   #48 (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: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

Yeah I thank those mods for doing that. The real owner released this then closed and deleted his own thread. I'm re-releasing my own version of it so at least SOMETHING is out there. Look in the releases section; it says SkillMS CMS. Yeah, go to the thread and it says "he'll release it soon". It's been quiet a while now. Don't complain unless you know what you're complaining about.
PickleDude is offline  
Old 11-16-2008   #49 (permalink)
Average Member
 
-=DooMeR=-'s Avatar
 
Rank: Hobbit
Join Date: Jul 2005
Location: Singapore
Posts: 36
Thanked 0 Times in 0 Posts

Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

Great release, one of the most complete i've seen so far....

does this CMS account for pirate?
cos now pirate jobs are 510,500 ....
and gm are 910,900

if it does not, plz teach how to edit
__________________


10th squad captain-- ice dragon zanpakutou!
-=DooMeR=- is offline  
Old 11-16-2008   #50 (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: [release]PickleMSCMS - SinStory CMS Redone! -v1.0

Originally Posted by MDFK View Post
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\xampp\htdocs\maple\top.php:7) in C:\xampp\htdocs\maple\config.php on line 2

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\xampp\htdocs\maple\top.php:7) in C:\xampp\htdocs\maple\config.php on line 2


Help please?

Fixed by Deleting
session_start(); form config.php but i have another problem! i login but then it says "You are not logged in yet!"
Xampp is shit. Use wamp. Deleting session_start(); from config.php removes the capability of loggin in, as it won't be able to start a logged in session anymore and put a cookie on your computer. Please use common sense before deleting something.
PickleDude 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 268 269 270 271 272 273 274