>>
Site Map
>>
Forums
>>
Bug Reports and Fixes [nCo Mod]
Forum module - topics in forum:
Bug Reports and Fixes [nCo Mod] - This forum is for bug reports only we.. If you have an installstion or othe problem post in those catagories, <b>BUG REPORTS AND FIXES ONLY</b>
PAtching forums with Approve membership installed
I have found a couple bugs when pathcing the forums (bbtonuke) with the Approve membership module installed. Take note that the approve module is installed after the patches are done.
With .19 patch, the bold tags in the forums stop working.
With .20 patch, the bold, and quote user tags do not work.
The quote tags do work until you quote a user like quote="username"
That's all I have found so far
You might do better on this one posting it on
http://www.ulsoft.scarbridge.co.uk the home of the AM module. It would seem this isn't an nCo ultra issue, so much as it is an AM issue.
Ok, that will work. At least it is known here about these bugs now.
Hey NukeCode, Here is what I have found:
www.karakas-online.de
and
Ulsoft
The patch fixes everything except the permissions submission.
Sigh..... It seems like I always find SOMETHING that I have done wrong but don't know where in the installation.
It is my includes/functions.php file
When I use the file from the .20 patch I get garble. When I use the file from the .19 patch, it works fine. Now there are only 3 actuall code changes in that file besides the changing the
== '' to
empty() variable. And those do not fix the garble when I comment them out from the .20 file which leaves just the replacing of
== '' to
empty() throught the file.
Is this because I still need to find something else that is wrong with another file in my Nuke installation?
NukeCode, arnoldkrg found the problem with the .20 patch.
HERE is the link to what he found.
For those that do not want to register for his site,
go to includes/functions.php and find
| Code: : |
function message_die($msg_code, $msg_text = '', $msg_title = '', $err_line = '', $err_file = '', $sql = '')
{
global $db, $template, $board_config, $theme, $lang, $phpEx, $phpbb_root_path, $nav_links, $gen_simple_header, $images, $userdata, $user_ip, $session_length, $starttime; |
And add to it in the globals
| Code: : |
| , $do_gzip_compress |
To look like this
| Code: : |
function message_die($msg_code, $msg_text = '', $msg_title = '', $err_line = '', $err_file = '', $sql = '')
{
global $db, $template, $board_config, $theme, $lang, $phpEx, $phpbb_root_path, $nav_links, $gen_simple_header, $images, $userdata, $user_ip, $session_length, $starttime, $do_gzip_compress; |
Here is a full description of the fix by evaders
http://evaders.swrebellion.com/forums/postt34.html#171