Clan Adverts

Sponsors

CT on Facebook

Latest Product

User Box

Anonymous
38.107.179.220
Nickname:

Password:

Security Code
Security Code
Type Security Code


PND Downloads Feed

Phpnuke Downloads
How to Delete or Reset yo...
How to Delete or Reset your PHPNuke Admin Account
Lost your admin password ?  Cant login to your admin account ? This s...
Back Online & Stuff
Back Online & Stuff
Look at us with our nifty website back up and running… Seriously...
How to edit the admins in...
How to edit the admins in the forums
Here is a way to make someone admin in your forums on your Evo site. I...
Demo Splash Screen
Demo Splash Screen
Ped @ Clan Themes has released a simple splash screen entrance hack. ...
Free Phpnuke Business The...
Free Phpnuke Business Theme 6
This is the 6th Business theme for Phpnuke that Clan Themes has releas...
Tricked Out Slider
Tricked Out Slider
We have seen some great new things come out of Tricked Out News and th...

Custom Work

PHP Nuke Custom Work

www.clanthemes.com :: View topic - Medal system error
Medal system error

11 Replies / 795 Views


Post new topic   Reply to topic  

   www.clanthemes.com Forum Index » Bugs/Issues

View previous topic :: View next topic


blindgunner
Reputation: 499.4 Add RepSubtract Rep
Local time: 2:13 PM

australia.gif

Noob
Noob

0.01 posts per day
Medals: 0

Joined: Jul 07, 2007
Last Visit: 02 Dec 2010
Posts: 12
Points: 3918 

Post Medal system error Posted: Mon Nov 29, 2010 1:47 pm

Shop Purchases:
Multiple Gamer Evo

Hello all i have installed the Club medal system for evo... dont ask for the page cuz i cant remember it :P

But i was installing it and i sucsesfully imported all the tables and imported all the files and edited the ones it said too

Code:
CREATE TABLE `nuke_bbmedal` (
  `medal_id` mediumint(8) UNSIGNED NOT NULL auto_increment,
  `cat_id` mediumint(8) UNSIGNED NOT NULL default '1',
  `medal_name` varchar(40) NOT NULL,
  `medal_description` varchar(255) NOT NULL,
  `medal_image` varchar(40) NULL,
  PRIMARY KEY  (`medal_id`)
);

CREATE TABLE `nuke_bbmedal_user` (
  `issue_id` mediumint(8) UNSIGNED NOT NULL auto_increment,
  `medal_id` mediumint(8) UNSIGNED NOT NULL,
  `user_id` mediumint(8) UNSIGNED NOT NULL,
  `issue_reason` varchar(255) NOT NULL,
  `issue_time` int(11) NOT NULL,
  PRIMARY KEY  (`issue_id`)
);

CREATE TABLE `nuke_bbmedal_mod` (
  `mod_id` mediumint(8) UNSIGNED NOT NULL auto_increment,
  `medal_id` mediumint(8) UNSIGNED NOT NULL,
  `user_id` mediumint(8) UNSIGNED NOT NULL,
  PRIMARY KEY  (`mod_id`)
);

CREATE TABLE `nuke_bbmedal_cat` (
  `cat_id` mediumint(8) UNSIGNED NOT NULL auto_increment,
  `cat_title` varchar(100) NOT NULL,
  `cat_order` mediumint(8) UNSIGNED NOT NULL default '0',
  PRIMARY KEY  (`cat_id`),
  KEY `cat_order` (`cat_order`)
);

INSERT INTO `nuke_bbconfig` VALUES ('allow_medal_dispaly', '0');
INSERT INTO `nuke_bbconfig` VALUES ('medal_display_row', '1');
INSERT INTO `nuke_bbconfig` VALUES ('medal_display_col', '1');
INSERT INTO `nuke_bbconfig` VALUES ('medal_display_width', '');
INSERT INTO `nuke_bbconfig` VALUES ('medal_display_height', '');
INSERT INTO `nuke_bbconfig` VALUES ('medal_display_order', '');
INSERT INTO `nuke_bbmedal_cat` VALUES ('1', 'Main', '10');


Now i get a error when i go to medal management in my forum admin

Code:
Couldn't obtain medal data

