🇵🇹Portugal jonhy81
Hi @mdragon, I don't know if you're in the same situation, but I recently faced the same context with Drupal and the Hostinger hosting. In my case, after checking the report status, I noticed they are using LiteSpeed as the webserver.
To solve this on my side, I did:
- created a file named .htaccess on sites/default/files/styles with content
<Files *> SetHandler none </Files>
- Added this line to root .htaccess
RewriteCond %{REQUEST_URI} !/sites/default/files/styles(.*?)/?.*
- Added to setting.php these lines
$config['image.settings']['allow_insecure_derivatives'] = TRUE; $config['image.settings']['suppress_itok_output'] = TRUE; $settings['file_public_path'] = 'sites/default/files';
It is still in development, but at least styles are now being created as should be.