RaGEZONE sponsored advertisment:
| | The free 3D side scrolling MMORPG. | |
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?
|
| |
RaGEZONE sponsored advertisment:
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
|
| | 
Endorsement
11-15-2008
|
#28 (permalink)
| | Ultimate Member
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
|
| | 
Endorsement
11-15-2008
|
#29 (permalink)
| | What
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 |
| |
11-15-2008
|
#30 (permalink)
| | Account Upgraded | Title Enabled!
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!
|
| |
11-15-2008
|
#31 (permalink)
| | Ultimate Member
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 :)
|
| |
11-15-2008
|
#32 (permalink)
| | Я Люблю Вас
Rank: Alpha Member Join Date: Nov 2008 Location: Downtown
Posts: 1,919
Thanked 0 Times in 0 Posts
| Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
Nice :D
|
| |
11-15-2008
|
#33 (permalink)
| | Ultimate Member
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?
|
| |
11-15-2008
|
#34 (permalink)
| | I AM 10 AND WAT IS THIS?
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 |
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 | |
I stopped reading when you said Moogra helped.
| |
| |
11-16-2008
|
#35 (permalink)
| | Ultimate Member
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.
|
| |
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...
|
| |
11-16-2008
|
#37 (permalink)
| | Member
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..
|
| |
11-16-2008
|
#38 (permalink)
| | Kuchiki Byakuya
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
|
| |
11-16-2008
|
#39 (permalink)
| | ♣ Heretic Source Dev ♣
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
|
| |
11-16-2008
|
#40 (permalink)
| | [ Sizz'em Out ]
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
|
| |
11-16-2008
|
#41 (permalink)
| | ♣ Heretic Source Dev ♣
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
|
| |
11-16-2008
|
#42 (permalink)
| | AzuraStory
Rank: Member + Join Date: Apr 2008 Location: public boolean isSingapore { return true; }
Posts: 575
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] |
| |
11-16-2008
|
#43 (permalink)
| | The Omega
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.=)
|
| |
11-16-2008
|
#44 (permalink)
| | Ultimate Member
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 :)
|
| |
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..
|
| |
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!"
|
| |
11-16-2008
|
#47 (permalink)
| | I <3 JY
Rank: Alpha Member Join Date: Apr 2008 Location: In your closet.
Posts: 2,587
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) |
| |
11-16-2008
|
#48 (permalink)
| | Ultimate Member
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.
|
| |
11-16-2008
|
#49 (permalink)
| | Average Member
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! |
| |
11-16-2008
|
#50 (permalink)
| | Ultimate Member
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 |
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.
|
| |
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 | |