Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

In this Discussion

  • Tim September 2010

Bug Fix for XLXS and DOCX

This discussion is related to the FileUpload addon.
I ran into a problem not being able to upload xlxs and docx files. The garden_Media.Type column is limited to 64 characters and php for these files was returning something like:

application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

Which is 65 characters.

The fix is to change the column type to 128 characters and change line 520 in class.fileupload.plugin.php from:

->Column('Type', 'varchar(64)')

to

->Column('Type', 'varchar(128)')
Tagged:

Comments

Sign In or Register to comment.