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
Tizwit
Involved
Involved



Joined: Aug 29, 2004
Posts: 324
Location: New Mexico

PostPosted: Tue Sep 20, 2005 8:58 pm Reply with quote

anyone have the patched files to load NSN GR Downloads on 7.6 patched to 3.1.

its patched up to 2.9 and not 3.1

I have been looking but can't find anything.

_________________
Brian [ Only registered users can see links on this board! Get registered or login! ]
Helping the Children in the NM Children's Hospital 
View user's profile Send private message Visit poster's website
BobMarion
Former Admin in Good Standing



Joined: Oct 30, 2002
Posts: 1037
Location: RedNeck Land (known as Kentucky)

PostPosted: Tue Sep 20, 2005 11:40 pm Reply with quote

I am planning on going thru the packages and updating once I get my new hd for my main/work computer.

_________________
Bob Marion
Codito Ergo Sum
http://www.nukescripts.net 
View user's profile Send private message Send e-mail Visit poster's website
Tizwit







PostPosted: Tue Sep 20, 2005 11:46 pm Reply with quote

Ok.

I do know kguske has done a LOT to help me with the NSN Groups and the patch 3.1 the downloads part is the only thing holding me back now. trying to add it so not just anyone can download from certain areas of my newest site.
 
zzb
New Member
New Member



Joined: Jun 05, 2005
Posts: 22
Location: USA

PostPosted: Mon Oct 10, 2005 10:24 pm Reply with quote

I am very interested in this thread as well.

I would like to install it on a Platinum Nuke installation 7.5 patched to 3.1
Looking for the same functionality to drive some additional site interaction from the users prior to downloading even though they ARE registered.

Does anyone have NSN GR Downloads running with NSN Groups Universal on a PHP Nuke Platinum installation Sentinel 2.4.1 ?

Before I start taking apart my Enhanced Downloads 1.7 on my site I would love to have some validation that they will work on 7.5 patched 3.1

Will follow this thread for any updates.... tnx.
 
View user's profile Send private message Visit poster's website
montego
Site Admin



Joined: Aug 29, 2004
Posts: 9457
Location: Arizona

PostPosted: Tue Oct 11, 2005 9:53 pm Reply with quote

zzb,
I actually have a working 7.5 3.1 patched environment running on my development environment (just finishing up testing before I post to production) with NSN_GR_Downloads_750_103pl1. The only part that I had to redo some was the changes the patch Team made to:

Code:


if (defined('FORUM_ADMIN')) {
    @require_once("../../../config.php");
    @require_once("../../../db/db.php");
} elseif (defined('INSIDE_MOD')) {
    @require_once("../../config.php");
    @require_once("../../db/db.php");
} else {
    @require_once("config.php");
    @require_once("db/db.php");
}


In the 3.1 patch, they changed this a bit to look more like the following:

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");


The NS Groups Download mainfile.php updates have you placing the following code at the bottom of the script:

Code:


if (defined('FORUM_ADMIN')) {
    include_once("../../../includes/nsngr_func.php");
} elseif (defined('INSIDE_MOD')) {
    include_once("../../includes/nsngr_func.php");
} else {
    include_once("includes/nsngr_func.php");
}


Instead of this, I just added it to the section of 3.1 mainfile code as follows:

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");
@require_once(INCLUDE_PATH."includes/nsngr_func.php");


Really, all of the other code was almost untouched by 3.1 around the NS Groups code file edits (as most of the edits are additional lines of code).

Hope this helps... I have the completed files:

mainfile.php
admin/blocks.php
admin/messages.php
admin/modules.php
blocks/block-Modules.php
blocks/block-User_Info.php
modules/Your_Account/index.php

for 7.5 with 3.1 patch level and NS Group Downloads installed (this discussion above has been around NS Groups which is needed for the NS Group Downloads), however, I also have NukeSentinel 2.4.2 and some hacks also in some of these scripts. I can provide them if you really need them, but I would try going through the NS Groups install and then if that works fine, the NS Group Downloads should be a piece-of-cake to install.

Regards,
montego

_________________
Where Do YOU Stand?
HTML Newsletter::ShortLinks::Mailer::Downloads and more... 
View user's profile Send private message Visit poster's website
zzb







PostPosted: Tue Oct 11, 2005 10:15 pm Reply with quote

Thanks Montego! This is very helpful. I follow what you are suggesting. This is helpful.
Since Platinum Nuke uses Enhanced Downloads... I will load up GR Downloads and make the mods on a test system and see what happens...

Thanks....
ZZ
 
montego







PostPosted: Wed Oct 12, 2005 12:35 pm Reply with quote

NSN GR Downloads requires NSN Groups to be installed first. Does this come with Platinum or have you already installed this? My comments above were related to NSN Groups. ONce that is installed properly, NSN GR Downloads is very easy to install and get working.

Regards,
montego
 
zzb







PostPosted: Wed Oct 12, 2005 10:10 pm Reply with quote

NSN Groups is part of the Platinum Package. The Downloads module is Enhanced Downloads 1.7 What I will try to do is back up and then replace Enhanced Downloads with NSN GR Downloads. I have that pack from NukeScripts.

I will back up SQL tables and structure as well. I should be able to make the changes without too many issues that I could not patch myself with the info you provided me above.

Thanks....
 
montego







PostPosted: Wed Nov 23, 2005 8:47 am Reply with quote

BobMarion,

I see that your Forums have been disabled. I am having too many problems getting NSN Groups 1.7.1 working on 7.6 with 3.1! I was able to get all but block and module edits in the admin area. When I click on "save", it throws a file not found error but I can clearly see the write [ Only registered users can see links on this board! Get registered or login! ] name in the browser address bar and the error message does not appear to be PHP produced. However, when I backed all the DB changes and files out, these functions work.

Any thoughts on where I should look? I've been all over the code and just can't see why/how it can be throwing this kind of seemingly Apache error.... Also, are you still planning on releasing a 3.1 version of NSN Groups?

TIA,
montego
 
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 ©