- Issue created by @Mansoor Aziz
- 🇬🇧United Kingdom steven jones
Thanks for the bug report. Please search the issue queue before filling new issues. This issue is a duplicate of ✨ Add option to force https on redirect url Active
When exporting files using the Views Data Export module, the file download URL is being served over HTTP instead of HTTPS, even when the site is loaded over HTTPS. This causes browsers to block the file download due to mixed content issues.
The file download URL uses HTTP, causing mixed content errors and blocking the file download.
Mixed Content: The site at 'https://qoa-dev.applab.qa/' was loaded over a secure connection, but the file at 'https://qoa-dev.applab.qa/system/files/views_data_export/diploma_applicaions_data_export_2/1-1737959520/Diploma-Applications-2025-01-27T06%3A32%3A00%2B0000.xlsx' was redirected through an insecure connection. This file should be served over HTTPS.
The issue can be fixed by ensuring that file URLs generated by the module respect the site's HTTPS configuration.
In the module's file handling logic, replace:
$url = \Drupal::service('file_url_generator')->generateAbsoluteString($results['vde_file']);
With:
$url = \Drupal::service('file_url_generator')->generateAbsoluteString($results['vde_file']);
$url = str_replace('http://', 'https://', $url);
This ensures the file URL always uses HTTPS.
A patch is attached to resolve this issue.
Needs review
2.0
Code
Thanks for the bug report. Please search the issue queue before filling new issues. This issue is a duplicate of ✨ Add option to force https on redirect url Active