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

awjrichards’s picture

This 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

awjrichards’s picture

Status: Active » Closed (fixed)

Closing this issue. Resolved in CVS rev 1.4 - contains an updated mls.install.