| Author |
Message |
Cyric
Sergeant


Joined: Oct 08, 2004
Posts: 94
|
Posted:
Wed Oct 20, 2004 6:08 pm |
  |
Hello, I uploaded nuke sentinel to my website, and made all the changes to the files according to the readme. I went to nsnst.php in my browser, but it shows a blank white page. I went back to my site, now all my pages blank. I am running a backup of my website for the time being, if anyone could help I would be grateful. |
_________________ registered linux user #368651 |
|
    |
 |
HalJordan
Support Staff


Joined: Aug 07, 2004
Posts: 1117
Location: Somewhere around Hunan, China
|
Posted:
Wed Oct 20, 2004 6:54 pm |
  |
|
      |
 |
Cyric
Sergeant


Joined: Oct 08, 2004
Posts: 94
|
Posted:
Wed Oct 20, 2004 7:12 pm |
  |
I was already logged in as admin when I uploaded everything, so no, I didnt go to admin.php first. |
_________________ registered linux user #368651 |
|
    |
 |
HalJordan
Support Staff


Joined: Aug 07, 2004
Posts: 1117
Location: Somewhere around Hunan, China
|
Posted:
Wed Oct 20, 2004 7:52 pm |
  |
|
      |
 |
m1ck97
Nuke Cadet


Joined: Dec 27, 2004
Posts: 4
Location: Lancashire (UK)
|
Posted:
Wed Dec 29, 2004 3:46 pm |
  |
i'm getting the same screen when i try to install the error,
Its fine putting all the files but once i stick the code:
| Code: |
<?php
if ($forum_admin == 1) {
include("../../../includes/sentinel.php");
} elseif ($inside_mod == 1) {
include("../../includes/sentinel.php");
} else {
include("includes/sentinel.php");
} |
into the config.php - i refresh the screen and it just goes blank!
I also have protector installed could this be clashing?? if so how do i delete/ uninstall protector? |
|
|
     |
 |
HalJordan
Support Staff


Joined: Aug 07, 2004
Posts: 1117
Location: Somewhere around Hunan, China
|
Posted:
Wed Dec 29, 2004 9:04 pm |
  |
First of all, that chunk of code goes into mainfile.php, not config.php.
As for Protector, it could possibly be creating the problem, although I know sites that use both. Protector comes with its own uninstaller script and instructions -- you upload the installer script into your root directory, and run it from your browser. Choose the uninstall option and it will clear out the tables relating to Protector. Read the installation instructions to see which files to remove manually.
Try fixing config.php and mainfile.php first and see what happens. |
_________________ Obedezco, pero no cumplo.
Proprietor, www.computernewbie.info
Support staff, www.nukecops.com |
|
      |
 |
Capt-Kirk
Nuke Cadet


Joined: Apr 28, 2005
Posts: 1
|
Posted:
Thu Apr 28, 2005 11:36 am |
  |
I am having a bit of trouble with Sentinel my self
I have it installed but when i put that code above in the mainfile.php the your account stuff breaks and no one can log in.
I am running PHP Nuke 7.6 patched 2.9 Last Visit and Sentinal pl4
any ideas? I looked at the your account fix but it doesnt apply to my version and the entries I am to replace arent there as written in the fix. |
|
|
   |
 |
Gypsy
Sergeant


Joined: Nov 09, 2003
Posts: 89
|
Posted:
Tue May 17, 2005 5:32 am |
  |
I get the white page just for the forum admin. Everything else appears to be working okay . I'm using nuke 7.5. Assistance greatly appreciated. I've tried changing the suggested code from Jaded Designs, but its still... blank. |
_________________
cReatE iT. PlaY iT. |
|
    |
 |
PrimalFear
Sergeant


Joined: Mar 13, 2003
Posts: 129
|
Posted:
Tue May 17, 2005 11:28 am |
  |
|
   |
 |
Gypsy
Sergeant


Joined: Nov 09, 2003
Posts: 89
|
Posted:
Mon May 30, 2005 5:07 am |
  |
I haven't checked the link above yet... but I worked out my problem
For a start I have my config located outside of my web space so I had to make sure that I was properly referencing the config file in the nuksentinal.php file in the includes directory. (Line 29)
Once that was correctly pointing to the config it then showed a few errors appearing in the common.php file in the forum module directory.
So I went there and looked at the coding. What I discovered was line 181 and line 182 were not showing the same code as elsewhere. Had to change this from:
global $forum_admin;
if ($forum_admin == 1) {
to:
global $FORUM_ADMIN;
if (FORUM_ADMIN == 1) {
And now I no longer have a white screen when I try to access the forum admin! It works for me. I'm not a hardcore coder and I don't have much of an idea of what I did or if it was "correct". But it works.... so it has to be at least half right. |
_________________
cReatE iT. PlaY iT. |
|
    |
 |
|
|