So, a strange phenomenom: I have an image which is loading over 'http,' even though 'https' is specified in the src attribute.
Page here: https://universitybusiness.co.uk/
When you hover over the 'stories' menu item the page becomes unsecure, as the magazine image is loaded.
Image here: https://wildfirecomms-images.co.uk/covers/ub_cover_march_v2.jpg
The image is from another domain, however this has a SSL certficate on it. Another strange thing is, the footer staff icons are loaded over https from the same domain.
Any help would be great.
This image is requested from https://www.wildfirecomms-images.co.uk unlike the other links which omit the www.
https://www. performs a 301-redirect to http://wildfirecomms... which is the issue, so simply remove the www. from the url.
Related
I am trying to export an existing php-based dynamic webpage into a lektor project which up to now really worked well.
Unfortunately one problem is giving me a headache:
While my navigation works perfectly with every page and subpage, links to subpages in the content section don't.
E.g. if I set a relative path like
[My Link to Subpage](/peter/personalinfo)
it is correctly shown in the browser view. If I hover the mouse over the link the browser shows the correct url 127.0.0.1:5000/peter/personalinfo.
But if I click it I get
Not Found
The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.
and the url in the address field shows
127.0.0.1:5000/peter/peter/personalinfo
So I click the correct url but the browser calls the wrong url and of course can't find anything there.
I don't understand how this doubling can happen. I naively would expect that if I clicked a link the browser would exactly look at that address. But it seems like the server is redirecting to the malformed url. And yes, it does so with any link to a subpage.
the navigation looks like this:
Home
News
Peter
-- Personalinfo
-- Contact
-- Portfolio
Bob
-- Personalinfo
-- Contact
-- Portfolio
Any idea why this happens and how to change it?
Update: The problem doesn't appear with the built static page on a webserver.
there is an open issue (#997) that is already fixed and will be released soon. But you can fix this yourself, just append a slash at the end of your link [My Link to Subpage](/peter/personalinfo/)
we have a Joomla! 3.8.13 on https
When I go to the article manager (default- tinymce) and try to add an image, then i see a whitescreen in the modal window. The reason is that it sends the request to http instead of https (admin uses https), so mixed content error
this is the url it sends the request to:
http://url/administrator/?option=com_content&view=articles&layout=modal&tmpl=component&d33ccba6239ca044b81e08cdb65a6f71=1&editor=jform_articletext
would be grateful for a hint :) thanks
Just for a hint. Since these links in article editor are created within Joomla with adding a JPATH_BASE at the beginning of the url thus most probably in Admin global configuration->server settings you should set force SSL to Entire site value. Then the link should automatically be https for the modal window in the editor. I hope it will solve your issue.
I solved this issue, the problem turned out to be non-standard .htaccess file
When clicking the image button, tinymce open an iframe thus making a request to https://url/administrator/index.php?..
and the server redirected http://url/administrator/?.. (with http and without index.php)
it then redirected back to https (as the force ssl was set in admin), but the browser already threw a mixed-content error
so changing the .htaccess to a standard joomla file fixed the issue
I have added ssl to my website https://phone-pedia.com.
lock is only appearing on homepage. On other pages, lock does not appear. I tried to clear cache but issue is still here.
Is it a Laravel issue or ssl problem ?
If mixed content is the problem then why homepage has a lock. ?
Chrome says your site uses sources (such as images) from non-secured origins. You should use in your views the asset_secure helper instead of asset. If you already do, check if you use in other sources from non-secured origins. Otherwise it has to do with your SSL.
You have mixed content on some of your pages. If you look at your browser console you'll see a message like the following:
Mixed Content: The page at 'https://example.com/path' was loaded over HTTPS, but requested an insecure image 'http://example.com/storage/products/images/example.png'. This content should also be served over HTTPS.
You need to serve all of your content over HTTPS.
How can I fix this issue. I am using Magento.
Click here to the Website Link
All your resource and image path must be replace with https I have found on your site like link http://www.trenpon.com/ all link and images and file path link change to https.
The code in your home page has 93 instances where you have hard-coded http:// in the URL. There are 41 instances with the https:// prefix. While not all cause the mixed content warning, there are several that are resources served over http. You can go to the console in most modern browsers and see the resources that are causing the warning.
Here are some options:
Use relative URLs for your internal resources.
Use URLs without a scheme (http: or https:).
Code everything to use HTTPs.
Im having an issue with SSL links in Magento.
I have SSL setup and working...all usual settings.
When i view the source of a page, i can still see HTTP links...and this is invalidating the SSL.
The urls in question (relating to currnecy, store switcher, navigation) are all given out by Magento functions. Such as:
getCategoryUrl();
getSwitchCurrencyUrl();
Does anyone know what may be wrong...is their something i may have missed?
Need any more info, pls let me know...
thanks
Shaun
This is a good thing in the fact that it 'help' prevent search engine from seeing links to your catalog and product page as also been https (causing duplicate content). Also to my knowledge, only if you have resources (images, css, js) it will affect (invalidate) your ssl (because of browser cookies). If you view source on a page with ssl magento will automatically convert those resources to https