[Umbraco 6.2.4] umbracoFile not saved when uploading media
A client of mine started reporting issues with uploading images. Before the 6.2.4 version was uploading images just fine. Now, when I upload one, it will save all properties to the database except the "umbracoFile", even though its set.
Event when I "hijack" say the mediauploader.ashx and do:
// Handle media Item
var media = factory.HandleMedia(parentNodeId, postedMediaFile, AuthenticatedUser);
media.SetProperty("umbracoFile", string.Format("/media/{0}/{1}", media.Id, postedMediaFile.FileName));
media.Save();
It will still not persist.
Has anyone seen this before and know why this is happening all of a sudden?
EDIT: The file is actually uploaded and created just fine.
[Umbraco 6.2.4] umbracoFile not saved when uploading media
A client of mine started reporting issues with uploading images. Before the 6.2.4 version was uploading images just fine. Now, when I upload one, it will save all properties to the database except the "umbracoFile", even though its set.
Event when I "hijack" say the mediauploader.ashx and do:
It will still not persist.
Has anyone seen this before and know why this is happening all of a sudden?
EDIT: The file is actually uploaded and created just fine.
Doh, I had an epiphany. Apparently someone modified the upload datatype to be a date-format...
is working on a reply...