Website: hardstyleunited.com
System:1.7.3
PHP: 5.4
SSL: Yes
After the update all of a sudden the img are not shown anymore. Is this a known issue?
//Dirk
Website: hardstyleunited.com
System:1.7.3
PHP: 5.4
SSL: Yes
After the update all of a sudden the img are not shown anymore. Is this a known issue?
//Dirk
Dirk, the images are blocked because they come from the non-secure resource, this is how SSL works, you either have to not use SSL on your website, or use secure rss feed
The img should always be shown even when you are in a SSL environment right. The SSL certificate will not be green then but show a error. Right now the images are not even shown. And even with SSL on the images should not be blocked. It has always worked. And the images has always shown. Even from a non SSL secure environment. But now all of a sudden the SSL keeps blocking non secure images. And this to my knowledge is not per definition how SSL works. If you have non secure parts the certificate will not be validated.
Would be great. And again thanks for the superb help.
http://stackoverflow.com/questions/2357455/rewrite-http-to-https-on-some-pages-only-using-htaccess
I tried it but i broke my site. since the htaccess was not correct any more. Got redirect loops. Maybe Oxwall can provide a prefab htaccess file with only user pages etc to https
if enough people need it, the devs will consider it.. ")
What should I change here to make it work:
Options +FollowSymLinks
RewriteEngine On
AddEncoding gzip .gz
AddEncoding gzip .gzip
<FilesMatch "\.(js.gz|js.gzip)$">
ForceType text/javascript
</FilesMatch>
<FilesMatch "\.(css.gz|css.gzip)$">
ForceType text/css
</FilesMatch>
# Rewrite Rules for hardstyleunited.com
RewriteBase /
#Rewrite www to hardstyleunited.com
RewriteCond %{HTTP_HOST} ^www\.hardstyleunited\.com [NC]
RewriteRule ^(.*)$ http://hardstyleunited.com/$1 [L,R=301]
#Rewrite to https
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} /secure.php
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L]
#traffic to , except secure.php
RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} !(/secure.php)
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [L]
RewriteCond %{REQUEST_URI} !^/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/
RewriteCond %{REQUEST_URI} !/ow_cron/run\.php
RewriteCond %{REQUEST_URI} !/e500\.php
#RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC]
RewriteCond %{REQUEST_FILENAME} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
And I will make this a topic there :) Thanks for the replies.
Options +FollowSymLinks
RewriteEngine On
AddEncoding gzip .gz
AddEncoding gzip .gzip
<FilesMatch "\.(js.gz|js.gzip)$">
ForceType text/javascript
</FilesMatch>
<FilesMatch "\.(css.gz|css.gzip)$">
ForceType text/css
</FilesMatch>
# Rewrite Rules for hardstyleunited.com
RewriteBase /
#Rewrite www to hardstyleunited.com
RewriteCond %{HTTP_HOST} ^www\.hardstyleunited\.com [NC]
RewriteRule ^(.*)$ http://hardstyleunited.com/$1 [L,R=301]
#Rewrite to https
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} /admin/
RewriteCond %{REQUEST_URI} /user/
RewriteCond %{REQUEST_URI} /profile/
RewriteCond %{REQUEST_URI} /join/
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L]
#traffic to , except some paths
RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} !(/admin/)
RewriteCond %{REQUEST_URI} !(/user/)
RewriteCond %{REQUEST_URI} !(/profile/)
RewriteCond %{REQUEST_URI} !(/join/)
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [L]
RewriteCond %{REQUEST_URI} !^/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/
RewriteCond %{REQUEST_URI} !/ow_cron/run\.php
RewriteCond %{REQUEST_URI} !/e500\.php
#RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC]
RewriteCond %{REQUEST_FILENAME} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
Options +FollowSymLinks
RewriteEngine On
AddEncoding gzip .gz
AddEncoding gzip .gzip
<FilesMatch "\.(js.gz|js.gzip)$">
ForceType text/javascript
</FilesMatch>
<FilesMatch "\.(css.gz|css.gzip)$">
ForceType text/css
</FilesMatch>
# Force HTTPS
RewriteCond %{HTTPS} off
RewriteCond %{THE_REQUEST} \s/(user|profile|join) [NC]
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [NE,R=301,L]
# Force HTTP for all others
RewriteCond %{HTTPS} on
RewriteCond %{THE_REQUEST} !\s/(user|profile|join) [NC]
RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [NE,R=301,L]
RewriteCond %{REQUEST_URI} !^/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/index\.php
RewriteCond %{REQUEST_URI} !/ow_updates/
RewriteCond %{REQUEST_URI} !/ow_cron/run\.php
RewriteCond %{REQUEST_URI} !/e500\.php
#RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC]
RewriteCond %{REQUEST_FILENAME} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
Works for all http pages. But the ones redirected to HTPPS won't open.
Even when I post this:
- https://hardstyle-releases.com/category/released/feed/
The pictures wont show up in the feed.