After many weeks of careful assembling and testing, I am now making available phpNuke v7 - Customized - for download. This distribution is 99% pure virgin nuke v7 from the author, FB. I have applied all the known security fixes, as well as several code corrections. In addition I have pre-installed several highly requested add-ons. Additionally, I have created an SQL Installer that should help ease the pain for most of you. All of this has undergone rigorous testing under both Windows and Linux. I will support this in my forums as I do all releases of Nuke, but as it is basically the v7 release from the author, I take no responsibility for supporting it as my application. All upgrades, etc., are still the responsibility of you :).
This release is for a virgin installation, not an upgrade. Once I'm comfortable with the stability I may release an upgrade SQL package. Read on for what is included in this package.
Admin Note: To keep the harvesters away you must be a member to download this one. And a special thanks to the many of you who tested and contributed to the quality assurance of this release. There may still be issues, but this is a much cleaner release than any of the originals!
Admin Note 1/23/2004: When downloading you may notice that you are downloading from sites other than my site. Several others have graciously allowed me to use their sites as a mirror. I have a routine that rotates the d/l site based on a weighting. However, if the download did not originate here then it is cannot be guaranteed to be mine.Added an Intelligent SQL Installer. It is in the sql folder but can be placed anywhere. Operational information is contained in the file.
[RC2]
The following Blocks were updated from RC1
=================================================================================
Quiecomm Shout Block - modified by http://www.ourscripts.net
The following Modules were updated from RC1
=================================================================================
Quiecomm Shout Block - modified by http://www.ourscripts.net
[CHANGES/MODS]
The following Modules/Files were modified as stated
=================================================================================
modules/News/comments.php: Email Notification to news items and Comments added.
[FIXES]
The following fix was applied on 1/18/2004.
=================================================================================
Line 47 in admin/modules/modules.php was modified
FROM:
sql_query("insert into ".$prefix."_modules values (NULL, '$modlist[$i]', '$modlist[$i]', '0', '0', '1')", $dbi);
TO
sql_query("insert into ".$prefix."_modules values (NULL, '$modlist[$i]', '$modlist[$i]', '0', '0', '1','0')", $dbi);
The following fix was applied on 1/18/2004.
=================================================================================
Missing rwh.gif was added to the images folder.
The following fix was applied on 1/19/2004.
=================================================================================
Several misspellings of 'Montly Stats' corrected to 'Monthly Stats' in modules/Statistics/language/*
The following fix was applied on 1/19/2004.
=================================================================================
Corrected SQL to fix Hits counter.
The following fix was applied on 1/20/2004.
=================================================================================
Missing folder/file was added to images directory menu/moderate.gif
*********************************************************************************************************************
*********************************************************************************************************************
*********************************************************************************************************************
[RC1]
[ADDED]
The following Themes were added to the distribution
=================================================================================
fiapple
The following Blocks were added to the distribution
=================================================================================
block-fiapple-Forums.php
block-ForumsScroll.php
block-realtime-stats.php
block-Recent-Forums.php
block-Site_Info.php
block-Stock_Quote.php
Several Coppermine Blocks
Quiecomm Shout Block - modified by http://www.ourscripts.net
=================================================================================
The following Modules were added to the distribution
=================================================================================
kisgb-nuke
PHP-Nuke_HOWTO
realtime-stats
Resend_Email
Stock_Quote
Raven_MysqlUtility (Nuke Module :))
coppermine
WorkBoard (Project Management
IP_Tracking
Quiecomm Shout Block - modified by http://www.ourscripts.net
=================================================================================
[CHANGES/MODS]
The following Modules/Files were modified as stated
=================================================================================
modules/Forums/avatars: Added hundreds of avatars to several subfolders.
=================================================================================
modules/Downloads/index.php has been modified. Code has been added to allow the restricting of certain downloads to members only when anonymous downloading is allowed. This hack of mine is a code only hack and no database modifications are required. Also, code added that allows you to restrict downloads to registered users only but the downloads are available for viewing to all visitors. Note that this is a rewrite from my earlier released hack.
=================================================================================
modules/Your_Account/index.php has been modified. Code has been added to allow the automatic registering of people. The original index.php file has been renamed and can easily be restored. To activate the autoActivation functionality, simply change the setting $autoActivate = FALSE; to $autoActivate = TRUE; in modules/Your_Account/index.php. Note that this is a rewrite from my earlier released hack.
Chatserv's Avatar Control Panel code has been merged in
=================================================================================
To assist in SQL errors resolution, insert this line to line 88 in db/db.php:
include("includes/functions.php");
Renamed faqanswer and faccategories to faqAnswer and faqCategories 12/14/2003
=================================================================================
The files related to this fix are in the sql folder
[FIXES]
The following fix was applied on 12/13/2003.
=================================================================================
Line 289 in mainfile.php was modified
FROM:
if ($points > 0 AND $points >= $row[points] || $mod_group == 0) {
TO:
if (($points >= 0 AND $points >= $grp) OR $mod_group == 0) {
=================================================================================
The following fix was applied on 01/04/2004.
=================================================================================
Lines 165 & 186 in modules/Members_List/index.php was modified
FROM:
$order_by = "user_regdate $sort_order LIMIT $start, " . $board_config['topics_per_page'];
TO:
$order_by = "user_id $sort_order LIMIT $start, " . $board_config['topics_per_page'];
=================================================================================
The following fix was applied on 01/04/2004.
=================================================================================
Line 658 in modules/Your_Account/index.php was modified
FROM:
if(!$result) {
TO:
if(!sql_num_rows($result)) {
=================================================================================
Chatserv's Security/Fixes SF-70 was applied on 12/14/2003.
=================================================================================
1-mainfile.php includes a $grp variable that is not used. (chatserv) Also reported by Alain Melsens recently.
The file related to this fix is mainfile.php
=============================================================================
2-Missing $sitename variable in Downloads admin section. (chatserv)
The file related to this fix is admin/modules/downloads.php
=============================================================================
3-Duplicate sql query in Downloads admin section. (chatserv)
The file related to this fix is admin/modules/downloads.php
=============================================================================
4-$ThemeSel variable not defined in downloads admin. (chatserv)
The file related to this fix is admin/modules/downloads.php
=============================================================================
5-Incorrect use of $module_name in Downloads admin. (chatserv).
The file related to this fix is admin/modules/downloads.php
=============================================================================
6-Missing $dbi call in Encyclopedia admin section. (chatserv).
The file related to this fix is admin/modules/encyclopedia.php
=============================================================================
7-$ThemeSel variable not defined in links admin. (chatserv).
The file related to this fix is admin/modules/links.php
=============================================================================
8-Incorrect use of $module_name in Links admin. (chatserv).
The file related to this fix is admin/modules/links.php
=============================================================================
9-Missing globals in LinksAddLink op. (chatserv)
The file related to this fix is admin/modules/links.php
=============================================================================
10-Incorrect fetchrow call in block-Forums.php. (chatserv)
The file related to this fix is block-Forums.php
=============================================================================
11-Missing globals in Avantgo module. (chatserv)
The file related to this fix is modules/Avantgo/index.php
=============================================================================
12-Incorrect fetchrow call in Encyclopedia module. (chatserv)
The file related to this fix is modules/Encyclopedia/search.php
=============================================================================
13-Incorrect fetchrow call in News module. (chatserv)
The file related to this fix is modules/News/friend.php
=============================================================================
14-Missing global in Your_Account module. (chatserv)
The file related to this fix is modules/Your_Account/navbar.php
=============================================================================
15-Duplicate sql query in Downloads module. (chatserv)
The file related to this fix is modules/Downloads/index.php
=============================================================================
16-Merged lines in Web_Links module. (chatserv)
The file related to this fix is modules/Web_Links/index.php
=============================================================================
17-Merged lines in Downloads module. (chatserv)
The file related to this fix is modules/Downloads/index.php
=============================================================================
18-Incorrect block filename in block-User_Info.php. (chatserv)
The file related to this fix is block-User_Info.php
=============================================================================
19-Incorrect variable number in Web_Links module. (chatserv)
The file related to this fix is modules/Web_Links/index.php
=============================================================================
20-Missing $result variable in Your_Account module. (chatserv)
The file related to this fix is modules/Your_Account/index.php
=============================================================================
21-Incorrect datestring in spanish language file. (chatserv)
The file related to this fix is modules/Downloads/language/lang-spanish.php
=================================================================================
Re: Raven's Customized Nuke v7 Release Available! (Score: 1) | ![]() | Raven Said "Once I'm comfortable with the stability I may release an upgrade SQL package" Please Raven if you find the time this would be most appreciated. Thanks Freeby |
Re: Raven's Customized Nuke v7 Release Available! (Score: 1) | ![]() | Very exciting news. Thank you Raven. |
Re: Raven's Customized Nuke v7 Release Available! (Score: 1) by Salieri on Thursday, January 22, 2004 @ 08:26:42 CST (User Info | Send a Message) | |
Yes! I think I contributed to half the site's hits coming on and off this site, thanks Raven, the open source community thanks you. :) |
Re: Raven's Customized Nuke v7 Release Available! (Score: 1) | ![]() | Finished installing this version an hour or so ago, Raven, and so far everything is working fine (which is as I expected :-) ). Thank you for your time and trouble in putting it together. And thank you to Chatserv for the fixes you provided for the original errors. All the best, Ron..... |