| Author |
Message |
Hypnotiq
Beginner


Joined: Apr 21, 2005
Posts: 8
|
Posted:
Tue 26 Apr 2005 5:51 |
  |
Hi,
I just downloaded
JAG_Whos_Been_v1.0
JAG_Virus_v1.21_[6.5~7.0]
and i have got this error from both blocks from the admin
JAG_Whos_Been_v1.0
| Code: |
| Bad Q90:Unknown column 'radminency' in 'field list' |
JAG_Virus_v1.21_[6.5~7.0]
| Code: |
| Bad Q01:Unknown column 'radminency' in 'field list' |
Everything from the installed looked very good just when i went to admin and click on each block and got them errors however,
also i would like to add on the Whos Been install.txt
| Code: |
4) To record the information from everyone that visits the site we need to add some
code to the includes/my_header.php file. Open the includes/my_header.php file and place
the following code anywhere in between the <?PHP and ?> tags:
include("includes/my_header_JAG_Whos_Been.php"); |
there wasen't a file my_header.php so i have created one and added the codes to the file i hope that i did that right! and file was created includes/my_header.php with codes inside it
| Code: |
<?php
include("includes/my_header_JAG_Whos_Been.php");
?> |
There was a my_header_JAG_Whos_Been.php file
And i have added the above codes in that my_header_JAG_Whos_Been.php too.
I'm running PHP-Nuke-Platinum-7.6.0
Can you please help me! |
|
|
  |
 |
BlueLion
Administrator


Joined: Aug 21, 2004
Posts: 2834
|
Posted:
Tue 26 Apr 2005 5:57 |
  |
Both versions can't be run on PHP-Nuke Platinum">PNP 7.6. For the JAG Virus Alert there is a version for PHP-Nuke 7.6. You can find in it in the downloads.
BL |
|
|
    |
 |
Hypnotiq
Beginner


Joined: Apr 21, 2005
Posts: 8
|
Posted:
Tue 26 Apr 2005 6:14 |
  |
| BlueLion wrote: |
Both versions can't be run on PHP-Nuke Platinum">PNP 7.6. For the JAG Virus Alert there is a version for PHP-Nuke 7.6. You can find in it in the downloads.
BL |
Hi,
Thanks BL
so your saying i have to uninstall either one?
and i just looked in the download for the JAG Virus Alert thereis 1 files module.php where do i put that at? |
|
|
  |
 |
Hypnotiq
Beginner


Joined: Apr 21, 2005
Posts: 8
|
Posted:
Tue 26 Apr 2005 6:16 |
  |
btw all files that are in the download section are module.php? i mean where would they go there are no intall.txt for Noobs like me LOL |
|
|
  |
 |
BlueLion
Administrator


Joined: Aug 21, 2004
Posts: 2834
|
Posted:
Tue 26 Apr 2005 6:20 |
  |
I know there is a problem with my download section.
Check back in 30 minutes. Will setup my default downloads section.
BL |
|
|
    |
 |
Hypnotiq
Beginner


Joined: Apr 21, 2005
Posts: 8
|
Posted:
Tue 26 Apr 2005 6:24 |
  |
Ill be back 30 mins
Thanks allot
Ill have to see which mod i would like,
but if im not mistaken i saw on someone site i visited they had both running could that be possible?
not sure what nuke they was running!
You RAWK! |
|
|
  |
 |
Hypnotiq
Beginner


Joined: Apr 21, 2005
Posts: 8
|
Posted:
Tue 26 Apr 2005 16:47 |
  |
Hi, BL
Came back 30 mis 1 hr and now im back again when i try to dl the JAG Virus Alert it shows as module.psp
Ill check back later on
hope that get fixed!  |
|
|
  |
 |
BlueLion
Administrator


Joined: Aug 21, 2004
Posts: 2834
|
Posted:
Wed 27 Apr 2005 1:51 |
  |
I did reactivate the default Download section. Check the main menu.
BL |
|
|
    |
 |
Hypnotiq
Beginner


Joined: Apr 21, 2005
Posts: 8
|
Posted:
Wed 27 Apr 2005 3:00 |
  |
| BlueLion wrote: |
I did reactivate the default Download section. Check the main menu.
BL |
Thanks you BL
Ill get back with you when i installed this  |
|
|
  |
 |
nedkelly
Elite Support


Joined: Aug 23, 2004
Posts: 518
|
Posted:
Mon 23 May 2005 20:34 |
  |
BL is het mogelijk dat je dit even vertaald voor mij?
| Code: |
| Bad Q90:Unknown column 'radminency' in 'field list' |
en
| Code: |
| Bad Q01:Unknown column 'radminency' in 'field list' |
Beide foutmeldingen zijn te verhelpen door in het database in de tabel nuke_authors een nieuwe veld aan te maken:
genaamd: radminency
type: tinyint
Standaardwaarde: 0
null: nee
Bij de latere versie van phpnuke wordt dit veld niet meer aangemaakt. |
|
|
  |
 |
BlueLion
Administrator


Joined: Aug 21, 2004
Posts: 2834
|
Posted:
Tue 24 May 2005 1:41 |
  |
De foutmelding ontstaat doordat de routine die controleert of jij admin/GOD bent zoekt naar een veld radminency. Dit veld is met PHP-Nuke 7.5 verdwenen. Voor 7.6 en hoger is er een nieuwe versie beschikbaar. Maar, voor 7.5 zul je handmatig het volgende moeten wijzigen:
JAG Whos been:
[php:1:985b612bc5]$Q90 = "SELECT radminency, radminsuper
FROM ".$prefix."_authors
WHERE aid = '$aid'";
$R90 = $db -> sql_query($Q90) or die("Bad Q90:".mysql_error());
list($radminency, $radminsuper) = sql_fetch_row($R90);
if (($radminency==1) OR ($radminsuper==1))
{[/php:1:985b612bc5]
en JAG Virus Alert:
[php:1:985b612bc5]$Q01 = "SELECT radminency, radminsuper
FROM ".$prefix."_authors
WHERE aid = '$aid'";
$R01 = $db -> sql_query($Q01) or die("Bad Q01:".mysql_error());
list($radminency, $radminsuper) = sql_fetch_row($R01);
if (($radminency==1) OR ($radminsuper==1))
{[/php:1:985b612bc5]
in:
[php:1:985b612bc5]$aid = substr("$aid", 0,25);
$row = $db->sql_fetchrow($db->sql_query("SELECT radminsuper FROM " . $prefix . "_authors WHERE aid='$aid'"));
if ($row['radminsuper'] == 1) {[/php:1:985b612bc5]
BL |
|
|
    |
 |
nedkelly
Elite Support


Joined: Aug 23, 2004
Posts: 518
|
Posted:
Tue 24 May 2005 17:48 |
  |
Daar was ik ook al mee aan het stoeien geweest, maar kreeg dat niet voor elkaar. Vandaar mijn keuze voor het toevoegen van dat veld in mijn database.
Maar deze oplossing is een stuk netter. THX
ok Sorry for this, back in English again.  |
|
|
  |
 |
|
|
| Donaties
| Adverteren
|
|
Wilt u het forum steunen, dan kunt u nu eenvoudig doneren met PayPal.
|
|