Wir haben immer folgende Fehlermeldung bekommen:
Code:
PHP Fatal error: Uncaught exception 'Exception' with message 'Query error: Incorrect integer value: '' for column 'dlh_googlemap_zoom' at row 1 (INSERT INTO tl_content (type, floating, sortOrder, perRow, sliderSpeed, sliderStartSlide, com_order, com_template, dlh_googlemap_template, dlh_googlemap_zoom, pid, sorting, ptable, tstamp) VALUES ('text', 'above', 'ascending', 4, 300, 0, 'ascending', 'com_default', 'ce_dlh_googlemaps_default', '', 1, 256, 'tl_article', 0))' thrown in C:\Pfad entfernt\system\modules\core\library\Contao\Database\Statement.php on line 283
#0 C:\Pfad entfernt\system\modules\core\library\Contao\Database\Statement.php(254): Contao\Database\Statement->query()
#1 C:\Pfad entfernt\system\modules\core\drivers\DC_Table.php(690): Contao\Database\Statement->execute()
#2 C:\Pfad entfernt\system\modules\core\classes\Backend.php(429): Contao\DC_Table->create()
#3 C:\Pfad entfernt\contao\main.php(136): Contao\Backend->getBackendModule('article')
#4 C:\Pfad entfernt\contao\main.php(287): Main->run()
#5 {main}
Gelöst haben wir es, indem wir in der Datei "system\modules\dlh_googlemaps\dca\tl_content. php" in der Zeile 63 den Wert auf '0' gesetzt haben.
Code:
$GLOBALS['TL_DCA']['tl_content']['fields']['dlh_googlemap_zoom'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_content']['dlh_googlemap_zoom'],
'exclude' => true,
'inputType' => 'select',
'options' => array('1','2','3','4','5','6','7','8','9','10','11','12','13','14','15','16','17','18','19','20'),
'default' => '0',
'eval' => array('includeBlankOption'=>true, 'tl_class'=>'w50'),
'sql' => "int(10) unsigned NOT NULL default '0'"
);
Geholfen hat uns diese Seite hier:
http://www.garethalexander.co.uk/tec...olumn-id-row-1