I have just installed SSL certificate to the website. However, When I open the webpage Google chrome does not show green padlock and when I look at the console it says that there is Mixed Content that causes the trouble. It is jQuery that tries to load this image which I have already made the changes in the script to load the secured one (https) Please see the attached image.
I have never seen anything like this before.Has anyone ever had this problem, please advice.
Thank you
Related
I'm using the Twitter API PHP wrapper to load content from the Twitter API onto my secure WordPress site. But I'm getting mixed content warnings in the Chrome console as the data it's returning isn't secure.
Is this something I can safely ignore or is there a way to load secure content through the Twitter API?
The twitter API javascript files or maybe even an image are being referenced via http://. Check all files you target on the twitter website and change the path to https://. If you post the code you are using i can help better.
If changing to https doesnt help, press f12 and open up the developer tools. Any ssl errors will be in the console. This will help you find the files that are being referenced as http instead of https
I'm trying to use a HTML/PHP form on my website. The problem is submit just opens a new page displaying my php as text, this is when I open the html file on my computer using Google Chrome. When I uploaded to my hosting service, TK dot com, I get a 405 error when using the form. I've tested on working/downloadable php forms and the same thing happens.
From my understanding, I can't just use php on my site without setting up an environment. I've read I need to use some sort of program to do this (apache). Which kind of confuses me further, how would I enable this type of service, which installs to my computer, to run on my website when my computer is off?
Any tips or guides on how to do use apache for PHP forms on my website or similar that I can be redirected to would be really helpful. Please let me know if any extra information is needed.
While troubleshooting my site I have ran into this error.
"This page is trying to load scripts from unauthenticated sources"
I am slowly learning to head to the Google developer console, which I found...
(program):1 Mixed Content: The page at
'https://www.thepixelfoundry.net/main/' was loaded over HTTPS, but
requested an insecure script
'http://api.sitestate.ru/scripts/stat/sitestate.js?r29'. This request
has been blocked; the content must be served over HTTPS.
This is my first Wordpress theme, as I built this page in order to better learn Wordpress. I have no idea what i sourcing that script.
I have checked my:
functions.php
header
footer
index
when I googled the scripts domain as the .ru already raised a red flag I received a warning from google questioning my computers recent traffic.
now im terrified....
How can I find this script? I have also installed Sucuri on the Wordpress side...and everything seems clean with a scan.
I got the same error in console, after I installed Ace Stream Web Extension
If you are working with it on remote server, then download all WP files and folders to your local machine and use "Search from all files" function. It is included in most text editors (Sublime, Notepad++, Brackets, etc.). Then you can track where this code comes from. When it comes from certain plugin you can disable the plugin. Or just remove that code.
But you should search, where that code get in your WP in first place. Is it some uploaded file that's supposed to be filename.jpg but is filename.jpg.php or comes from plugin or theme.
(I'd comment it but too low rep :/ )
Hello fellow stackoverflow'ers!
Today I was tired of old dead links to my fav internet radio, so I decided to make a downloader for all channels from di.fm. The idea was simple: download the page, get to the menu and parse it. After that create a playlist and make user download it.
So I created a PHP script as an API for my JS script. PHP functions were to download the page (JS cannot really do that), save playlist sent via POST in cookies and to provide it as a file. Cookies are supposed to be a communication channel between JS and PHP (with POST I cannot really make file download itself).
So far so good. Everything works like a charm under Opera. Things are getting complicated in Chrome and Firefox. Chrome reloads the page without a download dialog, Firefox works about the same, just sometimes lets me download the list... that is empty.
Any ideas how to solve it? Here is the code (feel free to use it yourself if you like it):
http://pastebin.com/dcEzxV9w
Thanks in advice,
Dracco
Using CKeditor on my project.
Recently installed fmath plug-in. Followed all instruction and created PHP file that will get image from editor and save in website directory.
The problem is, there was something wrong with fmath editor: when I tried to press "Ok" (it must send generated image to php file and show result image in main CKeditor textarea) nothing happened. I activated webconsole of FF and as you see browser tries to get some crossdomain.xml. I think editor configuration has nothing to do with this problem. fmath editor doesn't even try to send something to php file (firebug doesn't show any XHR activity)
Can anyone explain me, what can I do in that case?
It is a security issue: crossdomain.xml contains the security policy for the domain you are trying to access. Resolving this issue is (relatively) easy: Just add a crossdomain.xml at the top level of your web server's content root.
You can learn all about security policies and the Flash security model in Adobe's documentation, or download this pdf.