PHP Web Host - Quality Web Hosting For All PHP Applications Clan Themes! We make clans look good!!
  Login or Register
 • Home • Downloads • Your Account • Forums • 

View next topic
View previous topic


Google
 
Web RavenPHPScripts (This Site)
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.
Author Message
death_dream
Hangin' Around


Joined: Aug 10, 2006
Posts: 38

PostPosted: Thu Aug 10, 2006 3:42 pm Reply with quote Back to top

Ok I uploaded all the files in the right spots and changed the HTACCESS File to 666 and logged in as the admin. Then I went along and added the nsnst.php to my URL and nothing. I get a plain white page. It doesn't say anything about the file not being there it just is a plain white page.

Any ideas?

~Death Dream~
View user's profile Send private message Visit poster's website
hitwalker
Sells PC To Pay For Divorce


Joined:
Posts: 5661

PostPosted: Thu Aug 10, 2006 3:50 pm Reply with quote Back to top

turn error report on in the config file...
and see what it says..
View user's profile Send private message
death_dream
Hangin' Around


Joined: Aug 10, 2006
Posts: 38

PostPosted: Fri Aug 11, 2006 2:33 am Reply with quote Back to top

Sorry to sound really newbish here but I have to ask. How do I do that?

~Death Dream~
View user's profile Send private message Visit poster's website
hitwalker
Sells PC To Pay For Divorce


Joined:
Posts: 5661

PostPosted: Fri Aug 11, 2006 4:45 am Reply with quote Back to top

in your config.php

look for :
$display_errors = FALSE;

Set that to:

$display_errors = TRUE;
View user's profile Send private message
death_dream
Hangin' Around


Joined: Aug 10, 2006
Posts: 38

PostPosted: Fri Aug 11, 2006 4:51 am Reply with quote Back to top

Thanks. It looks like I missed a file.

Edit: Yep that did it. I have Nuke sentinel installed now. Just got to fix the "common error" now lol.

Thanks a bunch Very Happy


~Death Dream~


Last edited by death_dream on Fri Aug 11, 2006 4:55 am; edited 2 times in total
View user's profile Send private message Visit poster's website
hitwalker
Sells PC To Pay For Divorce


Joined:
Posts: 5661

PostPosted: Fri Aug 11, 2006 4:53 am Reply with quote Back to top

good luck Wink
View user's profile Send private message
death_dream
Hangin' Around


Joined: Aug 10, 2006
Posts: 38

PostPosted: Fri Aug 11, 2006 5:13 am Reply with quote Back to top

Ok I'm doing the edit core files as of right now. So far I've done the admin.php and header.php with no problem. Then I come to the mainfile.php. I'm running phpnuke 7.6 as far as I know but yet the EditCoreFiles readme looks a bit different from what mine looks like.

Here is mine:
Code:

if(defined('FORUM_ADMIN')) {
  define('INCLUDE_PATH', '../../../');
} elseif(defined('INSIDE_MOD')) {
  define('INCLUDE_PATH', '../../');
} else {
  define('INCLUDE_PATH', './');
}

@require_once(INCLUDE_PATH."config.php");
@require_once(INCLUDE_PATH."db/db.php");
@require_once(INCLUDE_PATH."includes/sql_layer.php");
@require_once(INCLUDE_PATH."includes/ipban.php");
if (file_exists(INCLUDE_PATH."includes/custom_files/custom_mainfile.php")) {
  @include_once(INCLUDE_PATH."includes/custom_files/custom_mainfile.php");
}

if (!defined('FORUM_ADMIN')) {
  if(empty($admin_file)) {
    die ("You must set a value for admin_file in config.php");
  } elseif (!empty($admin_file) && !file_exists($admin_file.".php")) {
    die ("The admin_file you defined in config.php does not exist");
  }
}


And in the read me it says to look for:
Code:

if (defined('FORUM_ADMIN')) {
   @require_once("../../../config.php");
   @require_once("../../../db/db.php");
   @require_once("../../../includes/sql_layer.php");
   if (file_exists("../../../includes/custom_files/custom_mainfile.php")) { @include_once("../../../includes/custom_files/custom_mainfile.php"); }
   @require_once("../../../includes/ipban.php");
   if (defined('NUKE_HEADER') && file_exists("../../../includes/custom_files/custom_head.php")) { @include_once("../../../includes/custom_files/custom_head.php"); }
   if (defined('NUKE_HEADER') && file_exists("../../../includes/custom_files/custom_header.php")) { @include_once("../../../includes/custom_files/custom_header.php"); }
} elseif (defined('INSIDE_MOD')) {
   @require_once("../../config.php");
   @require_once("../../db/db.php");
   @require_once("../../includes/sql_layer.php");
   if (file_exists("../../includes/custom_files/custom_mainfile.php")) { @include_once("../../includes/custom_files/custom_mainfile.php"); }
   @require_once("../../includes/ipban.php");
   if (defined('NUKE_HEADER') && file_exists("../../includes/custom_files/custom_head.php")) { @include_once("../../includes/custom_files/custom_head.php"); }
   if (defined('NUKE_HEADER') && file_exists("../../includes/custom_files/custom_header.php")) { @include_once("../../includes/custom_files/custom_header.php"); }
} else {
   @require_once("config.php");
   @require_once("db/db.php");
   @require_once("includes/sql_layer.php");
   if (file_exists("includes/custom_files/custom_mainfile.php")) { @include_once("includes/custom_files/custom_mainfile.php"); }
   @require_once("includes/ipban.php");
   if (defined('NUKE_HEADER') && file_exists("includes/custom_files/custom_head.php")) { @include_once("includes/custom_files/custom_head.php"); }
   if (defined('NUKE_HEADER') && file_exists("includes/custom_files/custom_header.php")) { @include_once("includes/custom_files/custom_header.php"); }
}



