I download Drupal 5.x and put it in www of easyPHP.
Running localhost, database drupal and username= root, the install scrip see above message:

Warning: Table 'drupal.access' doesn't exist query: SELECT CASE WHEN status=1 THEN 0 ELSE 1 END FROM access WHERE type = 'host' AND LOWER('127.0.0.1') LIKE LOWER(mask) ORDER BY status DESC LIMIT 0, 1 in c:\program files\easyphp1-8\www\drupal-5.1\includes\database.mysql.inc on line 172

Warning: session_start(): Cannot send session cookie - headers already sent by (output started at c:\program files\easyphp1-8\www\drupal-5.1\includes\database.mysql.inc:172) in c:\program files\easyphp1-8\www\drupal-5.1\includes\bootstrap.inc on line 811

Warning: Table 'drupal.cache' doesn't exist query: SELECT data, created, headers, expire FROM cache WHERE cid = 'variables' in c:\program files\easyphp1-8\www\drupal-5.1\includes\database.mysql.inc on line 172

Warning: Table 'drupal.variable' doesn't exist query: SELECT * FROM variable in c:\program files\easyphp1-8\www\drupal-5.1\includes\database.mysql.inc on line 172

Notice: Undefined variable: variables in c:\program files\easyphp1-8\www\drupal-5.1\includes\bootstrap.inc on line 349

Warning: Table 'drupal.cache' doesn't exist query: LOCK TABLES cache WRITE in c:\program files\easyphp1-8\www\drupal-5.1\includes\database.mysql.inc on line 172

Warning: Table 'drupal.cache' doesn't exist query: UPDATE cache SET data = 'N;', created = 1174247002, expire = 0, headers = '' WHERE cid = 'variables' in c:\program files\easyphp1-8\www\drupal-5.1\includes\database.mysql.inc on line 172

Notice: Undefined variable: variables in c:\program files\easyphp1-8\www\drupal-5.1\includes\bootstrap.inc on line 356

Warning: Table 'drupal.cache_page' doesn't exist query: SELECT data, created, headers, expire FROM cache_page WHERE cid = 'http://127.0.0.1:8080/drupal-5.1/' in c:\program files\easyphp1-8\www\drupal-5.1\includes\database.mysql.inc on line 172

Warning: Cannot modify header information - headers already sent by (output started at c:\program files\easyphp1-8\www\drupal-5.1\includes\database.mysql.inc:172) in c:\program files\easyphp1-8\www\drupal-5.1\includes\bootstrap.inc on line 488

Warning: Cannot modify header information - headers already sent by (output started at c:\program files\easyphp1-8\www\drupal-5.1\includes\database.mysql.inc:172) in c:\program files\easyphp1-8\www\drupal-5.1\includes\bootstrap.inc on line 490

Warning: Table 'drupal.url_alias' doesn't exist query: SELECT COUNT(pid) FROM url_alias in c:\program files\easyphp1-8\www\drupal-5.1\includes\database.mysql.inc on line 172

Warning: Table 'drupal.system' doesn't exist query: SELECT * FROM system WHERE type = 'theme' in c:\program files\easyphp1-8\www\drupal-5.1\includes\database.mysql.inc on line 172

Notice: Undefined property: theme in c:\program files\easyphp1-8\www\drupal-5.1\includes\theme.inc on line 45

Notice: Undefined index: garland in c:\program files\easyphp1-8\www\drupal-5.1\includes\theme.inc on line 58

Notice: Undefined index: garland in c:\program files\easyphp1-8\www\drupal-5.1\includes\theme.inc on line 67

Notice: Undefined index: garland in c:\program files\easyphp1-8\www\drupal-5.1\includes\theme.inc on line 72

Notice: Undefined index: garland in c:\program files\easyphp1-8\www\drupal-5.1\includes\theme.inc on line 76

Fatal error: Call to undefined function: block_list() in c:\program files\easyphp1-8\www\drupal-5.1\includes\theme.inc on line 1013

Warning: Table 'drupal.watchdog' doesn't exist query: INSERT INTO watchdog (uid, type, message, severity, link, location, referer, hostname, timestamp) VALUES (0, 'php', 'Table 'drupal.sessions' doesn't exist\nquery: SELECT sid FROM sessions WHERE sid = '5c480e11ab7eb27e956bd0e459f5f1e0' in c:\\program files\\easyphp1-8\\www\\drupal-5.1\\includes\\database.mysql.inc on line 172.', 2, '', 'http://127.0.0.1:8080/drupal-5.1/', 'http://127.0.0.1:8080/', '127.0.0.1', 1174247003) in c:\program files\easyphp1-8\www\drupal-5.1\includes\database.mysql.inc on line 172

What wrong? Help me please

Comments

ivan zugec’s picture

Try loging into mysql via cmd or phpmyadmin and see if everythings working, and try to repair the table. If that doesnt work, i hope you have a backup of your db.

good luck

--------------------------------------------------
http://www.usingdrupal.com
Tutorial Screencasts

Fintan’s picture

http://drupal.org/node/120216

Hope it solves it for you too.

Dabitch’s picture

What if we are not installing, but upgrading?

Can we build the access table in mysql on it's own, like so:

CREATE TABLE `access` (
`aid` int(11) NOT NULL auto_increment,
`mask` varchar(255) NOT NULL default '',
`type` varchar(255) NOT NULL default '',
`status` tinyint(2) NOT NULL default '0',
PRIMARY KEY (`aid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

tomlurge’s picture

at least for me it did! after 24 hours of following false tracks...