4images Forum & Community
4images Issues / Ausgaben => Discussion & Troubleshooting => Topic started by: gurl on May 11, 2003, 01:34:08 AM
-
I read in the FAQ about the header topic http://www.4homepages.de/forum/viewtopic.php?t=3378 , but still can't solve my problems. I got the similar error.
In 3 of those ways that Chris mentioned, i'm not either in no. 2 or 3. But I'm not sure if i'm no. 1 cause I haven't edit any php files. Just to make sure, I did reupload the backup (straight from the 4images package) files. So there is any other possiblity of this error occured?
[/u]
-
Whats exactly the problem? Please post any error messages.
Jan
-
thanx for replying.
I don't get this headers problem anymore since people stop visiting my forum cause 4images doesn't work.
but this is my other question. I got this error Unknown column 'user_homepage' in 'field list'
whenever I try to dump data for 4images_users. i tried to empty out & repair the tables several times, but it didn't work.
-
Are you sure that this field exists in the table? If not, use this dump to create a clean new table:
DROP TABLE IF EXISTS 4images_users;
CREATE TABLE 4images_users (
user_id mediumint(8) NOT NULL auto_increment,
user_level smallint(6) NOT NULL default '1',
user_name varchar(255) NOT NULL default '',
user_password varchar(255) NOT NULL default '',
user_email varchar(255) NOT NULL default '',
user_showemail tinyint(1) NOT NULL default '0',
user_allowemails tinyint(1) NOT NULL default '1',
user_invisible tinyint(1) NOT NULL default '0',
user_joindate int(11) NOT NULL default '0',
user_activationkey varchar(32) NOT NULL default '',
user_lastaction int(11) NOT NULL default '0',
user_location varchar(255) NOT NULL default '',
user_lastvisit int(11) NOT NULL default '0',
user_comments smallint(6) unsigned NOT NULL default '0',
user_homepage varchar(255) NOT NULL default '',
user_icq varchar(20) NOT NULL default '',
PRIMARY KEY (user_id),
KEY user_lastaction (user_lastaction),
KEY user_name (user_name)
) TYPE=MyISAM;
Jan