and after no users, ressources and contact ...
i must to change the root directory to refind ressources .... or delete de folder attachement _19
Check log file.
In tool/parametersLocation.php you'll find location of parameters.php file
In parameters.php file you'll find location of log file.
Default is files/logs/projeqtor{date}.log
this is on the log files:
2015-03-26 12:10:51 ** ERROR ** Cannot create image thumb of size 48 for /home/projeqtor/Documents//attachement_19/025Pikachu_OS_anime_4.png
2015-03-26 12:10:55 ** ERROR ** Cannot create image thumb of size 80 for /home/projeqtor/Documents//attachement_19/025Pikachu_OS_anime_4.png
A little
chmod -R 777 /var/www/html/projeqtor/files
should do the job.
not working...
it's really strange... all of document are OK, this problem is just with the picture of ressource...
The issue is that ProjeQtOr generates some thumbs (small pictures) of the images to be displaued in lists.
It generates tem in ${projeqtorRoot}/files/thumbs
So this directory must exist (or at least php user must have rights to create it), and php user must have write access to it.
Hi,
I had been working on this for the past few times I logged in. There is a spelling change for
../files/attach/ from version 4.5.x to 5.0.x. The subfolder attachement_xxx is now attachment_xxx.
This is the one problem I encountered and solved.
I changed all taken over attachment folders with:
#!/bin/bash
for ((i=0;i<173;i++));
do mv attachement_$i attachment_$i;
done
Now all pictures can be displayed.
Still I cannot get thumbnail pictures in the list as in Version 4.5.6. ../files/thumbs exists and is writable (777).
Any idea?
Gordianus
Hi,
might there be an inconsistency of directory names for attachments in ../files/attach/?
after moving to Version 5.0.1, I could not open pictures in "Resources". After changing the sub-folders "attachement_xxx" to "attachment_xxx", the pictures can be displayed, but there are no thumbnail pictures in the list.
..files/thumbs is accessible and writeable for php user.
Thank you for your consideration!
By the way, thank you for that great effort and the huge step forward with ProjeQtOr (Or like gold!).
Christian
You're right.
Function "Affectable::generateAllThumbs();" is called during deployment of V5.0.0 to genereate new thumb format (changed on V5 to improve performance).
But it also has to be called after fix for attachments brought by V5.0.1.
Will be done on patch V5.0.2.