Code: Select all
Fatal error: Call to undefined function challenge_delete_user() in /home/www/xxx.org/includes/arcade/arcade_admin_class.php on line 395
Code: Select all
Fatal error: Call to undefined function challenge_delete_user() in /home/www/xxx.org/includes/arcade/arcade_admin_class.php on line 395
We might have to wait for KillBill to see this, I am not that familiar with the challenge mod. But try changing theStoker 4.0 wrote:Thanks, but that results in this:Code: Select all
Fatal error: Call to undefined function challenge_delete_user() in /home/www/xxx.org/includes/arcade/arcade_admin_class.php on line 395
define('USE_ARCADE_ADMIN', true);
to define('IN_ADMIN', true);
Code: Select all
//Start remove arcade user data
if (!class_exists('arcade_admin'))
{
include($phpbb_root_path . 'includes/arcade/arcade_common.' . $phpEx);
}
if (!isset($arcade))
{
$arcade = new arcade_admin();
}
$arcade->delete_user($user_id, $user_row['username']);
//End remove arcade user data
Seems like your bigger issue is the spam.Stoker 4.0 wrote:... Then I could delete about 500 spammers
Sure, a board not maintained in 6 month that uses the reCaptcha will give some workkeith10456 wrote:Seems like your bigger issue is the spam.
includes/arcade/arcade_admin_class.phpStoker 4.0 wrote:Thanks, but that results in this:Code: Select all
Fatal error: Call to undefined function challenge_delete_user() in /home/www/xxx.org/includes/arcade/arcade_admin_class.php on line 395
Code: Select all
// start ultimate challenge
challenge_delete_user($user_id, $username);
// end ultimate challenge
Code: Select all
// start ultimate challenge
if (!function_exists('challenge_delete_user'))
{
global $phpbb_root_path, $phpEx;
include($phpbb_root_path . 'includes/challenge/functions_arcade_admin.' . $phpEx);
}
challenge_delete_user($user_id, $username);
// end ultimate challenge
Code: Select all
Fatal error: Call to undefined function adm_page_header() in /home/www/xxx.org/includes/functions.php on line 3837
define('IN_ADMIN', true);
-> not mustCode: Select all
if (!class_exists('arcade_admin'))
{
include($phpbb_root_path . 'includes/arcade/arcade_common.' . $phpEx);
}
Code: Select all
if (!class_exists('arcade_admin'))
{
define('USE_ARCADE_ADMIN', true);
include($phpbb_root_path . 'includes/arcade/arcade_common.' . $phpEx);
}
Code: Select all
if (defined('IN_ADMIN'))
Code: Select all
if (defined('IN_ADMIN') || defined('USE_ARCADE_ADMIN'))
Code: Select all
if(defined('IN_ADMIN'))
Code: Select all
if(defined('IN_ADMIN') || defined('USE_ARCADE_ADMIN'))
Code: Select all
[phpBB Debug] PHP Notice: in file /tour.php on line 274: Undefined index: 1670
Code: Select all
SQL ERROR [ mysqli ]
Column 'topic_attr_id' cannot be null [1048]
SQL
INSERT INTO phpbb_topics (topic_poster, topic_time, topic_last_view_time, forum_id, icon_id, topic_approved, topic_title, topic_first_poster_name, topic_first_poster_colour, topic_type, topic_time_limit, topic_attachment, topic_attr_id, topic_attr_user, topic_attr_time) VALUES (2, 1299724168, 1299724168, '35', 0, 1, '[GAME RELEASE] 3D Superball (2)', 'Hawk', 'AA0000', 0, 0, 0, NULL, '2', 1299724168)
BACKTRACE
FILE: includes/db/mysqli.php
LINE: 163
CALL: dbal->sql_error()
FILE: includes/functions_posting.php
LINE: 2090
CALL: dbal_mysqli->sql_query()
FILE: includes/arcade/arcade_admin_class.php
LINE: 2111
CALL: submit_post()
FILE: includes/acp/acp_arcade_games.php
LINE: 107
CALL: arcade_admin->create_announcement()
FILE: includes/acp/acp_arcade_games.php
LINE: 46
CALL: acp_arcade_games->add_games()
FILE: includes/functions_module.php
LINE: 518
CALL: acp_arcade_games->main()
FILE: adm/index.php
LINE: 78
CALL: p_master->load_active()
Quick Title Edition MOD -> yesLoneHawk wrote:Well the arcade is running fine along with all the permissions etc, however when I go to add a game (already unpacked successfully) via the ACP I get the following error:
I'm guessing it has something to do with the Quick Title Edition MOD, but I can't seem to find a way around this.Code: Select all
SQL ERROR [ mysqli ] Column 'topic_attr_id' cannot be null [1048] SQL INSERT INTO phpbb_topics (topic_poster, topic_time, topic_last_view_time, forum_id, icon_id, topic_approved, topic_title, topic_first_poster_name, topic_first_poster_colour, topic_type, topic_time_limit, topic_attachment, topic_attr_id, topic_attr_user, topic_attr_time) VALUES (2, 1299724168, 1299724168, '35', 0, 1, '[GAME RELEASE] 3D Superball (2)', 'Hawk', 'AA0000', 0, 0, 0, NULL, '2', 1299724168) BACKTRACE FILE: includes/db/mysqli.php LINE: 163 CALL: dbal->sql_error() FILE: includes/functions_posting.php LINE: 2090 CALL: dbal_mysqli->sql_query() FILE: includes/arcade/arcade_admin_class.php LINE: 2111 CALL: submit_post() FILE: includes/acp/acp_arcade_games.php LINE: 107 CALL: arcade_admin->create_announcement() FILE: includes/acp/acp_arcade_games.php LINE: 46 CALL: acp_arcade_games->add_games() FILE: includes/functions_module.php LINE: 518 CALL: acp_arcade_games->main() FILE: adm/index.php LINE: 78 CALL: p_master->load_active()
Code: Select all
'enable_indexing' => true,
Code: Select all
'attr_id' => -1,