 |
|
 |
|
- Readme First! - Read and follow the rules, otherwise your posts will be closed |
|
|
|
|
|
There are currently, 144 guest(s) and 0 member(s) that are online.
You are Anonymous user. You can register for free by clicking here |
|
|
|
|
|
PHP-Nuke: Sec-Fix Patch 3 for PHP-Nuke 6.5 |
|
Third compillation of fixes to known PHP-Nuke 6.5 bugs, Just upload to the main Nuke folder so that the included files replace the existing ones.
Fixes:
1-Private Messages within the Journal module broken link due to lines that were meant to be commented breaking the code.
2-Link to Offsite avatars not displaying.
3-Error when clicking the e-mail button in member list.
4-Clicking page number causes invalid session message on Forums.
5-Forum asks to delete install/ and contrib/ directories.
6-Saving Forum profile info changes theme.
7-Couldn't delete auth access info.
8-phpBB logo broken link in the phpBB admin section.
9-Preview Forum: call to undefined function: opentable.
10-Broken rank images in Forum admin section.
Additional details and download. Read ahead for an important note.
With this patch i have included a forumupdate.php file that should be placed in Nuke's main directory (where config.php is located), to execute this file you would then point your browser to http://your_nuke_url.com/updateforum.php. Once done please delete this file.
This file will update your phpBB version to the correct value and will also adjust the session length time in hopes of correcting the Invalid_Session message many people get.
Feel free to contact me with any comments and/or questions you might have.
|
|
Posted on Wednesday, April 16 @ 13:54:56 CEST by [RETIRED]chatserv |
|
|
|
|
| |
|
Average Score: 5 Votes: 2

|
|
|
|
|
|
| The comments are owned by the poster. We aren't responsible for their content. |
| | | | |
No Comments Allowed for Anonymous, please register | | | | |
Re: Sec-Fix Patch 3 for PHP-Nuke 6.5 (Score: 1) by migueis on Wednesday, April 16 @ 16:37:31 CEST (User Info | Send a Message) http://www.offsystems.com | tell me.
do this fix include the last 2 patches? or we have to do all the three in a blank instalation? |
| | | | |
Re: Sec-Fix Patch 3 for PHP-Nuke 6.5 (Score: 1) by masterdavid on Thursday, April 17 @ 01:36:34 CEST (User Info | Send a Message) http://aphs.official.ws | Would it be possible to have a changelog file. What i mean is, i have already done some MODS in my files that is included with the patch. Can we request for the changes that actually happen so we can manually change it. Thanks! |
| | | | |
Re: Sec-Fix Patch 3 for PHP-Nuke 6.5 (Score: 1) by Streamweaver on Thursday, April 17 @ 13:10:04 CEST (User Info | Send a Message) | I loaded these files and immediatly had 2 problems. PM email notification became broken, and security images no longer loaded. Had to roll my site back. Anyone else have problems with this 'fix'? |
| | | | |
Re: Sec-Fix Patch 3 for PHP-Nuke 6.5 (Score: 1) by chatserv on Thursday, April 17 @ 13:56:37 CEST (User Info | Send a Message) http://nukeresources.com | Reload your original files and download the patch again, it now includes a list of what changes must be done to each file so that you don't lose modifications you may have made and / or previous fixes, i'll look into the PM issue. |
| | | | |
Re: Sec-Fix Patch 3 for PHP-Nuke 6.5 (Score: 1) by chatserv on Thursday, April 17 @ 14:31:35 CEST (User Info | Send a Message) http://nukeresources.com | Change line 531 in modules/Private_Message/index.php from:
$email_uri = ( $board_config['board_email_form'] ) ? append_sid("profile.$phpEx?mode=email&" . POST_USERS_URL .'=' . $user_id_from) : 'mailto:' . $privmsg['email'];
to:
$email_uri = ( $board_config['board_email_form'] ) ? append_sid("profile.$phpEx?mode=email&" . POST_USERS_URL .'=' . $user_id_from) : 'mailto:' . $privmsg['user_email'];
line 1183 from:
if ( $to_userdata['user_notify_pm'] && !empty($to_userdata['email']) && $to_userdata['user_active'] )
to:
if ( $to_userdata['user_notify_pm'] && !empty($to_userdata['user_email']) && $to_userdata['user_active'] )
line 1199 from:
$emailer->email_address($to_userdata['email']);
to:
$emailer->email_address($to_userdata['user_email']);
|
| | | | |
Re: Sec-Fix Patch 3 for PHP-Nuke 6.5 (Score: 1) by Streamweaver on Tuesday, April 22 @ 11:54:43 CEST (User Info | Send a Message) | Gave this a few more days for people to solve the problems already mentioned, those problems are fixed. I applied the patch and it broke my security images (again and as reported before) AND I can no longer log out of my site. |
| | | | | |
|