Hi,
I am following the lessons on component development in the "Learning Joomla! 1.5 Extension Development" book. I've followed the instructions in the chapter exactly, creating a component I call "carousel". I've only created the Admin back-end, and I'm able to view the form for creating a new entry or edit existing one, but cannot save or apply changes. Clicking the "Save", "Apply", and "Cancel" buttons only takes me to the Admin index page, but no changes in the DB. However, if I add entries directly in the DB using SQL I'm able to view a listing of them in the Admin interface correctly.
I am using Joomla 1.5.20, PHP 5.2.3 and MySQL 5.0.41 on Windows XP. You can download a zip file of the "com_carousel" folder (which I have in the "administrator/components" folder) from here. I've also correctly registered the component in the DB, such that I'm able to see it under the "Components" menu in the back-end. Here is the SQL am using to create the table "jos_carousel":
CREATE TABLE `jos_carousel` (
`id` INT( 11 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`title` VARCHAR( 255 ) NOT NULL ,
`description` TEXT NOT NULL ,
`published` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE = innodb;
Please help.
Rgds, Simon