Closed (fixed)
Project:
MLS Module
Version:
5.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Jan 2009 at 05:26 UTC
Updated:
20 Feb 2009 at 23:17 UTC
When mapping fields (path: mls/field_map/1), I can store any six fields successfully, but then as soon as I choose a 7th field and submit, the form is entirely blank. There are no errors and the module even gives me the message "The fields were successfully mapped!". Also, submitting the page sometimes causes WSOD without any apparent reason.
Comments
Comment #1
awjrichards commentedThis is a bug.
The problem is that the field 'field_map' in the table 'mls_field_map' is too small. When the module creates the table, it sets the field to be varchar(255). The field should be text. You can alter this through PHPMyAdmin or run the following SQL:
ALTER TABLE mls_field_map CHANGE field_map field_map TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL
Comment #2
awjrichards commentedClosing this issue. Resolved in CVS rev 1.4 - contains an updated mls.install.