-
[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 :thumbup: 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 :ott:
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.
-
Re: SinStory CMS Redone! -v1.0
Quote:
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 :thumbup:
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 :ott:
Here's an idea, put this cms on a svn
-
Re: SinStory CMS Redone! -v1.0
I was already working on that, and thanks!
-
Re: SinStory CMS Redone! -v1.0
-
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!
-
Re: SinStory CMS Redone! -v1.0
-
Re: SinStory CMS Redone! -v1.0
Yeah, I'm ben... do I know you?
-
Re: SinStory CMS Redone! -v1.0
Yes, thats Ben the Admin of PickleMS and Im Benny, a GM in PickleMs....Why you ask?
-
Re: SinStory CMS Redone! -v1.0
-
Re: SinStory CMS Redone! -v1.0
-
Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Lol. posted at the same time..lol...I could tell by the picture.
-
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 :)
-
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
-
Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Wow. Noob? You cant program.......
-
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>
-
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
-
Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Yes, what he said.....Benny is a genuis? =D
-
Re: PickleMSCMS - SinStory CMS Redone! -v1.0
LOL, on website o_o i can only XMLWZ, and other, JAVA, and yeah o-o
-
Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Oops...Ben* is a genuis?O.o
-
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
-
Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Yeah, "your" CMS rocks! =D
-
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...
-
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!
-
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
-
Re: PickleMSCMS - SinStory CMS Redone! -v1.0
Quote:
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?
-
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?
-
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
-
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
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
-
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 :)
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
Thank you Markii. Doesn't anyone have any ideas for the next release?
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
Quote:
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 :thumbup:
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 :ott:
./end thread
there is no point in this release, it's so easy to do this..
/flame
-
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.
-
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...
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
lol ye i remember ericks Sinstory CMS
but nice release and gj looks nice
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
-
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
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
xrave's cms is horrible.=)
-
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 :)
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
Hmm...I just found this CMS buried under all these files in my computer....
http://i370.photobucket.com/albums/o...SCMS-erick.jpg
Edit: Dont ask for it...I deleted it from my computer..
-
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!"
-
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
-
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.
-
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
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
Quote:
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.
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
Quote:
Originally Posted by
-=DooMeR=-
Great release, one of the most complete i've seen so far....
Perfect example to all of you complainers, not mentioning any name *cough* SAINT. Try to find another CMS with all of the options that this one has. If your pissed, deal with it, but don't tell me because I really don't care.
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
does this account for pirate jobs?
cos now gm are 910,900
while pirates are 500,510
it would be great if your next release accounts for pirates( or at the very least fix the gm job id part)
-
Re: [release]PickleMSCMS - SinStory CMS Redone! -v1.0
Oh I'm sorry. I forgot to add that this is a v55 CMS.
-
Re: [Release]PickleMSCMS! -v1.0
-
Re: [Release]PickleMSCMS! -v1.0
Can you add a blank logo the one at the top of the page? and can you tell me how you did that font on the logo!
-
Re: [Release]PickleMSCMS! -v1.0
In photoshop CS3:
Radial Gradient: Dark blue/gray to almost blackish gray
Make a seperate layer for each letter in Arial Black font.
Set each font layer to 70% Opacity.
Put on a gradient overlay from dark gray on the top to black on the bottom for each font layer
Put on a color overlay with the color of your choice on each layer at 25% opacity.
Done.
Thanks for the blank logo idea. I'll be sure to use it in the next release.
-
Re: [Release]PickleMSCMS! -v1.0
Credits have been givin and added ideas for the next release to the main post.
-
Re: [Release]PickleMSCMS! -v1.0
I couldnt create it LOL can you please add a blank one that looks the same or add the one that was saved with layer?
I would appreciate it so much!
-
Re: [Release]PickleMSCMS! -v1.0
its a nice release but umm for this kind of cms "skillms based" i always have a bug on homepage with a big white box blockin a quarter of it or the control panel that is meant to be on the right is on the left....
-
Re: [Release]PickleMSCMS! -v1.0
The CMS isn't compatible with internet explorer. Just use FireFox :)
-
Re: [Release]PickleMSCMS! -v1.0
-
Re: [Release]PickleMSCMS! -v1.0
i wanna use this for v60/v61 servers.....can teach how to edit the job id for gm?
i'm using s0wh4t CMS but the ranking to include avatar does not work T.T
-
Re: [Release]PickleMSCMS! -v1.0
First you need the image for the GM job and the character ranking files for v60+. Replace the ranking folder with the updated v60+ one and edit the main config file and the config file in the ranking folder. GL
-
Re: [Release]PickleMSCMS! -v1.0
Hi Ben. I might try to edit some stuff. Do you mind? I wont release it. Ill send it to you first. You can take the credits if I do make something. I have a few ideas and I know how to do it so I might send you something in like 2-3 days.
-
Re: [Release]PickleMSCMS! -v1.0
I love the layout :)
But i must say this about "that" in your website "gm blog"
Quote:
I have just contacted the FBI about this hacker that is threatening to shut down our server, and I'm waiting for a reply! I have high hopes for these guys to try to hunt hum down and throw his ass in jail. Again, as I said, I'm sorry for the downtime and it shouldn't happen anymore. His latest threat states that he'll shut down the server in about a month, so that gives the FBI some times to investigate. Please be patient! I'll update this every so often :)
Thats so bullshit :P i don't think the FBI want to hadle someone hacking a illigal server.
-
Re: [Release]PickleMSCMS! -v1.0
Private servers are NOT illegal?
-
Re: [Release]PickleMSCMS! -v1.0
Quote:
Originally Posted by
DeveloperBenny
Private servers are NOT illegal?
Private servers is not illigal but using maplestorys copyright image files..blablabla..~
is illigal :)
-
Re: [Release]PickleMSCMS! -v1.0
He wasn't hacking the private server =P. He was hacking the host. He hacked our MySQL Databases and got the GM password and made himself a GM. Maybe they don't care about the private server, but if someone can do this, they can do alot more than just that. So I hope you understand?
Quote:
I love the layout :)
Tyvm :)
Quote:
Private servers are NOT illegal?
Yeah but even though they are, the FBI has better things to do...
But yeah, there's an FBI office right down the street from where I live xD
BTW Azora, I love the programs that you make... I use your localhost editor whenever I need to make another one xD
-
Re: [Release]PickleMSCMS! -v1.0
I think it looks good
Nice job ^^
-
Re: [Release]PickleMSCMS! -v1.0
Can you please add a blank logo and just post it on here please? I would totally appreciate it!:thumbup::thumbup:
-
Re: [Release]PickleMSCMS! -v1.0
As I told you, I will be releasing a blank logo in the next release of the CMS.
-
Re: [Release]PickleMSCMS! -v1.0
Hmm it isn't really browser compatible
Remember to add the good' ole IE5/opera hack trick
I got this trick out of a old beginner Tutorial that i used, if anyone knows what one it is tell me so i can credit them
Code:
#Header {
font-size:24px;
margin:50px 0px 10px 0px;
padding:17px 0px 0px 20px;
/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
height:33px; /* 14px + 17px + 2px = 33px */
border-style:solid;
border-color:black;
border-width:1px 0px; /* top and bottom borders: 1px; left and right borders: 0px */
line-height:11px;
background-color:#eee;
/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity.
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it.
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style
declaration. The incorrect IE5/Win value is above, while the correct value is
below. See http://glish.com/css/hacks.asp for details. */
voice-family: "\"}\"";
voice-family:inherit;
height:14px; /* the correct height */
}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct
length values to user agents that exhibit the parsing error exploited above yet get
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#Header {height:14px;}
#Content {
margin:0px 210px 50px 10px;
padding:10px;
}
#Menu {
position:absolute;
top:100px;
right:20px;
width:172px;
padding:10px;
background-color:#eee;
border:1px dashed #999;
line-height:17px;
/* Again, the ugly brilliant hack. */
voice-family: "\"}\"";
voice-family:inherit;
width:150px;
}
/* Again, "be nice to Opera 5". */
body>#Menu {width:150px;}
.error {
color:#FF0033;
font-size:14px;
}
That basically makes it better for opera and IE ;D
In IE it cuts off the Login, so if you can, try and adapt that code to your CSS
if that does help you at alll
-
Re: [Release]PickleMSCMS! -v1.0
Quote:
Originally Posted by
keane6
Hmm it isn't really browser compatible
Remember to add the good' ole IE5/opera hack trick
I got this trick out of a old beginner Tutorial that i used, if anyone knows what one it is tell me so i can credit them
Code:
#Header {
font-size:24px;
margin:50px 0px 10px 0px;
padding:17px 0px 0px 20px;
/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
height:33px; /* 14px + 17px + 2px = 33px */
border-style:solid;
border-color:black;
border-width:1px 0px; /* top and bottom borders: 1px; left and right borders: 0px */
line-height:11px;
background-color:#eee;
/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity.
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it.
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style
declaration. The incorrect IE5/Win value is above, while the correct value is
below. See http://glish.com/css/hacks.asp for details. */
voice-family: "\"}\"";
voice-family:inherit;
height:14px; /* the correct height */
}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct
length values to user agents that exhibit the parsing error exploited above yet get
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#Header {height:14px;}
#Content {
margin:0px 210px 50px 10px;
padding:10px;
}
#Menu {
position:absolute;
top:100px;
right:20px;
width:172px;
padding:10px;
background-color:#eee;
border:1px dashed #999;
line-height:17px;
/* Again, the ugly brilliant hack. */
voice-family: "\"}\"";
voice-family:inherit;
width:150px;
}
/* Again, "be nice to Opera 5". */
body>#Menu {width:150px;}
.error {
color:#FF0033;
font-size:14px;
}
That basically makes it better for opera and IE ;D
In IE it cuts off the Login, so if you can, try and adapt that code to your CSS
if that does help you at alll
Read this
Quote:
Originally Posted by
PickleDude
The CMS isn't compatible with internet explorer. Just use FireFox :)
-
Re: [Release]PickleMSCMS! -v1.0
-
Re: [Release]PickleMSCMS! -v1.0
Thank you green :) However I will try to make it compatible with IE in the future.
-
Re: [Release]PickleMSCMS! -v1.0
dude.. you can't even log in this cms sucks -_-
all you did is copy --> paste from skillms cms?
-
Re: [Release]PickleMSCMS! -v1.0
I need help, I'm trying to run it from a domain and its not Working and just saying
"Cannot connect to MySQL database"
I ran it off wamp and got the actual explanation:
Warning: mysql_connect() [function.mysql-connect]: Host 'CPE-**HiddenI IP**.**Hidden ISP**' is not allowed to connect to this MySQL server in C:\wamp\www\config.php on line 9
Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in C:\wamp\www\config.php on line 10
Host 'CPE-**Hidden IP**.**Hidden ISP**'' is not allowed to connect to this MySQL server
How do i fix this?
Thanks.
EDIT:
I'm trying to connect to my Dedicated Server btw!
-
Re: [Release]PickleMSCMS! -v1.0
Just edit the need-to-be edited files....Also, he did NOT just copy and paste. Look at the original and look at this one. This one has less glitches and more options. He also added a map fixer thingy which will be released in the next release.
-
Re: [Release]PickleMSCMS! -v1.0
I've put everything in, It connects fine and i can register from running it from my computer but when running it of a Website i get MySQL error (4) Cannot connect to 'IP Here'.
How do i fix this?
-
Re: [Release]PickleMSCMS! -v1.0
-
Re: [Release]PickleMSCMS! -v1.0
Quote:
dude.. you can't even log in this cms sucks -_-
all you did is copy --> paste from skillms cms?
This shows how arrogant you bitches can really be. You didn't even try my CMS. You can't log into the original skillms cms. Read the details.
I FIXED GLITCHES. Don't bullshit me unless you're telling the truth, asshole.
@mikle: I don't think that your port 3306 is open on your server. Make sure that it is.
-
Re: [Release]PickleMSCMS! -v1.0
Nice CMS, but also kinda reminds me to sowhat and invoker CMS O.o
-
Re: [Release]PickleMSCMS! -v1.0
Quote:
Originally Posted by
RisingDreams
dude.. you can't even log in this cms sucks -_-
all you did is copy --> paste from skillms cms?
stfu nub, this cms is not bad and you can connect...
-
Re: [Release]PickleMSCMS! -v1.0
Thank you. At least some one understands.
-
Re: [Release]PickleMSCMS! -v1.0
Woo looks nice :D
Why does the content box end and the marquee text continue >
-
Re: [Release]PickleMSCMS! -v1.0
Quote:
Credits for the original CMS givin to erick33321.
How about giving proper credits to the real author(s)? >_>
And I'm talking about most of the scripts used on the website.
-
Re: [Release]PickleMSCMS! -v1.0
Quote:
Originally Posted by
Roamer
Woo looks nice :D
Why does the content box end and the marquee text continue >
It doesn't? What internet browser are you using? And thanks!
Quote:
Originally Posted by
Avenge
How about giving proper credits to the real author(s)? >_>
And I'm talking about most of the scripts used on the website.
Most people in this world remake the scripts for websites. I'm only giving credits to him for the design because he tried to remake them and in the process he fucked them up so badly that they didn't work. So really, I'm the one that made/fixed those scripts.
-
Re: [Release]PickleMSCMS! -v1.0
i love this cms its so cool but one tihng is weird could you fix a beter login to the webbsite ? cool cms :D
-
Re: [Release]PickleMSCMS! -v1.0
Quote:
Originally Posted by
PickleDude
It doesn't? What internet browser are you using? And thanks!
Most people in this world remake the scripts for websites. I'm only giving credits to him for the design because he tried to remake them and in the process he fucked them up so badly that they didn't work. So really, I'm the one that made/fixed those scripts.
Even if you edited/fixed the scripts, then they're still created by the original author of it, therefore you would still give credits. And most of what I see is the same.
-
Re: [Release]PickleMSCMS! -v1.0
Avenge, he did make quite some changes and your signature is so stupid. So of us here are religous? O.o
-
Re: [Release]PickleMSCMS! -v1.0
Quote:
Originally Posted by
PickleDude
It doesn't? What internet browser are you using? And thanks!
Most people in this world remake the scripts for websites. I'm only giving credits to him for the design because he tried to remake them and in the process he fucked them up so badly that they didn't work. So really, I'm the one that made/fixed those scripts.
Google chrome
-
Re: [Release]PickleMSCMS! -v1.0
Quote:
Originally Posted by
Roamer
Google chrome
I'm not sure if Google Chrome is compatible with this website source. I'm only certain about FireFox. I know that IE is a little messed up with it and Safari is completely screwed up =P I'm trying to make it compatible with all browsers but I'm having a little trouble because I suck at CSS... Maybe a little help would be nice? :/: Thanks!
-
Re: [Release]PickleMSCMS! -v1.0
Quote:
Originally Posted by
Avenge
Even if you edited/fixed the scripts, then they're still created by the original author of it, therefore you would still give credits. And most of what I see is the same.
Ok ok... just give me the names of the people and what script they made and I'll give credits -.-
-
Re: [Release]PickleMSCMS! -v1.0
Quote:
Originally Posted by
DeveloperBenny
Avenge, he did make quite some changes and your signature is so stupid. So of us here are religous? O.o
I don't really give a shit about what you think about my signature. That's the way it is.
Quote:
Originally Posted by
PickleDude
Ok ok... just give me the names of the people and what script they made and I'll give credits -.-
Alright~
I viewed the demo of your website, clicked around the pages, and what I see may or may not be the same, but IS based of the original source:
The news system - The view on the main page, comments, etc.
The event system - Same as above.
The registration. Same text, as I wrote when I coded it.
Quote:
The user has been succesfully added into the database! You can now log into the community and in-game!
Thank you for registering on PickleMS!
- PickleMS Staff
Set profile name, and most of the other content afterwards.
I'm not trying to convince you, that all of what is on your website is created by me. I know you have made many modifications, props to you for that! But I just want some credits, for what is based on my work.
- Stfu, you're not the author!
Oh, really?
http://forum.ragezone.com/f427/relea...-a-job-453688/
Read a few lines down.
I am not willing to give support. Credits for the user cp to Avenge
By "user cp", s0wh4t? meant everything you could do upon login, admin, GM rights, etc.
-
Re: [Release]PickleMSCMS! -v1.0
What a beautiful CMS, I have some trouble with it though I would like to change the scroll header but I can't seem to find out how and also I would like to change: "Welcome to the PickleMS website!
We just recently updated the character ranking page and the front page AND the guild page, so you may notice a few new differences!
Have fun playing!
Regards
Ben"
May you please guide me to how you change this?
-
Re: [Release]PickleMSCMS! -v1.0
Good Job but I think ill stick to the one I have
-
Re: [Release]PickleMSCMS! -v1.0
You can edit the body (the thing that says Welcome to the PickleMS website...ect...) near the login at the bottom in index.php. Just scroll down and look for it or use ctrl+f and search for some of the words and just edit it. ;D To edit the scrolling text near the links, open top.php and press ctrl+f and search marquee and you will find the text and you can edit it there.
-
Re: [Release]PickleMSCMS! -v1.0
Could Any Help Me I Always Get Unknown column 'sitelogged' in 'field list' When I Go On The Website
-
Re: [Release]PickleMSCMS! -v1.0
Hey Yo !! Nice CMS ~~~ ^,^
i Have Edit it to support v60 (but not got character avata)
Try See See ~~~
MysteryMS
and try see
Server Status Info
:laugh::laugh::laugh:
-
Re: [Release]PickleMSCMS! -v1.0
URL not found. Your offline. I wil check when you get online.