This is more of a feature request for the developers, I believe my WP installation automatically updates the SALTS in the config file every few weeks as part of the hardening services installed.
This seems to cause issues with the attachment download links from submitted forms (that are generated and sent in the notification emails) - after some time the pages just appear blank
I have seen that this could be because the salts are changed, and then cant decypher the hash in the url
Is it possible to have static salt variables set in wp-config so that the hashes generated in the URL’s, use those salts instead of the main WP salts?
@user5fc32f7daafc7268 there is an undocumented filter within the function GFCommon::generate_download_hash() that may work to ensure you have static values here.
it doesnt look too complicated - there are many instances of the wp_salt( ) function used to get the auth_salt and nonce_salt keys… shouldnt be too difficult to create a new variable in the config file with some relevent data - and tell it to use that scheme in the function.