The problem is that files are being set to -rw------- (600) permission but should be -rw-r--r-- (644) permission. A 600 permission means that, if you try to access the file via web, you get a 403 forbidden message. Somehow the default permission on your server is now set to 600 for files, but it needs to be 644 permission. With 600 permission, PhotoPlog does not have access to the original file to make thumbs, hence no large, medium, or small thumbs are made. Take a look at the
umask function.
Code:
New files follow umask, in .login or .cshrc . The code follows:
files directories
0 rw- rwx
1 rw- rw-
2 r-- r-x
3 r-- r--
4 -w- -wx
5 -w- -w-
6 --- --x
7 --- ---
umask 022 gives rw-r--r-- for files and rwxr-xr-x for directories.