Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Attachment Extension 1.4
This discussion has been closed.
Comments
repeat: change uploads to 777.
P.S. sorry for offtopic guys
Images were not being thumbnailed because:
- upon upload the file extension is converted to lower case characters
140: $Uploader->Upload($Key, $this->UploadPath, $CommentID.'.'.current(explode('.', $File['name'])).'.'.strtolower(end(explode('.', $File['name']))), '0', '1' );
- the file_exists() check then fails because the original filename ended with capital letters
145: file_exists($this->UploadPath . $CommentID.'.'.basename($File['name']))
I fixed this by removing the automatic "to_lower" upon upload. This may have unwanted side effects but I had not yet seen them. Thanks again for the great extension!