it is a file in your forums root. Youll need either an FTP client program such as filezilla or your CPanel/Plesk file manager to edit the files.
To turn on the ctracker debug function,
OPEN
forum root/ctracker/engines/ct_security.php
FIND
define('CT_DEBUG_MODE', false);
REPLACE WITH
define('CT_DEBUG_MODE', true);
SAVE FILE
now repeat the steps you took to set off ctracker. After ctracker blocks you with its warning, it will write your code to the debug file. to find your debug info,
OPEN
forum root/ctracker/logfiles/logfile_debug_mode.txt
it will give you code that looks something like this (it will vary depending on what set it off)
#
#-----[ OPEN ]------------------------------------------
#
/forum/admin/admin_forums_extend.php
#
#-----[ FIND ]------------------------------------------
#
include($phpbb_root_path . 'common.'.$phpEx);
#
#-----[ BEFORE, ADD ]------------------------------------------
#
define('CT_SECLEVEL', 'MEDIUM');
$ct_ignorepvar = array('desc');
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Do the edit that it tells you to, but change
define('CT_SECLEVEL', 'MEDIUM');
to
define('CT_SECLEVEL', 'LOW');
then go back to
forum root/ctracker/engines/ct_security.phpand change it back to
define('CT_DEBUG_MODE', false);
save it and you should now be able to do the function that was blocked.
If you have to edit a file twice for two different functions, do not add the full code twice, just add the function, separated by a comma.
So your first edit may look like this
define('CT_SECLEVEL', 'LOW');
$ct_ignorepvar = array('desc');
and your second edit might look like this
define('CT_SECLEVEL', 'LOW');
$ct_ignorepvar = array('desc','delete');
here is the code for forums_extend.php
this will save you some time
OPEN
forum root/admin/forums_extend.php
FIND
AFTER, ADD
define('CT_SECLEVEL', 'LOW');
$ct_ignorepvar = array('create','delete','name','icon','desc');