Hi,
i'm new to contao. After setting up the core system i added the gallery by using the extension system of contao. That's leads me to a total brick of the whole installation with the message "An error occurred while executing this script!" on both, back and front end.
So i read the logs and found this:
While investigating the sql file i found out that these two instructions:[23-Jun-2010 16:23:43] PHP Fatal error: Uncaught exception 'Exception' with message 'Query error: Table 'dbname.tl_gallery_comments' doesn't exist (SELECT * FROM tl_gallery_comments)' thrown in /usr/local/pem/vhosts/17081/webspace/httpdocs/system/libraries/Database.php on line 599
do not work (cause of missing "," after the first NULL).-- --------------------------------------------------------
--
-- Table `tl_user_group`
--
CREATE TABLE `tl_user_group` (
`galleries` blob NULL
`galleryp` blob NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table `tl_user`
--
CREATE TABLE `tl_user` (
`galleries` blob NULL
`galleryp` blob NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
And i found out, that there is no command for creating the tabel tl_gallery_comments. Reading some threads i found out, that the system now should use tl_comments for the comments. Which leads me to the question why and where the tl_gallery_comments is used and what fields it has, that i can create it manually.
Bookmarks