i have deployed my project on Domain am getting this error =>
Mixed Content: The page at 'https://mywebsite was loaded over HTTPS, but requested an insecure script 'http://cdn.jsinit.directfwd.com/sk-jspark_init.php'. This request has been blocked; the content must be served over HTTPS.
home:1 Failed to load resource: the server responded with a status of 500 ()
i have tired to too many way to solve it but not work like i used secure-asset() on my assets but not work, so how to find the issue
This is code that you have chosen to include in your website?
OK, so I assume that you are working behind an https proxy like cloudflare. When your application receives the request it is coming as an http request not https. The code you show has url like //findquickresultsnow.com/sk-jspark.php starting with // means using the same scheme as the request so if the request is http:// then get http://findquickresultsnow.com/sk-jspark.php
If this code is not in laravel vendor or in npm package I would change it to https:// where you have //
@Snapey
yes this code is for use the same scheme as the request the point is i am not able to find it in which folder to change , also i doubled checked all my asset , libraries its https:// not http: