[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-06-04T22:57:29-07:00 https://integramod.com/forum/feed.php?f=17&t=384 2006-06-04T22:57:29-07:00 2006-06-04T22:57:29-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=8452#p8452 <![CDATA[Re: Admins can't delete topics after security upgrade]]>
"gamesug";p="7824" wrote:
I had the same problem and it was with my template. If your modcp.php file is edited perfectly make sure you do this step.

-----------------------------------
----[ OPEN ]-----------------------
-----------------------------------

templates/*/confirm_body.tpl

-----------------------------------
----[ FIND ]-----------------------
-----------------------------------

</form>

-----------------------------------
----[ ADD, BEFORE ]----------------
-----------------------------------

{L_VERIFY}

-----------------------------------
----[ CLOSE & SAVE ]---------------
-----------------------------------

That was the fix i was looking for. Just was aware of this error today. <img> Fixed now. Thanks all!

Statistics: Posted Author: Fallen — Sun Jun 04, 2006 10:57 pm


]]>
2006-05-29T19:39:36-07:00 2006-05-29T19:39:36-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=7824#p7824 <![CDATA[Re: Admins can't delete topics after security upgrade]]>
-----------------------------------
----[ OPEN ]-----------------------
-----------------------------------

templates/*/confirm_body.tpl

-----------------------------------
----[ FIND ]-----------------------
-----------------------------------

</form>

-----------------------------------
----[ ADD, BEFORE ]----------------
-----------------------------------

{L_VERIFY}

-----------------------------------
----[ CLOSE & SAVE ]---------------
-----------------------------------

Statistics: Posted Author: gamesug — Mon May 29, 2006 7:39 pm


]]>
2006-05-13T20:11:38-07:00 2006-05-13T20:11:38-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=5811#p5811 <![CDATA[Admins can't delete topics after security upgrade]]> well that didn't work for me, any other solution?

Statistics: Posted Author: Thug Lyfe — Sat May 13, 2006 8:11 pm


]]>
2006-05-12T23:04:08-07:00 2006-05-12T23:04:08-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=5753#p5753 <![CDATA[Admins can't delete topics after security upgrade]]> http://integramod.com/forum/viewtopic.php?p=5151#5151

A

Statistics: Posted Author: Adrian Rea — Fri May 12, 2006 11:04 pm


]]>
2006-05-12T15:17:52-07:00 2006-05-12T15:17:52-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=5737#p5737 <![CDATA[Admins can't delete topics after security upgrade]]> help will be appreciated...

Statistics: Posted Author: Thug Lyfe — Fri May 12, 2006 3:17 pm


]]>
2006-05-11T19:46:47-07:00 2006-05-11T19:46:47-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=5603#p5603 <![CDATA[Re: Admins can't delete topics after security upgrade]]> Statistics: Posted Author: DjPorkchop — Thu May 11, 2006 7:46 pm


]]>
2006-05-11T18:57:06-07:00 2006-05-11T18:57:06-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=5598#p5598 <![CDATA[Admins can't delete topics after security upgrade]]> now my and every member's pm system says '1 unread message'....even though there isn't any.....solution please lol

Statistics: Posted Author: Thug Lyfe — Thu May 11, 2006 6:57 pm


]]>
2006-05-10T16:29:22-07:00 2006-05-10T16:29:22-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=5429#p5429 <![CDATA[Re: Admins can't delete topics after security upgrade]]> Lol. J/K glad it's working for ya...

Statistics: Posted Author: DjPorkchop — Wed May 10, 2006 4:29 pm


]]>
2006-05-10T14:34:17-07:00 2006-05-10T14:34:17-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=5420#p5420 <![CDATA[Admins can't delete topics after security upgrade]]> thankz a lot

Statistics: Posted Author: Thug Lyfe — Wed May 10, 2006 2:34 pm


]]>
2006-05-09T20:06:40-07:00 2006-05-09T20:06:40-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=5290#p5290 <![CDATA[Re: Admins can't delete topics after security upgrade]]>
-> Added a password verification to the modcp.php file so anyone who possibly fakes a user
with some kind of cookie exploit, can not delete topics/posts via modcp.php.
Only by entering their password for verification.....


#
#-----[ OPEN ]---------------------------------------------
#
modcp.php

#
#-----[ FIND ]---------------------------------------------
# Dragonsys - Adjusted for easier find, the line which was here is located in the file multiple times
//
// Check if user did or did not confirm
// If they did not, forward them to the last page they were on
//

#
#-----[ BEFORE, ADD ]---------------------------------------------
#
#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====
if ( ($mode == 'delete') && ($confirm) )
{
$pass_one = isset($HTTP_POST_VARS['phpBBSecurity_verify']) ? $HTTP_POST_VARS['phpBBSecurity_verify'] : '';
$pass_two = $userdata['user_password'];
if (md5($pass_one) != $pass_two)
message_die(GENERAL_ERROR, $lang['PS_modcp_verify_fail']);
}
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== phpBB Security ========================================= |
#======================================================================= |

#
#-----[ FIND ]---------------------------------------------
#
'MESSAGE_TEXT' => $lang['Confirm_delete_topic'],

#
#-----[ AFTER, ADD ]---------------------------------------------
#
#======================================================================= |
#==== Start: == phpBB Security ========================================= |
#==== v1.0.3 =========================================================== |
#====
'L_VERIFY'=> '<br><br><span>'. $lang['PS_modcp_verify'] .' <input></span>',
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-tweaks.com] = |
#==== End: ==== phpBB Security ========================================= |
#======================================================================= |


I fixed this error with this edit correctly and all is well now. I hope this helps you. At least it did with my application. Have a nice day.......Ray

Statistics: Posted Author: DjPorkchop — Tue May 09, 2006 8:06 pm


]]>
2006-05-09T19:08:50-07:00 2006-05-09T19:08:50-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=5286#p5286 <![CDATA[Admins can't delete topics after security upgrade]]> Statistics: Posted Author: Thug Lyfe — Tue May 09, 2006 7:08 pm


]]>
2006-05-09T18:54:07-07:00 2006-05-09T18:54:07-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=5285#p5285 <![CDATA[Re: Admins can't delete topics after security upgrade]]>
So after downloading a more up-to-date release of the php security it finally it installed. Then I hit the incorrect password error. A Template issue.

If you run into the issue, I simply copied the files from the default template over to the one I am using and all it well! <img>

Hope this helps some of ya'll! Thanks everyone for your help!

Statistics: Posted Author: CopsOffDuty — Tue May 09, 2006 6:54 pm


]]>
2006-05-08T19:32:51-07:00 2006-05-08T19:32:51-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=5083#p5083 <![CDATA[Admins can't delete topics after security upgrade]]> Statistics: Posted Author: Thug Lyfe — Mon May 08, 2006 7:32 pm


]]>
2006-05-07T14:23:58-07:00 2006-05-07T14:23:58-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=4941#p4941 <![CDATA[Re: Admins can't delete topics after security upgrade]]>
"MWE_001";p="4938" wrote:
Found it humbled me once before over some edits. I sometimes shoot my mouth off without thinking first.


:mrgreen:

Statistics: Posted Author: found it — Sun May 07, 2006 2:23 pm


]]>
2006-05-07T13:11:06-07:00 2006-05-07T13:11:06-07:00 https://integramod.com/forum/viewtopic.php?t=384&p=4938#p4938 <![CDATA[Re: Admins can't delete topics after security upgrade]]> Statistics: Posted Author: DjPorkchop — Sun May 07, 2006 1:11 pm


]]>