Bekijk de onderstaande video om te zien hoe je onze site als een web app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
[...]copy root/abq_image.php to abq_image.php
copy root/abq_mod/index.htm to abq_mod/index.htm
copy root/abq_mod/fonts/do-not-delete.ttf to abq_mod/fonts/do-not-delete.ttf
CREATE TABLE phpbb_anti_bot_quest_config (
config_name VARCHAR(255) NOT NULL,
config_value VARCHAR(255) NOT NULL,
PRIMARY KEY (config_name)
);
INSERT INTO phpbb_anti_bot_quest_config (config_name, config_value) VALUES ('abq_register', '0');
INSERT INTO phpbb_anti_bot_quest_config (config_name, config_value) VALUES ('abq_guest', '0');
INSERT INTO phpbb_anti_bot_quest_config (config_name, config_value) VALUES ('abq_variable_name', 'abq_0001');
INSERT INTO phpbb_anti_bot_quest_config (config_name, config_value) VALUES ('IndiQuests_CaseSensitive', '1');
INSERT INTO phpbb_anti_bot_quest_config (config_name, config_value) VALUES ('IndiQuests_ImagePHP', '0');
INSERT INTO phpbb_anti_bot_quest_config (config_name, config_value) VALUES ('Individuel_Questions', '1');
INSERT INTO phpbb_anti_bot_quest_config (config_name, config_value) VALUES ('Ratio_Auto_Indi_Questions', '50');
INSERT INTO phpbb_anti_bot_quest_config (config_name, config_value) VALUES ('AutoQuestion_01', '0');
[...]
[...]#
#-----[ OPEN ]------------------------------------------------
#
posting.php
#
#-----[ FIND ]------------------------------------------------
#
include($phpbb_root_path . 'includes/functions_post.'.$phpEx);
#
#-----[ AFTER, ADD ]------------------------------------------------
#
// Anti Bot Question Mod - Start
include($phpbb_root_path . 'includes/functions_abq.' . $phpEx);
// Anti Bot Question Mod - End
en voeg erachter toe:include($phpbb_root_path . 'includes/functions_post.'.$phpEx);
// Anti Bot Question Mod - Start
include($phpbb_root_path . 'includes/functions_abq.' . $phpEx);
// Anti Bot Question Mod - End
[...]admin/admin_users.php
#
#-----[ FIND ]------------------------------------------------
#
$email = ( !empty($HTTP_POST_VARS['email']) ) ? trim(strip_tags(htmlspecialchars( $HTTP_POST_VARS['email'] ) )) : '';
#
#-----[ REPLACE WITH ]----------------------------------------
#
// Anti Bot Question Mod - Start
if ($abq_config['abq_register'])
{
$email = ( !empty($HTTP_POST_VARS[$abq_config['email_variable_name']]) ) ? trim(strip_tags(htmlspecialchars( $HTTP_POST_VARS[$abq_config['email_variable_name']] ) )) : '';
}
else
{
// Anti Bot Question Mod - End
$email = ( !empty($HTTP_POST_VARS['email']) ) ? trim(strip_tags(htmlspecialchars( $HTTP_POST_VARS['email'] ) )) : '';
// Anti Bot Question Mod - Start
}
// Anti Bot Question Mod - End
#
Vervang die tekst door:$email = ( !empty($HTTP_POST_VARS['email']) ) ? trim(strip_tags(htmlspecialchars( $HTTP_POST_VARS['email'] ) )) : '';
// Anti Bot Question Mod - Start
if ($abq_config['abq_register'])
{
$email = ( !empty($HTTP_POST_VARS[$abq_config['email_variable_name']]) ) ? trim(strip_tags(htmlspecialchars( $HTTP_POST_VARS[$abq_config['email_variable_name']] ) )) : '';
}
else
{
// Anti Bot Question Mod - End
$email = ( !empty($HTTP_POST_VARS['email']) ) ? trim(strip_tags(htmlspecialchars( $HTTP_POST_VARS['email'] ) )) : '';
// Anti Bot Question Mod - Start
}
// Anti Bot Question Mod - End
We gebruiken essentiële cookies om deze site te laten werken, en optionele cookies om de ervaring te verbeteren.