[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 180: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
IntegraMOD Home of phpBB Integrated Modifications 2006-05-01T10:22:02-07:00 https://integramod.com/forum/feed.php?f=17&t=134 2006-05-01T10:22:02-07:00 2006-05-01T10:22:02-07:00 https://integramod.com/forum/viewtopic.php?t=134&p=3949#p3949 <![CDATA[[SOLVED] Portal Header (Left Blocks) not on every page]]>
This still doesn't work, and caused an error in the knowledge base. If you've added the code in either of the two previous posts, remove them. Simon's is still the best solution.

Statistics: Posted Author: Jason Sanborn — Mon May 01, 2006 10:22 am


]]>
2006-04-29T21:44:56-07:00 2006-04-29T21:44:56-07:00 https://integramod.com/forum/viewtopic.php?t=134&p=3705#p3705 <![CDATA[[SOLVED] Portal Header (Left Blocks) not on every page]]>
// Enable header variables to be used in the message_die() callif (!defined('IN_ADMIN')) {     include($phpbb_root_path . 'includes/page_header.'.$phpEx);}


Otherwise it will distort things in the ACP, which I found out after implemented on my test site. <img>

Statistics: Posted Author: Jason Sanborn — Sat Apr 29, 2006 9:44 pm


]]>
2006-04-29T21:33:48-07:00 2006-04-29T21:33:48-07:00 https://integramod.com/forum/viewtopic.php?t=134&p=3702#p3702 <![CDATA[[SOLVED] Portal Header (Left Blocks) not on every page]]>
OPEN: includes/functions.php

FIND:
    if(defined('HAS_DIED'))     {//+MOD]
BEFORE, ADD:[code]// Enable header variables to be used in the message_die() callinclude($phpbb_root_path . 'includes/page_header.'.$phpEx);


I've tested this locally, and am going to add it to my test site, but so far it appears to work without problem.

Statistics: Posted Author: Jason Sanborn — Sat Apr 29, 2006 9:33 pm


]]>
2006-04-12T10:27:51-07:00 2006-04-12T10:27:51-07:00 https://integramod.com/forum/viewtopic.php?t=134&p=1173#p1173 <![CDATA[[SOLVED] Portal Header (Left Blocks) not on every page]]>
Half asleep at moment but will look at this later.

Statistics: Posted Author: Simon N — Wed Apr 12, 2006 10:27 am


]]>
2006-04-12T10:00:46-07:00 2006-04-12T10:00:46-07:00 https://integramod.com/forum/viewtopic.php?t=134&p=1162#p1162 <![CDATA[[SOLVED] Portal Header (Left Blocks) not on every page]]> Statistics: Posted Author: Eon — Wed Apr 12, 2006 10:00 am


]]>
2006-04-12T09:44:41-07:00 2006-04-12T09:44:41-07:00 https://integramod.com/forum/viewtopic.php?t=134&p=1142#p1142 <![CDATA[[SOLVED] Portal Header (Left Blocks) not on every page]]> Statistics: Posted Author: Jason Sanborn — Wed Apr 12, 2006 9:44 am


]]>
2006-04-12T03:05:12-07:00 2006-04-12T03:05:12-07:00 https://integramod.com/forum/viewtopic.php?t=134&p=1080#p1080 <![CDATA[[SOLVED] Portal Header (Left Blocks) not on every page]]> Statistics: Posted Author: Simon N — Wed Apr 12, 2006 3:05 am


]]>
2006-04-11T19:57:53-07:00 2006-04-11T19:57:53-07:00 https://integramod.com/forum/viewtopic.php?t=134&p=1061#p1061 <![CDATA[Re: [SOLVED] Portal Header (Left Blocks) not on every page]]> Statistics: Posted Author: Helter — Tue Apr 11, 2006 7:57 pm


]]>
2006-04-09T18:29:34-07:00 2006-04-09T18:29:34-07:00 https://integramod.com/forum/viewtopic.php?t=134&p=772#p772 <![CDATA[[SOLVED] Portal Header (Left Blocks) not on every page]]>

Statistics: Posted Author: Jason Sanborn — Sun Apr 09, 2006 6:29 pm


]]>
2006-04-09T17:33:28-07:00 2006-04-09T17:33:28-07:00 https://integramod.com/forum/viewtopic.php?t=134&p=767#p767 <![CDATA[[SOLVED] Portal Header (Left Blocks) not on every page]]>
this would be something like:
else                 {                     message_die(GENERAL_MESSAGE, $lang['No_search_match']);                 }


My guess is since this is an information message only there is no need to output the page as usual.

In short this is by design and not an error. So no amount of settings changes can alter this.

However a few edits can sort this for you so]                     message_die(GENERAL_MESSAGE, $lang['No_search_match']);[/code]

BEFORE, ADD
                // start proper output of page                 include($phpbb_root_path . 'includes/page_header.'.$phpEx);                 // end proper output


As said there are 3 instances and be sure to find them all and add the above code before. SAVE & CLOSE file.

The comments are just to enable deletion of changes if need be. Hope this helps.

Statistics: Posted Author: Simon N — Sun Apr 09, 2006 5:33 pm


]]>
2006-04-09T18:34:01-07:00 2006-04-09T15:44:16-07:00 https://integramod.com/forum/viewtopic.php?t=134&p=754#p754 <![CDATA[[SOLVED] Portal Header (Left Blocks) not on every page]]>
IntegraMOD 1.4.0
phpBB 2.0.19
Forum Wide headers are enabled.

When navigating my site, I always want my board navigation and other left (header) blocks enabled. On most pages, they are enabled, as a result of the Forum Wide headers. The problem I have, though, is on a couple pages of the forum where the user is given "information" such as when no topics are found in a search.

I use the "Posts Since Last Visit" (which I renamed to "New Posts") heavily to see what is new on my site. If there's nothing new, then my board navigation doesn't appear. From what I could tell, it appears that the switch for portal_header isn't being called. Any ideas on why this is happening, or how I can fix it?

Statistics: Posted Author: Jason Sanborn — Sun Apr 09, 2006 3:44 pm


]]>