I recently came across https://www.drupal.org/project/file_upload_secure_validator
This is a very simple and small module which performs a server side validation for the extension of an uploaded file of any content type's file field. Default drupal 7 file validation is performed by
file_validate_extensions()which only relies on the file name extension.'File Upload Secure Validator' uses the php library
fileinfoand is dependent on that. Therefore the server hosting the drupal instance should have this library enabled. Through this php lib we can perform a more secure and reliable check on the file's mime type and compare that to the allowed file extensions, as these are set by the admin within the content type's field settings.This module is useful when we need to enforce a maximum security mime type detection.
Dependencies The module depends on the php library
fileinfo. Please make sure this library is present and enabled on the server.Installation Install module like usual. No special installation considerations
Configuration No configuration options. After enabling the module, it will perform an alternative server side extension validation on every uploaded file of every content type file field.
Recent comments
Thanks Alejandro. That was the clues I needed.
Ubercart - Programmatically add product to cart and straight to Checkout
Have you tried uc_cart_add_item()? You need to provide the nid of the product. Then you can use backdrop_goto('cart/checkout'); to send the user to the checkout screen. uc_cart_add_item...
Ubercart - Programmatically add product to cart and straight to Checkout
No problem, let's see how it evolves. I'd be happy to provide a suggested version if i could. I will keep that in mind and try learn this hook chain hopefully very soon. I will...
File hashing uploads made through TinyMCE