A couple errors since update to .12

Support for mods released by phpbbmodders.net found at either https://github.com/phpbbmodders/ or the MODDB at http://www.phpbb.com
Forum rules
Please only request support for mods released by phpbbmodders.net found at either https://github.com/phpbbmodders/ or the MODDB at http://www.phpbb.com
Post Reply
WaGuns
Member
Member
Posts: 172
Joined: 06 Apr 2011, 02:01
Contact:

A couple errors since update to .12

Post by WaGuns »

Update went rather smooth, a few hiccups but I won.. Beer helped.

One of the last annoying things is happening only on when I click a link to see who is in a group (like admin, moderators, etc). I get a debug error(s) and the font is all huge on the page. This doesn't happen on the memberlist.php, but only when you go a specific group ... i.e.... memberlist.php?mode=group&g=13

The debug error(s) are as follows:
[phpBB Debug] PHP Notice: in file [ROOT]/memberlist.php on line 1244: Undefined index: GROUP_IS_CLOSED
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4758: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3887)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4760: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3887)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4761: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3887)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4762: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3887)

My membership.php 1244 is this:

Code: Select all

'GROUP_TYPE'	=> $user->lang['GROUP_IS_' . $group_row['l_group_type']],
On the fucnctions.php
4758-4762 is this:

Code: Select all

header('Content-type: text/html; charset=UTF-8');

	header('Cache-Control: private, no-cache="set-cookie"');
	header('Expires: 0');
	header('Pragma: no-cache');
It's referencing headers already started at 3887, which is this:

Code: Select all

echo '<b>[phpBB Debug] ' . $error_name . '</b>: in file <b>' . $errfile . '</b> on line <b>' . $errline . '</b>: <b>' . $msg_text . '</b><br />' . "\n";

:popcorn: Who want's beer $$. :beer:
User avatar
RMcGirr83
Supporter
Supporter
Posts: 6242
Joined: 30 Nov 2006, 14:23
Real name: Rich McGirr

Re: A couple errors since update to .12

Post by RMcGirr83 »

Code: Select all

[phpBB Debug] PHP Notice: in file [ROOT]/memberlist.php on line 1244: Undefined index: GROUP_IS_CLOSED
means you are missing a language edit. And that is found within language/xx/groups.php
WaGuns
Member
Member
Posts: 172
Joined: 06 Apr 2011, 02:01
Contact:

Re: A couple errors since update to .12

Post by WaGuns »

Aaaaand.. FIXED! :beer: Sent!
User avatar
RMcGirr83
Supporter
Supporter
Posts: 6242
Joined: 30 Nov 2006, 14:23
Real name: Rich McGirr

Re: A couple errors since update to .12

Post by RMcGirr83 »

Thanks for the :beer: :cheers:
WaGuns
Member
Member
Posts: 172
Joined: 06 Apr 2011, 02:01
Contact:

Re: A couple errors since update to .12

Post by WaGuns »

Now fix my cPanel access... :)

nm... working now
Post Reply