[Solved] Calendar Custom Fields not working
Posted: Fri Aug 31, 2007 8:51 pm
I've installed a fresh version of cmsms 1.1.1 and Calendar 0.7.10
Values of custom fields where not persisted in the db. Found the problem :
The table cms_module_calendar_event_field_values was not created on my db. I don't know why ...
I'm running cmsms on WinXP, Apache 2.2.4, PHP 5.2.3 and MySQL 5.0.45-community-nt
I've simply run the following sql script in order to create the missing table :
Hope that will help someone
Values of custom fields where not persisted in the db. Found the problem :
The table cms_module_calendar_event_field_values was not created on my db. I don't know why ...
I'm running cmsms on WinXP, Apache 2.2.4, PHP 5.2.3 and MySQL 5.0.45-community-nt
I've simply run the following sql script in order to create the missing table :
Code: Select all
CREATE TABLE cms_module_calendar_event_field_values (
field_name varchar(255) NULL,
event_id varchar(25) NULL,
field_value text NULL
)
GO