Hi, yesterday I was able to upload several cover images to my articles. Today nothing works. An other browser, restart etc.... no upload anymore. File size is ok, directory is 755..... What now?
Response for preflight is invalid (redirect)
Font from origin 'https://yourdomain.com' has been blocked from loading by Cross-Origin Resource Sharing policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://www.yourdomain.com' is therefore not allowed access.
RewriteCond %{HTTP:X-Forwarded-Proto} !https [NC]
RewriteCond %{HTTPS} off [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} ^yourdomain.nl [NC]
RewriteRule ^(.*)$ https://www.yourdomain.nl/$1 [L,R=301]
public $live_site = 'https://yourdomain.com';
// Replace with
public $live_site = '';