Until version V4.5.6 the files are stored with the folder "attachement_" + number.
With version V5.0.0 the mistake is cleaned out and the folder ist named "attachment_".
But you're not able to use the old files when you're upgrading from an V4.x-Version.
I've done two steps to solve the problem:
1. renaming all folders on the file system
2. renaming all entrys in the database concerning to the attachments.
As I wrote:
This feature belongs to an upgrade from V4 to V5!
Regards
Mathias
Thanks for reporting issue and bringing solution.
This will help for a fix in V5.0.1.
My solution to solve this problem without renaming all folders on the file system.
two SQL Queries
update projeqtor.attachment
SET subDirectory = replace(subDirectory,'attachement','attachment')
WHERE subDirectory LIKE ('%attachement%');
and
update projeqtor.attachment
SET subDirectory = replace(subDirectory,'attachment_','attachement_')
WHERE subDirectory LIKE ('%attachment%');
Regards
Sébastien
IDA informatique
Thanks for sharing your solution.
Other easy solution : intall patch V5.0.1 that fixes the isse. ; )