DEBUG MODE

SQL Error : 1146 Table 'wwwexit_nuke.MEDAL_TABLE' doesn't exist

SELECT * FROM MEDAL_TABLE ORDER BY medal_name

Line : 435
File : admin_medal.php


Any ideas on what this is and how i can fix?

My website is www.exitwoundz.com btw

Cheers

Preacher
 

 
View user's profileSend private message Reply with quote

DreAdeDcoRpSE
Reputation: 2572.3 Add RepSubtract Rep
votes: 28
Local time: 11:13 PM
Location: Back of your Mind
usa.gif

Site Admin
Site Admin

1.36 posts per day
Medals: 3 (View more...)
Super Dedicated User (Amount: 1)
Forums Moderator
Forums Moderator
Joined: Sep 22, 2007
Last Visit: 26 May 2012
Posts: 2331
Points: 136112 

Post Re: Medal system error Posted: Mon Nov 29, 2010 5:48 pm

Shop Purchases:
Enemy Territory Theme (Aviator) for PHP Nuke · Clan Roster 2.0 ·  · Modern Warfare 3 Xtreme Theme

I have a feeling that you might of skiped a step in installing it, might of missed the whole files, but try this.

public_html/includes/constants.php

Code:
#
#-----[ FIND ]------------------------------------------
#
define('POST_GROUPS_URL', 'g');

#
#-----[ AFTER, ADD ]------------------------------------------
#
/*****[BEGIN]******************************************
 [ Mod:     Medal System                       v0.4.5 ]
 ******************************************************/
define('POST_MEDAL_URL', 'm');
define('MEDAL_CAT_URL', 'mc');
/*****[END]********************************************
 [ Mod:     Medal System                       v0.4.5 ]
 ******************************************************/

#
#-----[ FIND ]------------------------------------------
#
define('PAGE_GROUPCP', -11);

#
#-----[ AFTER, ADD ]------------------------------------------
#
/*****[BEGIN]******************************************
 [ Mod:     Medal System                       v0.4.5 ]
 ******************************************************/
define('PAGE_MEDALS', -2115);
/*****[END]********************************************
 [ Mod:     Medal System                       v0.4.5 ]
 ******************************************************/

#
#-----[ FIND ]------------------------------------------
#
define('GROUPS_TABLE', $prefix.'_bbgroups');

#
#-----[ AFTER, ADD ]------------------------------------------
#
/*****[BEGIN]******************************************
 [ Mod:     Medal System                       v0.4.5 ]
 ******************************************************/
define('MEDAL_TABLE', $prefix.'_bbmedal');
define('MEDAL_MOD_TABLE', $prefix.'_bbmedal_mod');
define('MEDAL_USER_TABLE', $prefix.'_bbmedal_user');
define('MEDAL_CAT_TABLE', $prefix.'_bbmedal_cat');
/*****[END]********************************************
 [ Mod:     Medal System                       v0.4.5 ]
 ******************************************************/


Make sure those edits are done, especially the last edits there. If those are done, then make sure you ran the SQL.

Your other post is here. we don't need to have 2 threads for this.
 

 
View user's profileSend private messageVisit poster's website Reply with quote

blindgunner
Reputation: 499.4 Add RepSubtract Rep
Local time: 2:13 PM

australia.gif

Noob
Noob

0.01 posts per day
Medals: 0

Joined: Jul 07, 2007
Last Visit: 02 Dec 2010
Posts: 12
Points: 3918 

Post Medal system error Posted: Mon Nov 29, 2010 11:08 pm

Shop Purchases:
Multiple Gamer Evo

Ok i seemed to be able to get into medal admin now but when i go to management and click add medal the screen just like refreshes and stays on same page

Im not sure what i have done wrong.
 

 
View user's profileSend private message Reply with quote


DreAdeDcoRpSE
Reputation: 2572.3 Add RepSubtract Rep
votes: 28
Local time: 11:13 PM
Location: Back of your Mind
usa.gif

Site Admin
Site Admin

1.36 posts per day
Medals: 3 (View more...)
Super Dedicated User (Amount: 1)
Forums Moderator
Forums Moderator
Joined: Sep 22, 2007
Last Visit: 26 May 2012
Posts: 2331
Points: 136112 

