Forum

V5.0.0: attachement...
 
Notifications
Retirer tout

V5.0.0: attachement / attachment

4 Posts
3 Utilisateurs
0 Reactions
6,167 Vu
(@mboelke)
Posts: 6
Active Member
Début du sujet
 
[#2377]

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


 
Posté : 19/06/2015 1:48 pm
(@babynus)
Posts: 14952
Membre Admin
 

Thanks for reporting issue and bringing solution.

This will help for a fix in V5.0.1.


 
Posté : 19/06/2015 1:56 pm
 bel
(@belseb)
Posts: 1
New Member
 

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


 
Posté : 24/06/2015 12:38 pm
(@babynus)
Posts: 14952
Membre Admin
 

Thanks for sharing your solution.

Other easy solution : intall patch V5.0.1 that fixes the isse. ; )


 
Posté : 24/06/2015 1:51 pm
Share:
Retour en haut