Hi, when inserting the following into phpmyadmin :
Code:
INSERT INTO edl_configuration( configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function )
VALUES (
'Enable CSS buttons (catalog)', 'CSSBUTTONS_CATALOG_ENABLE', 'true', 'If true, CSS buttons for the catalog are enabled', @cssbuttonsid , 10, NULL , 'zen_cfg_select_option(array("true", "false"),'
)
I'm getting the following error :
Code:
MySQL a répondu:Documentation
#1048 - Column 'configuration_group_id' cannot be null
Problem seams to come from the fact that it is considering : @cssbuttonsid as being null.
Any idea how to solve the problem.
Cheers.