Post Re: Medal system error Posted: Mon Nov 29, 2010 11:44 pm

Shop Purchases:
Enemy Territory Theme (Aviator) for PHP Nuke · Clan Roster 2.0 ·  · Modern Warfare 3 Xtreme Theme

I have a feeling that you need to reinstall it, and make sure you do all the edits. also make sure the tables are there.
 

 
View user's profileSend private messageVisit poster's website Reply with quote

blindgunner
Reputation: 499.4 Add RepSubtract Rep
Local time: 2:13 PM

australia.gif

Noob
Noob

0.01 posts per day
Medals: 0

Joined: Jul 07, 2007
Last Visit: 02 Dec 2010
Posts: 12
Points: 3918 

Post Re: Medal system error Posted: Tue Nov 30, 2010 1:25 am

Shop Purchases:
Multiple Gamer Evo

I cant seem to figure it out i am just adding the medals manualy and it doesnt bother me... Only problem is now the medals wont show on posts but they show fine when added in the profile as you can see in my profile

http://www.exitwoundz.com/modules.php?name=Profile&mode=viewprofile&u=4

but you cant see next to posts

http://www.exitwoundz.com/modules.php?name=Forums&file=viewtopic&t=29
 

 
View user's profileSend private message Reply with quote

DreAdeDcoRpSE
Reputation: 2572.3 Add RepSubtract Rep
votes: 28
Local time: 11:13 PM
Location: Back of your Mind
usa.gif

Site Admin
Site Admin

1.36 posts per day
Medals: 3 (View more...)
Site Supporter (Amount: 1)
Forums Moderator
Forums Moderator
Joined: Sep 22, 2007
Last Visit: 26 May 2012
Posts: 2331
Points: 136112 

Post Re: Medal system error Posted: Tue Nov 30, 2010 3:01 am

Shop Purchases:
Enemy Territory Theme (Aviator) for PHP Nuke · Clan Roster 2.0 ·  · Modern Warfare 3 Xtreme Theme

I remember when I installed this on my friends site a while back ago, I had this problem, but I don't remember what I did to get it working, as you can see here.

http://www.midwestcoinandrelichunters.com/modules.php?name=Profile&mode=viewprofile&u=2

http://www.midwestcoinandrelichunters.com/modules.php?name=Forums&file=viewtopic&p=101#101

The edits were a pain, and the mod is really out dated. As for the admin side, we never had that issues if I remember correctly, so i am guessing that the error is how you installed it. You have to have an error in your uploading, or doing the edits. But not showing up in people post, that was an error in the coding. I should be talking to him in the next few days, I will PM him and see if I can see the source, of if he can write up the edits.
 

 
View user's profileSend private messageVisit poster's website Reply with quote


blindgunner
Reputation: 499.4 Add RepSubtract Rep
Local time: 2:13 PM

australia.gif

Noob
Noob

0.01 posts per day
Medals: 0

Joined: Jul 07, 2007
Last Visit: 02 Dec 2010
Posts: 12
Points: 3918 

Post Re: Medal system error Posted: Tue Nov 30, 2010 6:15 am

Shop Purchases:
Multiple Gamer Evo

Yeh i seem to go to from issue to issue now... I have fixed my adding medal problem but now i am unable to add medals to the users when i go to the page im supposed to to add a member nothing shows up

http://www.exitwoundz.com/modules.php?name=Forums&file=medals

Any ideas?
 

 
View user's profileSend private message Reply with quote

DreAdeDcoRpSE
Reputation: 2572.3 Add RepSubtract Rep
votes: 28
Local time: 11:13 PM
Location: Back of your Mind
usa.gif

Site Admin
Site Admin

1.36 posts per day
Medals: 3 (View more...)
Site Supporter (Amount: 1)
Forums Moderator
Forums Moderator
Joined: Sep 22, 2007
Last Visit: 26 May 2012
Posts: 2331
Points: 136112 

Post Re: Medal system error Posted: Tue Nov 30, 2010 11:11 am

Shop Purchases:
Enemy Territory Theme (Aviator) for PHP Nuke · Clan Roster 2.0 ·  · Modern Warfare 3 Xtreme Theme

