You are missing our premiere tool bar navigation system! Register and use it for FREE!

NukeCops  
•  Home •  Downloads •  Gallery •  Your Account •  Forums • 
Readme First
- Readme First! -

Read and follow the rules, otherwise your posts will be closed
Modules
· Home
· FAQ
· Buy a Theme
· Advertising
· AvantGo
· Bookmarks
· Columbia
· Community
· Donations
· Downloads
· Feedback
· Forums
· PHP-Nuke HOWTO
· Private Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Theme Gallery
· Top
· Topics
· Your Account
Who's Online
There are currently, 415 guest(s) and 0 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Bug Fix: Sec-Fix Patch SFP
SecuritySecurity patch for PHP-Nuke 7.0 and 7.1 designed to secure the Reviews, Search, Sections and Surveys modules against a vulnerability being exploited in the same fashion the Downloads and Web_Links modules were compromised a while back. In the case of the Reviews module you can help secure it by following a tip by Raven, find 2 instances of where id=$id and change to where id = '$id'

Downloads: PHP-Nuke 6.5 - 6.9 - PHP-Nuke 7.0 - PHP-Nuke 7.1

Admin Note: The index.php file was already patched in the Nuke Cops CVS PHP-Nuke Bundle last year: here. Those running this release are OK.
Posted by [RETIRED]chatserv on Thursday, February 05 @ 00:54:20 CET (5919 reads)
(Read More... | 14 comments | Score: 5)
Bug Fix: Sec-Fix Patch 7.0
PHP-NukeAfter quite some time since the last sec-fix patch release here is the newest one, it was made with PHP-Nuke 7.0 Final as its base although some of the items covered might apply to older versions. As usual this sec-fix patch comes with detailed instructions on how to apply the changes manually for those with modified core files, users of PHP-Nuke 7.0 without heavy modifications can simply upload the included files, else, and if using older versions of PHP-Nuke, you can follow the instructions in fixchanges.txt to patch your site and/or check if the fixes apply to your current version.

Download here, click on the "read more" link to view the list of fixes.

Note: The included files are core 7.0 final files with the fixes applied and as such differ from those offered in PHP-Nuke Patched in that the abstraction layer is the same one used on the core files by default.
Posted by [RETIRED]chatserv on Saturday, December 13 @ 11:56:13 CET (11263 reads)
(Read More... | 2087 bytes more | 13 comments | Score: 1.00)
Bug Fix: Bug Tracking for PHP-Nuke at Nuke Cops
Bug FixesProud to present with the blessing of the PHP.net development staff, Bugs.NukeCops.com. Its a full bug tracking and reporting system that the PHP-Nuke community can use at Nuke Cops. Now the PHP-Nuke community can report bugs in a professional tracking system, and the Elite Nukers will monitor the system. From now on, please use this system to report bugs. Thank you to everyone involved.
Posted by Zhen-Xjell on Tuesday, August 05 @ 21:43:36 CEST (5372 reads)
(Read More... | 2 comments | Score: 0)
Bug Fix: Headlines entry correction
PHP-NukeWe are in the process of upgrading NukeCops and while checking through the files we found that the headlines entry for computercops is incorrect, PHP-Nuke 6.5's upgrade60-65.php file does not include this entry but nuke.sql does and it is entered as:
http://www.computercops.com/backend.php
when it should be:
http://www.computercops.biz/backend.php
I have corrected nukesql.php and nukebbsql to reflect the correct url.

Anyone running a fresh install of Nuke 6.5 can fix this error by typing in phpMyAdmin:

UPDATE nuke_headlines SET headlinesurl='http://www.computercops.biz/backend.php' where sitename='ComputerCops';
Posted by [RETIRED]chatserv on Wednesday, May 07 @ 12:27:51 CEST (4217 reads)
(Read More... | 8 comments | Score: 0)
Bug Fix: Gallery 1.3.3+ and phpNuke 6.5 problems solved
Modulesdmolavi writes "Go here to fix some issues with Nuke 6.5 and Gallery. This has a download for 1.3.3 and 1.3.4-cvs versions to fix the db table name problems (if you're getting Warning: mysql_fetch_row():
supplied argument is not a valid MySQL result resource
in /blah/blah/database/mysql/Database.php on line 35 errors). (registration required for download of files, but fixes made are documented in the article)."
Posted by [RETIRED]chatserv on Thursday, April 17 @ 17:19:39 CEST (4997 reads)
(Read More... | 10 comments | Score: 5)
Bug Fix: About missing security blocks & images
SecurityLateron writes "I managed to get into phpnuke.org earlier and found this forum message:

