|
- Readme First! - Read and follow the rules, otherwise your posts will be closed |
|
|
|
|
|
There are currently, 336 guest(s) and 0 member(s) that are online.
You are Anonymous user. You can register for free by clicking here |
|
|
|
|
|
BBtoNuke 2.0.7 Upgrade Pack |
|
Note: Requires PHP-Nuke 6.9 or newer
Changelog:
Fixed several vulnerabilities in modcp - Robert Lavierck
Changed whois lookup address within admin index
Fixed potential vulnerability in viewtopic postorder - 2.0.6d
Updates to cope with Zend Optimizer 2.5 problems - 2.0.6d - jetset
Force specialcharing of redirect variable in login - Pit
Fixed potential vulnerability in viewtopic postdays - GulfTech Security Research
Fixed potential vulnerability in viewforum topicdays - GulfTech Security Research
Fixed potential vulnerability in modcp
Fixed potential vulnerability in avatar gallery
Database upgrade instructions: Upload the included updatedb.php file to where mainfile.php is located and point your browser to it, once done delete the file.
Download here.
Admin Note: I had to update the pack today, upon checking the files i found user reports about file versions were correct and several fixes were missing, all files show the correct version number and date now.
|
|
Posted on Monday, March 15 @ 00:51:24 CET by [RETIRED]chatserv |
|
|
|
|
| |
|
Average Score: 4.5 Votes: 4

|
|
|
|
|
|
|
| | The comments are owned by the poster. We aren't responsible for their content. |
| | | | |
| No Comments Allowed for Anonymous, please register | | | | |
Re: BBtoNuke 2.0.7 Upgrade Pack (Score: 1) by scottr on Monday, March 15 @ 11:20:56 CET (User Info | Send a Message) http://www.ierealtor.com | cool, can you double check the Members_List/index.php file.
the first switch statement.
the first case is 'joined' yet $mode='joindate' so one of those should change to match the other.
the other thing i would recommend is changing
$order_by = "user_regdate $sort_order LIMIT $start, " . $board_config['topics_per_page'];
to
$order_by = "date_format( user_regdate, '%b %d %Y' ) $sort_order LIMIT $start, " . $board_config['topics_per_page']';
in 2 locations, the case 'joined' and the default,
per Raven and dezina. (since user_regdate is varchar, not date)
http://nukecops.com/postlite21338-.html
|
Re: BBtoNuke 2.0.7 Upgrade Pack (Score: 1) by chatserv on Monday, March 15 @ 12:01:10 CET (User Info | Send a Message) http://nukeresources.com | | Thanks for the feedback scottr, i ported this late last night after battling with my car for two days so i guess it was natural that i overlooked those things, because 2.0.6 had suffered several changes with versions 2.0.6, 2.0.6c and 2.0.6d i decided to port from scratch so i wouldn't replace any new code by mistake, of course that means oversights like the ones you pointed are to be expected, i'll correct them and take another look at all files later today, for now i need some rest. |
]
Re: BBtoNuke 2.0.7 Upgrade Pack (Score: 1) by chatserv on Monday, March 15 @ 12:35:18 CET (User Info | Send a Message) http://nukeresources.com | | Instead of changing the instances of Joined i changed joindate to Joined in the mode array and also corrected the date format. |
]
Re: BBtoNuke 2.0.7 Upgrade Pack (Score: 1) by ajthejuggalo on Monday, March 15 @ 12:56:15 CET (User Info | Send a Message) http://www.mwjz.com | | so is this fix something we need to apply, or has the packaged been updated with it? |
]
Re: BBtoNuke 2.0.7 Upgrade Pack (Score: 1) by chatserv on Monday, March 15 @ 14:25:13 CET (User Info | Send a Message) http://nukeresources.com | Final update, all files checked and variables that were unquoted were placed between quotes.
As for the last question, if you are running BBtoNuke 2.0.6 (as in running Nuke 6.9 or newer or the NC Bundle) then you can use this upgrade pack, to make sure you have the correct forum version before upgrading check your nuke_bbconfig table, the version should read .0.6 |
]
Re: BBtoNuke 2.0.7 Upgrade Pack (Score: 1) by jsterling on Monday, March 15 @ 19:37:12 CET (User Info | Send a Message) | | Could you tell us which files were updated in this release compared to the original? I updated as soon as you released the original and have many forum mods and would rather not have to reinstall all of them from scratch. Thanks. |
]
Re: BBtoNuke 2.0.7 Upgrade Pack (Score: 1) by chatserv on Monday, March 15 @ 22:46:15 CET (User Info | Send a Message) http://nukeresources.com | | Most were but you can just load the ones that had bugs fixed on them, the members list's index.php, usercp_register.php and viewtopic.php, the rest i just secured in the style of PHP-Nuke Patched so you can by-pass those since you had already upgraded to 2.0.7. |
]
| | | | |
Re: BBtoNuke 2.0.7 Upgrade Pack (Score: 1) by twelves on Monday, March 15 @ 14:50:55 CET (User Info | Send a Message) http://www.12string.net | I have some errors.
But I guess your uploading a new version.
This was my error after upgrading.
Missing argument 8 for user_notification() in /home/stringn/public_html/includes/functions_post.php on line 611
And in my file this is on line 611
function user_notification($mode, &$post_data, &$topic_title, &$post_message, &$forum_id, &$topic_id, &$post_id, &$notify_user)
{
global $board_config, $lang, $db, $phpbb_root_path, $phpEx;
global $userdata, $user_ip;
Thanks friend! |
| | | | |
Re: BBtoNuke 2.0.7 Upgrade Pack (Score: 1) by Lateron on Tuesday, March 16 @ 01:41:51 CET (User Info | Send a Message) http://www.ausvegnet.com | Hi Chatserv,
Thanks for the upgrade.
Just upgraded and got the following error:
Parse error: parse error in /home/httpd/vhosts/xyz.net/httpdocs/modules/Members_List/index.php on line 167 |
Re: BBtoNuke 2.0.7 Upgrade Pack (Score: 1) by Lateron on Tuesday, March 16 @ 04:20:33 CET (User Info | Send a Message) http://www.ausvegnet.com | The two lines (167 & 186) should be
$order_by = "date_format( user_regdate, '%b %d %Y' ) $sort_order LIMIT $start, " . $board_config['topics_per_page'];
Not
$order_by = "date_format( user_regdate, '%b %d %Y' ) $sort_order LIMIT $start, " . $board_config['topics_per_page']';
(apostrophe before final colon shouldn't be there) |
]
| | | | | |