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-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
qohnn is offline  

RaGEZONE sponsored advertisment:
Old 11-28-2008   #102 (permalink)
Victor
 
PixmaDragon's Avatar
 
Rank: Member +
Join Date: Apr 2008
Location: Planet Earth
Posts: 578
Blog Entries: 1
Thanked 0 Times in 0 Posts

Re: [Release]PickleMSCMS! -v1.0

website down?
__________________

PixmaDragon is offline  

Endorsement
Old 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???
Attached Thumbnails
[Release]PickleMSCMS! -v1.0-error.jpg  
honghoong is offline  

Endorsement

Old 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.
Attached Thumbnails
[Release]PickleMSCMS! -v1.0-error.jpg  
honghoong is offline  
Old 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.
honghoong is offline  
Old 11-28-2008   #106 (permalink)
Newbie
 
weizai's Avatar
 
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
weizai is offline  
Old 11-28-2008   #107 (permalink)
<(^^)><(^^)><(^^)>
 
Jasd123's Avatar
 
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?
Jasd123 is offline  
Old 11-29-2008   #108 (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! -v1.0

Originally Posted by honghoong View Post
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 View Post
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 View Post
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 View Post
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.
PickleDude is offline  
Old 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
alchemists01 is offline  
Old 12-04-2008   #110 (permalink)
Newbie
 
weizai's Avatar
 
Rank: Hobbit
Join Date: Sep 2008
Location: Malaysia
Posts: 21
Thanked 0 Times in 0 Posts

Talking 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;

weizai is offline  
Old 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)
buya is online now  
Old 12-05-2008   #112 (permalink)
Average Member
 
xGxNuGG3Tx's Avatar
 
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.
xGxNuGG3Tx is offline  
Old 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!
egypnboy is offline  
Old 12-06-2008   #114 (permalink)
Infraction Banned
 
~Justin~'s Avatar
 
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...
~Justin~ is offline  
Old 12-07-2008   #115 (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! -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~
PickleDude is offline  
Old 12-07-2008   #116 (permalink)
Infraction Banned
 
viinnh's Avatar
 
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
viinnh is offline  
Old 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 ??
gamerzbm is offline  
Old 12-08-2008   #118 (permalink)
~Simple~
 
ptkarnould's Avatar
 
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.
__________________
ptkarnould is offline  
Old 12-10-2008   #119 (permalink)
Lil Wayne Ftw
 
erick33321's Avatar
 
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...
__________________
erick33321 is offline  
Old 12-10-2008   #120 (permalink)
Alpha Member
 
josho192837's Avatar
 
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?
josho192837 is offline  
Old 12-10-2008   #121 (permalink)
Lil Wayne Ftw
 
erick33321's Avatar
 
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,,.
__________________
erick33321 is offline  
Old 12-10-2008   #122 (permalink)
Alpha Member
 
josho192837's Avatar
 
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?
josho192837 is offline  
Old 12-10-2008   #123 (permalink)
Lil Wayne Ftw
 
erick33321's Avatar
 
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
__________________
erick33321 is offline  
Old 12-10-2008   #124 (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! -v1.0

Originally Posted by erick33321 View Post
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.
PickleDude is offline  
Old 12-10-2008   #125 (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! -v1.0

Originally Posted by PickleDude View Post
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'
__________________
ProGamerForLife 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