Fehlermeldung beim ändern des PW über ACP
Verfasst: 16.10.2008 13:31
Wenn ich für einen user das PW im ACP bereich ändern möchte, dann bekomme ich folgende Fehlermeldung
Kann mir da jemand weiter helfen?
hier mal die entsprechenden Zeilen:
functions.php Zeile: 2738-2742
acp_users.php Zeile: 814-818
functions_module.php Zeile: 469 -472
adm/index.php Zeile: 75-76
Code: Alles auswählen
SQL ERROR [ mysql4 ]
Column 'log_ip' cannot be null [1048]
SQL
INSERT INTO phpbb_log (user_id, log_ip, log_time, log_operation, log_data, log_type) VALUES (1, NULL, 1224156353, 'LOG_USER_USER_UPDATE', 'a:1:{i:0;s:9:\"RyoBerlin\";}', 0)
BACKTRACE
FILE: includes/db/mysql.php
LINE: 158
CALL: dbal_mysql->sql_error()
FILE: includes/functions.php
LINE: 2740
CALL: dbal_mysql->sql_query()
FILE: includes/acp/acp_users.php
LINE: 816
CALL: add_log()
FILE: includes/functions_module.php
LINE: 471
CALL: acp_users->main()
FILE: adm/index.php
LINE: 76
CALL: p_master->load_active()
hier mal die entsprechenden Zeilen:
functions.php Zeile: 2738-2742
Code: Alles auswählen
}
$db->sql_query('INSERT INTO ' . LOG_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary));
return $db->sql_nextid();Code: Alles auswählen
$GLOBALS['wpu_actions']->profile_update('reg_details', $user_id, $user_row['user_wpuint_id'], $sql_ary);
add_log('admin', 'LOG_USER_USER_UPDATE', $data['username']);
trigger_error($user->lang['USER_OVERVIEW_UPDATED'] . adm_back_link($this->u_action . '&u=' . $user_id));Code: Alles auswählen
if ($execute_module)
{
$this->module->main($this->p_name, $this->p_mode);
}Code: Alles auswählen
// Load and execute the relevant module
$module->load_active();