As you can see mine takes an odd twist. Any ideas about this?

~Death Dream~
View user's profile Send private message Visit poster's website
death_dream
Hangin' Around


Joined: Aug 10, 2006
Posts: 38

PostPosted: Sat Aug 12, 2006 5:23 pm Reply with quote Back to top

Um ... Anyone? I still don't know what to do so any help would be very helpfull Very Happy

~Death Dream~
View user's profile Send private message Visit poster's website
gregexp
The Mouse Is Extension Of Arm


Joined: Feb 21, 2006
Posts: 1497
Location: In front of a screen....HELP! lol

PostPosted: Sat Aug 12, 2006 7:14 pm Reply with quote Back to top

Find:
@require_once(INCLUDE_PATH."includes/ipban.php");


Change to :
//@require_once(INCLUDE_PATH."includes/ipban.php");
@include_once(INCLUDE_PATH."includes/nukesentinel.php");
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger ICQ Number
death_dream
Hangin' Around


Joined: Aug 10, 2006
Posts: 38

PostPosted: Sat Aug 12, 2006 7:27 pm Reply with quote Back to top

Ok thanks.

Next question.

I am now editing the YourAccount index.php 7.6 file.

The read me says
Quote:
This appears twice in this function
$host_name = $_SERVER['REMOTE_ADDR'];


Since there are two of them which one do I edit?

~Death Dream~
View user's profile Send private message Visit poster's website
gregexp
The Mouse Is Extension Of Arm


Joined: Feb 21, 2006
Posts: 1497
Location: In front of a screen....HELP! lol

PostPosted: Sun Aug 13, 2006 12:49 am Reply with quote Back to top

Change them both.
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger ICQ Number
death_dream
Hangin' Around


Joined: Aug 10, 2006
Posts: 38

PostPosted: Sun Aug 13, 2006 1:08 am Reply with quote Back to top

Ok sweet I think that did the trick. Now just to make sure could anyone verify that this is what the admin panel is suppose to look like just incase I did screw something up.

The images do work now. I had to reupload them. Just never updated the screenshot.

Image

~Death Dream~
View user's profile Send private message Visit poster's website
gregexp
The Mouse Is Extension Of Arm


Joined: Feb 21, 2006
Posts: 1497
Location: In front of a screen....HELP! lol

PostPosted: Sun Aug 13, 2006 2:02 am Reply with quote Back to top

looks about right with the exception of some images but that could be due to server or browser.

just chack to make sure that all has uploaded successfully.
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger ICQ Number
death_dream
Hangin' Around


Joined: Aug 10, 2006
Posts: 38

PostPosted: Sun Aug 13, 2006 2:05 am Reply with quote Back to top

Ya I said in the post above that I fixed the images but never updated the screenshot.

~Death Dream~
View user's profile Send private message Visit poster's website
gregexp
The Mouse Is Extension Of Arm


Joined: Feb 21, 2006
Posts: 1497
Location: In front of a screen....HELP! lol

PostPosted: Sun Aug 13, 2006 2:10 am Reply with quote Back to top

ahh I see.

Glad your up and running.
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger ICQ Number
death_dream
Hangin' Around


Joined: Aug 10, 2006
Posts: 38

PostPosted: Sun Aug 13, 2006 2:13 am Reply with quote Back to top

Yep Very Happy

Thanks everyone who helped Very Happy

~Death Dream~
View user's profile Send private message Visit poster's website
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.

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
Forums ©
 

All logos and trademarks in this site are property of their respective owner.
The comments are property of their posters, all the rest © 2002-2011 by Raven

You can syndicate our news using the file xml

CSE HTML Validator Helped Clean up This Page! [Valid RSS] valid RSS 2.0 Valid robots.txt Stop Spam Harvesters, Join Project Honey Pot

Website engines core code is © copyright by PHP-Nuke but has been heavily patched and modified by myself and others.
PHP-Nuke is a free software released under the GNU/GPL.


:: fisubice phpbb2 style by Daz :: PHP-Nuke theme by www.nukemods.com ::
:: fisubice Theme Modified by the RavenNuke™ Team ::

:: W3C CSS Compliance Validation :: W3C HTML 4.01 Transitional Compliance Validation ::

zerosum