RaGEZONE sponsored advertisment:
| | The free 3D side scrolling MMORPG. | |
11-28-2008
|
#101 (permalink)
| | Infraction Banned
Rank: Hobbit
Join Date: Aug 2008
Posts: 2
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
cool
|
| |
RaGEZONE sponsored advertisment:
11-28-2008
|
#102 (permalink)
| | Victor
Rank: Member + Join Date: Apr 2008 Location: Planet Earth
Posts: 578
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
website down?
|
| | 
Endorsement
11-28-2008
|
#103 (permalink)
| | Member
Rank: Hobbit
Join Date: Nov 2008
Posts: 13
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
how can i fix if i get this error???
|
| | 
Endorsement
11-28-2008
|
#104 (permalink)
| | Member
Rank: Hobbit
Join Date: Nov 2008
Posts: 13
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
once i create a profile name.
it give me this.
i have already insert all SQL you provide.
|
| |
11-28-2008
|
#105 (permalink)
| | Member
Rank: Hobbit
Join Date: Nov 2008
Posts: 13
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
other member cant login?
after login it said "You are not logged in yet!"
but i can login its work normally.
|
| |
11-28-2008
|
#106 (permalink)
| | Newbie
Rank: Hobbit
Join Date: Sep 2008 Location: Malaysia
Posts: 21
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
Are You all saying me ?? is your answer is " yes " look down ~~~
or you can dont see my post ~~~
haha~~~
something not have upload to my website yet ~~~
i will fix it ~~ ahahaha
|
| |
11-28-2008
|
#107 (permalink)
| | <(^^)><(^^)><(^^)>
Rank: Member + Join Date: May 2008 Location: Behind You.
Posts: 1,272
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
how come the demo doesn't work?
|
| |
11-29-2008
|
#108 (permalink)
| | Ultimate Member
Rank: Member
Join Date: Jul 2008 Location: Under your bed.
Posts: 167
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
|
Originally Posted by honghoong | |
how can i fix if i get this error???
| You didn't change the password in the config files to the one for the MySQL table.
|
Originally Posted by honghoong |
once i create a profile name.
it give me this. 
i have already insert all SQL you provide.
| You need to make a character in game and select it from the dropdown menu.
|
Originally Posted by honghoong |
other member cant login?
after login it said "You are not logged in yet!"
but i can login its work normally.
| In the config.php you took out "start_session();" from the top.
|
Originally Posted by Jasd123 | |
how come the demo doesn't work?
| The demo DOES work. It was just down for a day because I was fixing a security breach in our server. I'm sorry for the downtime.
|
| |
11-30-2008
|
#109 (permalink)
| | Newbie
Rank: Hobbit
Join Date: Jun 2008
Posts: 6
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
I have a few question, so my brothers each have a comp the server is on my computer we're using the same ip adress, in the house only I can access the Cms why? and also the website only works with my ip is there a way to chance it too like example www.picklems.com or something? and also how do I change teh "news" "event" etc etc
|
| |
12-04-2008
|
#110 (permalink)
| | Newbie
Rank: Hobbit
Join Date: Sep 2008 Location: Malaysia
Posts: 21
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
You Need To Change MySQL query to this ~~~
| | Quote: |
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_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_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 ;
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_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_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_profile` (
`id` INT( 10 ) NOT NULL AUTO_INCREMENT ,
`accountid` INT( 10 ) NOT NULL ,
`name` VARCHAR( 16 ) NOT NULL ,
`mainchar` TEXT NULL DEFAULT NULL ,
`realname` TEXT NULL DEFAULT NULL ,
`age` TEXT NULL DEFAULT NULL ,
`country` TEXT NULL DEFAULT NULL ,
`motto` TEXT NULL DEFAULT NULL ,
`favjob` TEXT NULL DEFAULT NULL ,
`text` TEXT NULL DEFAULT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM ;
ALTER TABLE `accounts` ADD `webadmin` INT( 1 ) DEFAULT '0';
ALTER TABLE `accounts` ADD `nick` TEXT NULL DEFAULT NULL;
ALTER TABLE `accounts` ADD `mute` INT( 1 ) DEFAULT '0';
ALTER TABLE `accounts` ADD `sitelogged` TEXT NULL DEFAULT NULL;
|   |
| |
12-04-2008
|
#111 (permalink)
| | Account Upgraded | Title Enabled!
Rank: Member + Join Date: Oct 2008
Posts: 706
Thanked 54 Times in 33 Posts
| Re: [Release]PickleMSCMS! -v1.0
hongkong dont triple post
(3 posts)
|
| |
12-05-2008
|
#112 (permalink)
| | Average Member
Rank: Hobbit
Join Date: Nov 2008 Location: California, USA
Posts: 48
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
download link dosent work..
__________________ NuggetMS is now shut down. It was a great server.  |
| |
12-06-2008
|
#113 (permalink)
| | RaGEZONER
Rank: Hobbit
Join Date: Sep 2008
Posts: 49
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
Are you even working on this?
__________________ Opening a New High Rate Maple Server!
L>For Coders! |
| |
12-06-2008
|
#114 (permalink)
| | Infraction Banned
Rank: Member + Join Date: Jul 2008 Location: Up Your Buttt And Around The Corner
Posts: 981
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
Nice CMS but the download link doesent work...
|
| |
12-07-2008
|
#115 (permalink)
| | Ultimate Member
Rank: Member
Join Date: Jul 2008 Location: Under your bed.
Posts: 167
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
I'm sorry guys. School has gotten in the way so I haven't had time to work on it that much. I've started working on it again, so it'll be released soon! The download link has been updated~
|
| |
12-07-2008
|
#116 (permalink)
| | Infraction Banned
Rank: Member + Join Date: Sep 2008 Location: Australia
Posts: 1,204
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
make it look dif this time.. the old one colour doesnt match that much except the bg and the bg of the scrolling messege
|
| |
12-08-2008
|
#117 (permalink)
| | Monster Member
Rank: Member
Join Date: Feb 2008
Posts: 198
Thanked 1 Time in 1 Post
| Re: [Release]PickleMSCMS! -v1.0
Hey y cnat i log in it says you are not log in .. i look what u said before but i didnt delete session_start(); from nywher and its still doesnt work mind helping me ??
|
| |
12-08-2008
|
#118 (permalink)
| | ~Simple~
Rank: Member + Join Date: Jun 2008 Location: Canada
Posts: 278
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
No offense but this doesn't look good at all. The text is too squished together, it's also just a copy of a Photoshop layer style that I have seen, the background is just one colour and it's a bit boring in general.
Fix the text, change the colours or maybe just try again. Possibly functional but it's not very attractive.
|
| |
12-10-2008
|
#119 (permalink)
| | Lil Wayne Ftw
Rank: Member + Join Date: Jul 2008 Location: SinStory World
Posts: 441
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
Wow...u got my cms and addded few stuff.. i just came back and i see this... any ways i quit but why did u have to copy my cms...
|
| |
12-10-2008
|
#120 (permalink)
| | Alpha Member
Rank: Alpha Member Join Date: Apr 2008 Location: Pennsylvania, U
Posts: 1,839
Thanked 14 Times in 9 Posts
| Re: [Release]PickleMSCMS! -v1.0
Looks like sowhat functions. o.o
__________________ IAM NOT TROLLIN!
I AM JOSHO U SEE? |
| |
12-10-2008
|
#121 (permalink)
| | Lil Wayne Ftw
Rank: Member + Join Date: Jul 2008 Location: SinStory World
Posts: 441
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
yeah kindoff but this guy stole the whole cms... he just added alittle bit of stuff..
-------------edit---------------
hey pickle dont get stuff that isnt urs.. and i know all about the cms and u didnt add much to it,,.
|
| |
12-10-2008
|
#122 (permalink)
| | Alpha Member
Rank: Alpha Member Join Date: Apr 2008 Location: Pennsylvania, U
Posts: 1,839
Thanked 14 Times in 9 Posts
| Re: [Release]PickleMSCMS! -v1.0
I think, if you can't code your own functions, and make your own design...why make a CMS? All your basically doing is re designing a premade one and leeching things..it's not cool man..nt cool!
__________________ IAM NOT TROLLIN!
I AM JOSHO U SEE? |
| |
12-10-2008
|
#123 (permalink)
| | Lil Wayne Ftw
Rank: Member + Join Date: Jul 2008 Location: SinStory World
Posts: 441
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
dude i coded many things and i think the important of a cms is how it looks... all it needs is ranks registration and download... it doesnt need many stuff
|
| |
12-10-2008
|
#124 (permalink)
| | Ultimate Member
Rank: Member
Join Date: Jul 2008 Location: Under your bed.
Posts: 167
Thanked 0 Times in 0 Posts
| Re: [Release]PickleMSCMS! -v1.0
|
Originally Posted by erick33321 |
yeah kindoff but this guy stole the whole cms... he just added alittle bit of stuff..
-------------edit---------------
hey pickle dont get stuff that isnt urs.. and i know all about the cms and u didnt add much to it,,.
| I know I didn't add much to it, but I fixed the whole thing. I will repeat it again, as I said it in the orriginal post. Nothing in your CMS was coded correctly. This isn't leeching, this is re-releasing. I don't see any copyright that you put on it and said not to remove, eh?
To those of you that actually like the CMS, I'm currently working on a PM system for it.
|
| |
12-10-2008
|
#125 (permalink)
| | ♣ Heretic Source Dev ♣
Rank: Member + Join Date: Sep 2008 Location: iTouchMs
Posts: 1,090
Thanked 3 Times in 2 Posts
| Re: [Release]PickleMSCMS! -v1.0
|
Originally Posted by PickleDude |
I know I didn't add much to it, but I fixed the whole thing. I will repeat it again, as I said it in the orriginal post. Nothing in your CMS was coded correctly. This isn't leeching, this is re-releasing. I don't see any copyright that you put on it and said not to remove, eh?
To those of you that actually like the CMS, I'm currently working on a PM system for it.
| need any help?
ive always liked workin with ericks cms'
|
| |
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 | |