This is a discussion on New Problem within the osCMax v2 Installation issues forums, part of the osCMax v2.0 Forums category; My site http://giftshoping.com seemed to be working fine until yesterday. When I attempt to access the site I get this ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| My site http://giftshoping.com seemed to be working fine until yesterday. When I attempt to access the site I get this message(the cache is turned off) 1146 - Table 'craft1_giftshop.cache' doesn't exist DELETE FROM cache WHERE cache_expires <= '2006-04-20 11:20:33' [TEP STOP] |
|
#2
| ||||
| ||||
| Make sure the table named 'cache' is in your database. Use this sql to make it: Code: CREATE TABLE `cache` (
`cache_id` varchar(32) NOT NULL default '',
`cache_language_id` tinyint(1) NOT NULL default '0',
`cache_name` varchar(255) NOT NULL default '',
`cache_data` mediumtext NOT NULL,
`cache_global` tinyint(1) NOT NULL default '1',
`cache_gzip` tinyint(1) NOT NULL default '1',
`cache_method` varchar(20) NOT NULL default 'RETURN',
`cache_date` datetime NOT NULL default '0000-00-00 00:00:00',
`cache_expires` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`cache_id`,`cache_language_id`),
KEY `cache_id` (`cache_id`),
KEY `cache_language_id` (`cache_language_id`),
KEY `cache_global` (`cache_global`)
) TYPE=MyISAM
__________________ Michael Sasek osCMax Developer
|
|
#3
| |||
| |||
| Michael Thank you. That fixed the problem. Your help is very much appreciated. Jim |
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Email problem on webmail n aslo cupons problem | jikey | osCMax v2 Installation issues | 0 | 10-25-2006 11:43 PM |