The whole mod if I remember was a pain. That's why I did not install it on my site. I just use the clan roster for all the medals in the forums, along with the clan tags.
 

 
View user's profileSend private messageVisit poster's website Reply with quote

Slaine
Reputation: 0.4 Add RepSubtract Rep
Local time: 4:13 AM


Noob
Noob

0.02 posts per day
Medals: 0

Joined: Sep 05, 2011
Last Visit: 02 Oct 2011
Posts: 4
Points: 124 

Post Re: Medal system error Posted: Sat Oct 01, 2011 1:13 pm

Hi I am interested very much in this module, but would it work with phpnuke 8.0 ?
 

 
View user's profileSend private message Reply with quote


DreAdeDcoRpSE
Reputation: 2572.3 Add RepSubtract Rep
votes: 28
Local time: 11:13 PM
Location: Back of your Mind
usa.gif

Site Admin
Site Admin

1.36 posts per day
Medals: 3 (View more...)
Super Dedicated User (Amount: 1)
Forums Moderator
Forums Moderator
Joined: Sep 22, 2007
Last Visit: 26 May 2012
Posts: 2331
Points: 136112 

Post Re: Medal system error Posted: Sat Oct 01, 2011 2:20 pm

Shop Purchases:
Enemy Territory Theme (Aviator) for PHP Nuke · Clan Roster 2.0 ·  · Modern Warfare 3 Xtreme Theme

the medal mod. It might, but the only one I worked with was for Evo so I can't say if it will work on Nuke 8.0. It might, but as I am saying, if your somewhat new to coding, this mod may be to difficult. I know I had some problems when I installed it on my buddies site. If you have the clan roster, adding the medals and the ranks is easier then this mod.
 

 
View user's profileSend private messageVisit poster's website Reply with quote

Slaine
Reputation: 0.4 Add RepSubtract Rep
Local time: 4:13 AM


Noob
Noob

0.02 posts per day
Medals: 0

Joined: Sep 05, 2011
Last Visit: 02 Oct 2011
Posts: 4
Points: 124 

Post Re: Medal system error Posted: Sat Oct 01, 2011 3:25 pm

DreAdeDcoRpSE wrote:
the medal mod. It might, but the only one I worked with was for Evo so I can't say if it will work on Nuke 8.0. It might, but as I am saying, if your somewhat new to coding, this mod may be to difficult. I know I had some problems when I installed it on my buddies site. If you have the clan roster, adding the medals and the ranks is easier then this mod.


hmm I wonder if I can change my site from Phpnuke to evo without losing a ton of info and the forums
 

 
View user's profileSend private message Reply with quote

DreAdeDcoRpSE
Reputation: 2572.3 Add RepSubtract Rep
votes: 28
Local time: 11:13 PM
Location: Back of your Mind
usa.gif

Site Admin
Site Admin

1.36 posts per day
Medals: 3 (View more...)
Site Supporter (Amount: 1)
Forums Moderator
Forums Moderator
Joined: Sep 22, 2007
Last Visit: 26 May 2012
Posts: 2331
Points: 136112 

Post Re: Medal system error Posted: Sat Oct 01, 2011 10:18 pm

Shop Purchases:
Enemy Territory Theme (Aviator) for PHP Nuke · Clan Roster 2.0 ·  · Modern Warfare 3 Xtreme Theme

converting is tricky and you will loose all your modules and blocks. Only think you should be able to save is the forums and the user accounts. Overall all, there should be a medal module that should work, if you can find this one, it may work for the forums differences in theory is about the same, its just you will have to "use common sense", so to say when you install it. Though codes will not match 100%, they may be similar and its one of those things where you have to basically figure out. When I installed the medal mod on my buddies site, it did not work the way they scripted it. I spend half a day tweaking it so it worked right.

Overall, for my site, I just used the clan roster and used it to put the medals. It was so much easier then that medal mod.
 

 
View user's profileSend private messageVisit poster's website Reply with quote

Post new topic   Reply to topic  
   www.clanthemes.com Forum Index » Bugs/Issues


 
11 Replies / 795 Views
Page 1 of 1
All times are GMT
Display posts from previous:   
 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum