Author Topic: have question about the header topic in FAQ  (Read 4112 times)

0 Members and 1 Guest are viewing this topic.

Offline gurl

  • Newbie
  • *
  • Posts: 32
    • View Profile
have question about the header topic in FAQ
« 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]

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
have question about the header topic in FAQ
« Reply #1 on: June 04, 2003, 10:45:11 AM »
Whats exactly the problem? Please post any error messages.

Jan
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline gurl

  • Newbie
  • *
  • Posts: 32
    • View Profile
have question about the header topic in FAQ
« Reply #2 on: June 05, 2003, 07:50:07 AM »
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
Code: [Select]
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.

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
have question about the header topic in FAQ
« Reply #3 on: June 05, 2003, 09:36:06 AM »
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;
Code: [Select]
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
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search