yes, I have a mysql database.
im not sure if any tables have been created. how would i check?
the site functions normally and it checks login details are correct so i presume that a table has been created for that?
sorry my knowledge is limited.
i dont know about $dbname
yes basically it needs a script to check signupdate and current date. I dont know if there is already a table for this and that i just havent found it yet.
some people have mentioned about common.php being placed in the header or page.
I cant find one on my server but have seen a config.inc.php and a common.inc.php if thats any help.
thankyou for helping me. I know its fustrating working with 'noobs'
EDIT-
I have found a .sql file in the server. Is this the table that is needed?
#
Table structure for table 'members'
#
CREATE TABLE @DB_MYSQL_PREFIX@members (
member_id int(11) NOT NULL auto_increment,
login varchar(32) NOT NULL,
pass varchar(32) default NULL,
email varchar(64) default NULL,
name_f varchar(32) NOT NULL default '',
name_l varchar(32) NOT NULL default '',
street varchar(255) default NULL,
city varchar(255) default NULL,
state varchar(255) default NULL,
zip varchar(255) default NULL,
country varchar(255) default NULL,
is_male smallint(6) default NULL,
added datetime NOT NULL default '0000-00-00 00:00:00',
remote_addr varchar(15) default NULL,
data text NOT NULL,
PRIMARY KEY (member_id),
UNIQUE KEY login (login)
) ;