Code: Alles auswählen
Parse error: parse error, expecting `')'' in /var/www/web102/html/index/phpBB2/postbox.php on line 121
Code: Alles auswählen
Parse error: parse error, expecting `')'' in /var/www/web102/html/index/phpBB2/postbox.php on line 121
Code: Alles auswählen
'U_POSTBOX_USER'append_sid("postbox_user.$phpEx?user_id=". $userdata['user_id']),
Code: Alles auswählen
'U_POSTBOX_USER' => append_sid("postbox_user.$phpEx?user_id=". $userdata['user_id']),
Code: Alles auswählen
'EMPTY'lang['Postbox_none_messages'])
Code: Alles auswählen
'EMPTY' => $lang['Postbox_none_messages'])
Code: Alles auswählen
Could not get postbox data
DEBUG MODE
SQL Error : 1146 Table 'usr_web102_6.POSTBOX_USERS_TABLE' doesn't exist
SELECT pu.box_id, pu.pbdesc, pu.auth, pu.message_count, pm.message_time, u.username FROM POSTBOX_USERS_TABLE pu, POSTBOX_MSG_TABLE pm, phpbb_users u WHERE pu.user_id = u.user_id GROUP BY pu.box_id ORDER BY pu.last_message_id DESC
Line : 43
File : /var/www/web102/html/index/phpBB2/postbox.php
CREATE TABLE phpbb_postbox_msg ( message_id mediumint(10) unsigned NOT NULL auto_increment, box_id mediumint(8) NOT NULL default '0', message_time int(11) NOT NULL default '0', PRIMARY KEY (message_id) ) TYPE=MyISAM
+++ Error: Table 'phpbb_postbox_msg' already exists
CREATE TABLE phpbb_postbox_msg_text ( message_id mediumint(10) unsigned NOT NULL default '0', bbcode_uid varchar(10) NOT NULL default '', message_subject varchar(60) default NULL, message_text text, PRIMARY KEY (message_id,message_id) ) TYPE=MyISAM
+++ Error: Table 'phpbb_postbox_msg_text' already exists
CREATE TABLE phpbb_postbox_user ( box_id mediumint(8) NOT NULL auto_increment, user_id mediumint(8) NOT NULL default '0', create_date int(11) NOT NULL default '0', auth tinyint(1) NOT NULL default '0', pbdesc text, message_count mediumint(8) NOT NULL default '0', last_message_id mediumint(8) unsigned NOT NULL default '0', KEY box_id (box_id) ) TYPE=MyISAM
+++ Error: Table 'phpbb_postbox_user' already exists
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------
#
includes/constants.php
#
#-----[ FIND ]------------------------------------------
#
define('GROUPS_TABLE', $table_prefix.'groups');
#
#-----[ AFTER, ADD ]------------------------------------------
#
// Postbox
define('POSTBOX_MSG_TABLE', $table_prefix.'postbox_msg');
define('POSTBOX_TXT_TABLE', $table_prefix.'postbox_msg_text');
define('POSTBOX_USERS_TABLE', $table_prefix.'postbox_user');
GrußCREATE TABLE phpbb_postbox_msg_text ( message_id mediumint(10) unsigned NOT NULL default '0', bbcode_uid varchar(10) NOT NULL default '', message_subject
varchar(60) default NULL, message_text text, PRIMARY KEY (message_id) ) TYPE=MyISAM
Hoffentlich wisst ihr vlt warum bei mir so eine Problem Nachricht erscheint...Could not get postbox data
DEBUG MODE
SQL Error : 1054 Unknown column 'new_msg' in 'field list'
SELECT SUM(new_msg) as new_message FROM phpbb_postbox_user WHERE user_id = '2'
Line : 80
File : postbox.php