Calculating MD5 Checksums

Hash Files

To automatically calculate and store the files' MD5 checksum values, so you can verify their integrity, please follow these steps:

  • Go to "Control Panel » System configuration » Metadata » Fieldsets » Create new"
  • Set the "Fieldset name" (Something like "Info", it doesn't really matter)
  • Tick the "Generic fieldset" checkbox. (So that all files show this fieldset)
  • Click "Save" to add the fieldset.
  • Click "Manage Fields > Create new"
  • Type "Checksum" for the "Field name" and click "Save"
  • By holding the mouse cursor over the newly created field name you can find out its ID, from the link's URL (......&fid=X)
  • Create the text file "/path-to-WebFileShare/customizables/events/upload.php" and paste the following code inside:
 
  • Replace the "XXXX" with the ID of your "Checksum" metadata field on the first line of the script file.

The "upload.php" script will execute each time a user uploads a file, and it will calculate the file's hash and store it in the file's "Hash" metadata field.

Being a metadata field, you can also display it as a column in the file list view.

Please note that with this method, PHP reads the entire file's contents into memory. This can be slow and might not even work for files larger than PHP's configured "memory_limit" value.

A solution available for Unix type of servers is to replace the line "

$hash = md5(file_get_contents($data['full_path']));

", with the following one:

$hash = exec("md5sum "".escapeshellcmd($data['full_path']).""");

 

 

Attached Files
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Name
Email
Security Code Security Code
Related Articles RSS Feed
Custom CSS
Viewed 1941 times since Wed, Nov 22, 2017
Adding custom functionality
Viewed 2403 times since Thu, Mar 6, 2014
Translating Web File Share
Viewed 20062 times since Wed, Mar 5, 2014
Custom even scripts
Viewed 2544 times since Wed, Nov 22, 2017
Adding links to the menu
Viewed 2498 times since Thu, Mar 6, 2014
Counting file downloads
Viewed 3924 times since Thu, Mar 6, 2014
File reference
Viewed 2449 times since Tue, Jun 10, 2014
Automatic Login
Viewed 2318 times since Wed, Nov 22, 2017
The API
Viewed 4295 times since Wed, Nov 22, 2017
Forcing certain file types to download
Viewed 2706 times since Thu, Mar 6, 2014
MENU