[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-07-01T05:55:49-07:00 https://integramod.com/forum/feed.php?f=17&t=1410 2006-07-01T05:54:11-07:00 2006-07-01T05:54:11-07:00 https://integramod.com/forum/viewtopic.php?t=1410&p=10636#p10636 <![CDATA[Re: General question about phpBB_Security]]>
"Dragonsys";p="10565" wrote:
as far as I am aware, and form what I can tell looking at my site, anything which calls page_header falls under the Security.


cool.. so then I don't have to worry about injects on my input forms

thats awesome!!

Statistics: Posted Author: computerskillz — Sat Jul 01, 2006 5:54 am


]]>
2006-06-30T05:40:10-07:00 2006-06-30T05:40:10-07:00 https://integramod.com/forum/viewtopic.php?t=1410&p=10565#p10565 <![CDATA[Re: General question about phpBB_Security]]> Statistics: Posted Author: Dragonsys — Fri Jun 30, 2006 5:40 am


]]>
2006-07-01T05:55:49-07:00 2006-06-29T21:10:43-07:00 https://integramod.com/forum/viewtopic.php?t=1410&p=10545#p10545 <![CDATA[General question about phpBB_Security]]> not included with the package but which are integrated and fall under the includes/page_header.php ?

In other words, I've created some custom pages and integrated them in the usual way using

--------------------------------
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
include($phpbb_root_path . 'includes/functions_post.'.$phpEx);

$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);

if( !$userdata['session_logged_in'] )
{
$message="You must login or register";
message_die(GENERAL_MESSAGE, $message);
}

include ($phpbb_root_path . 'includes/page_header.'.$phpEx);

blah blah blah etc...

my custom page here
------------------------

So my question is, does that put my custom page and all of its forms under the protection of phpbb_security?

Or does phpbb_security only secure the original package?

Statistics: Posted Author: computerskillz — Thu Jun 29, 2006 9:10 pm


]]>