View Single Post
  #25  
Old 05-28-2004, 11:35 AM
 
junaid junaid is offline
 

Advanced Member
  
Join Date: Dec 2003
Posts: 96
 

Default

Quote:
Originally Posted by shan
Quote:
i would be really helpful if you could give a bit attention to my post also

you must not have added the sql file to the datababase. Its looking for sql tables that are not there
i have added the sql file to the database and it is asking for the table which isnt in the sql file..
here is the sql file:
Quote:
CREATE TABLE `customercaremodule_messages` (
`id` tinyint(3) NOT NULL auto_increment,
`orderid` varchar(255) default NULL,
`sender` varchar(255) default NULL,
`message` text,
`senddate` varchar(255) default NULL,
`reply` varchar(255) default NULL,
`idle` varchar(255) default 'closed',
KEY `id` (`id`)
) TYPE=MyISAM AUTO_INCREMENT=12 ;

# --------------------------------------------------------

#
# Tablo yapısı : `customercaremodule_news`
#

CREATE TABLE `customercaremodule_news` (
`id` tinyint(3) NOT NULL auto_increment,
`title` varchar(255) default NULL,
`news` text,
`adddate` varchar(255) default NULL,
`link_if_it_is` varchar(255) default NULL,
KEY `id` (`id`)
) TYPE=MyISAM AUTO_INCREMENT=9 ;

# --------------------------------------------------------

#
# Tablo yapısı : `customercaremodule_questions`
#

CREATE TABLE `customercaremodule_questions` (
`id` tinyint(3) NOT NULL auto_increment,
`value` varchar(255) default NULL,
`idle` tinyint(5) unsigned default NULL,
KEY `id` (`id`)
) TYPE=MyISAM AUTO_INCREMENT=12 ;

# --------------------------------------------------------

#
# Tablo yapısı : `customercaremodule_reviews`
#

CREATE TABLE `customercaremodule_reviews` (
`id` tinyint(3) NOT NULL auto_increment,
`subject` varchar(255) default NULL,
`reviews` text,
`first_lastname` varchar(255) default NULL,
`country` varchar(50) default NULL,
`email` varchar(255) default NULL,
`status` varchar(255) default 'pasif',
regards
__________________
xcart 4.18 on linux
Reply With Quote