"I had the same exact issue, and I fixed it. The problem it seems is with PHP .. PHP distribution (and I use 4.3.1) comes with GD libraries, and the default GD config in PHP doesn't have the JPEG support enabled by default. So I have recompiled PHP on my linux box with following ./configure options added besides the usual:
Code:
--with-gd=/usr/local --with-jpeg-dir=/usr/local
(my gd and libjpeg was installed with /usr/local prefix, change the path where your libraries would be)"
"


Admin Note: Maybe we should open a forum thread about this to have it all in one place so others can add to it?
Posted by [RETIRED]chatserv on Wednesday, April 02 @ 22:31:51 CEST (5895 reads)
(Read More... | 17 comments | Score: 4)
Bug Fix: Security codes missing problem
SecurityArtificialIntel writes "Hi Nukers.

Many people have been here saying that their security codes & pictures are missing on this site.

This is an issue which I am currently devoting much of my spare time to resolve, so if you can just be patient a little longer, I should have a solution fairly soon."
Posted by [RETIRED]chatserv on Wednesday, April 02 @ 19:18:16 CEST (5142 reads)
(Read More... | 12 comments | Score: 1)
Bug Fix: Urgent fix for security hole in phpNuke 6.5
SecurityThe fix for what is mentioned in the previous articles as provided by Francisco Burzi is as follows
Everyone should edit the file modules/News/index.php and search the function rate_article. You should change the first lines of the functions to close the security hole.
File: modules/News/index.php
Function: rate_article
It looks like:
if ($score) {
if ($score > 5) { $score = 5; }
if ($score < 1) { $score = 1; }
Should be changed for:
 $score = intval($score);
if ($score) {
if ($score > 5) { $score = 5; }
if ($score < 1) { $score = 1; }
if ($score != 1 AND $score != 2 AND $score != 3 AND $score != 4 AND $score != 5) {
Header("Location: index.php");
die();
}


Admin Note: The code has been updated to reflect the latest patch.
Posted by [RETIRED]chatserv on Sunday, March 23 @ 00:36:38 CET (7912 reads)
(Read More... | 16 comments | Score: 4)
Bug Fix: Fix Files Pack 3 for Nuke 6.5 beta 6 released
Bug FixesArtificialIntel writes "Hi nukers.

This should be the final fixes pack before nuke 6.5 beta 7 is out. We've fixed pretty much all the bugs as far as I can tell, with only the odd straggler behind that we're working on as fast as we can.

It's now in the download section here

ArtificialIntel"


Admin Note: Success!
Posted by Zhen-Xjell on Wednesday, January 29 @ 12:11:42 CET (4588 reads)
(Read More... | 14 comments | Score: 0)
Bug Fix: Fix-Files pack 2b released for nuke 6.5 beta 6
Bug FixesArtificialIntel writes "yes, yet another pack released by us with more bug-fixes for nuke 6.5 beta 6.

It's available from here

ArtificialIntel"
Posted by Zhen-Xjell on Tuesday, January 28 @ 15:23:45 CET (4668 reads)
(Read More... | 6 comments | Score: 0)
Forums
Syndication
Last 20 Forum Messages


[ NukeCops ]
Survey
Should phpNuke continue to support other databases besides MySQL?

Yes
No
Does anyone care?



Results
Polls

Votes: 1474
Comments: 23
Site Visitors
Login Here:

Nickname:
Password:
Security Code: Security code
Type Security Code Here:

Members List Membership:
Latest: KCETeddy38's Profile KCETeddy38
Today: 0
Yesterday: 0
Overall: 657076

Visitation:
Guests: 415
Members: 0
Total: 415


You are Anonymous user. You can register for free by clicking here
Support Us
Help Keep NukeCops Online
And Support Our Work
Make donations with PayPal!
Donat-o-Meter Stats
March´s Goal: $350.00
Due Date:   Mar 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $350.00

©
Donations
Powered by TOGETHER TEAM srl ITALY http://www.togetherteam.it - DONDELEO E-COMMERCE http://www.DonDeLeo.com - TUTTISU E-COMMERCE http://www.tuttisu.it
Web site engine's code is Copyright © 2002 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 5.854 Seconds - 159 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::