No problem, but I will post anyway if someone has an idea. I made some changes but no luck so far. I ran a new SQL query
'CREATE TABLE `ratings` (
`id` VARCHAR( 11 ) NOT NULL ,
`total_value` INT( 11 ) NOT NULL DEFAULT '0',
`total_votes` INT( 11 ) NOT NULL DEFAULT '0',
`used_ips` LONGTEXT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM AUTO_INCREMENT =3;'
This ran and then I initialized by running.
'INSERT INTO `clientz_ratings` ( `id` , `total_value` , `total_votes` , `used_ips` )
VALUES (
'1', '0', '0', NULL
), (
'2', '0', '0', NULL
);'
The paths seem ok to me. Everything runs fine (i.e. no errors) except the vote does not register!!