Have you tried running the script before posting this problem?
It seems that you have to copy one of the statements in the .sql file (both statement are seperated by the php comments), which i assume you are not updating, but installing the script from scratch, thus you need this statement:
PHP Code:
CREATE TABLE calendar (
id bigint(14) unsigned NOT NULL auto_increment,
year smallint(4) unsigned NOT NULL default '0',
month tinyint(2) unsigned NOT NULL default '0',
day tinyint(2) unsigned NOT NULL default '0',
weekday tinyint(1) unsigned NOT NULL default '0',
hour tinyint(2) unsigned NOT NULL default '0',
minute tinyint(2) unsigned NOT NULL default '0',
end_date bigint(14) unsigned NOT NULL default '0',
duration smallint(2) unsigned NOT NULL default '0',
event_type tinyint(1) unsigned NOT NULL default '0',
header varchar(100) NOT NULL default '',
body text NOT NULL,
PRIMARY KEY (id),
KEY id (id)
) TYPE=MyISAM;
You need to put this into a mySQL database, for which you need access to phpMyAdmin, do you know if you can do this? If so, consult the Help section there about inserting SQL statements, via a Query.
when they ask you to set up the config.inc.php they mean simply to go through it and change anything that would otherwise halt the operation of the script.
For example, if the file 'calendar.delete.php' was actually somewhere other than in the SAME directory as the config.inc.php then this need to be specified in the line
PHP Code:
$cal->PATH_PAGE_DELETE = 'calendar.delete.php'; // POST file
Further down the script you can also alter the display of the month names, and stuff.
Hopefully, this might have cleared somethings up for you.