Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Ravens PHP Scripts And Web Hosting Forum Index -> phpnuke 7.6
Author Message
badkemo
Worker
Worker



Joined: Mar 31, 2004
Posts: 111

PostPosted: Tue Oct 04, 2005 7:23 am Reply with quote

Hi have you ever had a problem if you wanted to add an ADMIN it wouldnt work? when I try to create a new admin and fill the required fields and type in the password and than hit add admin a blank page would show up with nothing on it

ofcourse the new admin is not added to the list

any solutions for this problem?

thank you
 
View user's profile Send private message
64bitguy
The Mouse Is Extension Of Arm



Joined: Mar 06, 2004
Posts: 1164

PostPosted: Wed Oct 05, 2005 1:14 am Reply with quote

Please provide some basic information when posting support requests.

To begin:
What version of PHP-Nuke?
What level of "Patched"?

If you have not updated your level of patched, I would suggest that you do that to resolve this issue.

_________________
Steph Benoit
100% Section 508 and W3C HTML5 and CSS Compliant (Truly) Code, because I love compliance. 
View user's profile Send private message
badkemo







PostPosted: Wed Oct 05, 2005 11:54 am Reply with quote

I got phpnuke 7.6 along with pach 3.1 nukesenitel and protector all fresh installed no new updateds found
 
64bitguy







PostPosted: Wed Oct 05, 2005 11:59 am Reply with quote

The problem is most likely caused by your installation of Protector in installing the radminblocker extra field.

Go back through the installation procedures for protector and be sure add the appropriate changes to the admin.php file as well as all other files as indicated.
 
badkemo







PostPosted: Wed Oct 05, 2005 3:56 pm Reply with quote

ok i will try again Smile thank you
 
badkemo







PostPosted: Wed Oct 05, 2005 4:04 pm Reply with quote

well im trying to edit admin.php and this is what it says

(open admin.php)
Find on line 157 (it's under the function GraphicAdmin())
Code:


$sql = "SELECT radminarticle,radmintopic,radminuser,radminsurvey,radminsection,radminlink,radminephem,radminfaq,radmindownload,
radminreviews,radminnewsletter,radminforum,radmincontent,radminency,radminsuper FROM ".$prefix."_authors WHERE aid='$aid'";

-------------------
Replace with:
Code:


$sql = "SELECT radminarticle,radmintopic,radminuser,radminsurvey,radminsection,radminlink,radminephem,radminfaq,radmindownload,
radminreviews,radminnewsletter,radminforum,radmincontent,radminency,radminsuper,radminblocker FROM ".$prefix."_authors WHERE aid='$aid'";

-------------------


I'm not able to find that code anywhere in admin.php

this is what i have on line 157

global $gfx_chk, $admin_file;

that is my line on 157 on admin.php

I also tryed programs wich can find hiden textures but it's not working the code is nowhere to be found

NOTE: Edited by 64bitguy to encapsulate code in proper "code" function.
 
64bitguy







PostPosted: Wed Oct 05, 2005 10:07 pm Reply with quote

Well, you've got to keep in mind, Protector is a dead solution in that it is no longer maintained (in fact its home domain hasn't existed in many months) and thus the installation information is no longer valid.

If you want to keep using it, here's what you do.

Open admin.php and find (in the function graphicadmin section:
Code:
    $row = $db->sql_fetchrow($db->sql_query("SELECT radminsuper FROM ".$prefix."_authors WHERE aid='$aid'"));

    $radminsuper = intval($row['radminsuper']);
   if ($radminsuper == 1) {


And REPLACE that code with:
Code:
    $row = $db->sql_fetchrow($db->sql_query("SELECT radminsuper,radminblocker FROM ".$prefix."_authors WHERE aid='$aid'"));

    $radminsuper = intval($row['radminsuper']);
    $radminblocker = intval($row['radminblocker']);
    if ($radminsuper == 1 or $radminblocker == 1) {


That should fix your problem for that section.

Steph
 
badkemo







PostPosted: Wed Oct 05, 2005 10:51 pm Reply with quote

ok now i got this problem when I klick on add author this comes up and a blan page


Column count doesn't match value count at row 1
 
64bitguy







PostPosted: Wed Oct 05, 2005 11:27 pm Reply with quote

Right, that is a missing $radminblocker variable. I'm assuming you didn't fix another section OR you are missing that field from your authors table.

Again, you need to follow ALL of the Protector installation instructions.
 
badkemo







PostPosted: Wed Oct 05, 2005 11:28 pm Reply with quote

how can i fiux that now?
 
64bitguy







PostPosted: Wed Oct 05, 2005 11:34 pm Reply with quote

Have you tried following the rest of the file modification instructions?
 
badkemo







PostPosted: Wed Oct 05, 2005 11:36 pm Reply with quote

yes the rest of the instructions tells me to upload authors.php into admin/modules

and edit it and when i edit it it shows me that messege if i undo the edit a blank page will apear like before
 
64bitguy







PostPosted: Wed Oct 05, 2005 11:42 pm Reply with quote

Well, at this point, I can only assume that you made a mistake in the editing of the files or they are corrupt. Use the "Patched" authors.php (and the admin.php that you've already been working on, that I also assume is from patched) and if you haven't already done it, in your admin.php file find:

Code:
$db->sql_query("INSERT INTO ".$prefix."_authors VALUES ('$name', '$the_adm', '$url', '$email', '$pwd', '0', '1', '')");


Replace with:
Code:
$db->sql_query("INSERT INTO ".$prefix."_authors (aid, name, url, email, pwd, counter, radminsuper, admlanguage, radminblocker) VALUES ('$name', '$the_adm', '$url', '$email', '$pwd', '0', '1', '', '')");


In your /admin/modules/authors.php (from patched 3.1) near the bottom of the file just before the "case "deladmin":" call, find::
Code:
$result = $db->sql_query("insert into " . $prefix . "_authors values ('$add_aid', '$add_name', '$add_url', '$add_email', '$add_pwd', '0', '$add_radminsuper', '$add_admlanguage')");


Replace with:
Code:
$result = $db->sql_query("insert into " . $prefix . "_authors values ('$add_aid', '$add_name', '$add_url', '$add_email', '$add_pwd', '0', '$add_radminsuper', '$add_admlanguage','')");


That should start you down the road. Keep in mind, if you haven't made the other file changes, you are simply consuming resources and not actually protecting your site. You need to make ALL of the modifications in order for Protector to do anything.
 
badkemo







PostPosted: Wed Oct 05, 2005 11:48 pm Reply with quote

it works now thank you very much for helping me resolve this issue.

I appriciate your help and if there is something i can do for you just let me know
 
Display posts from previous:       
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Ravens PHP Scripts And Web Hosting Forum Index -> phpnuke 7.6

View next topic
View previous topic
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 can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©