Quote:
Phil, when I submit a testimonial I got a notification email with the content. But when I look in admin, nothing's there. It's like nothing is being submitted at all. Got any idea how to fix this?
|
- Has it stored testimonials correctly before?
- Are you seeing the testimonials table grid in admin? If so, are there any testimonial entries in there?
- Are you sure the testimonials database table exists? (named 'testimonials' - if not, you'll need to reapply the patch below)
Code:
CREATE TABLE IF NOT EXISTS `testimonials` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(128 NOT NULL default '',
`email` varchar(128 NOT NULL default '',
`company` varchar(128 NOT NULL default '',
`website` varchar(128 NOT NULL default '',
`testimonial` text NOT NULL,
`rating` varchar(2) NOT NULL default '0',
`ip` varchar(15) NOT NULL default '0',
`added` varchar(50) NOT NULL,
`approved` varchar(1) NOT NULL default 'N',
`comments` text NOT NULL,
PRIMARY KEY (`id`)
);
If you are still stuck, please post a support ticket.