mirror of
https://github.com/prasathmani/tinyfilemanager.git
synced 2026-04-26 10:55:56 +03:00
[GH-ISSUE #69] This page is trying to load scripts from unauthenticated sources #53
Labels
No labels
Feature
Feature
Is It Really an Issue?
Need More Info
Request
Security
bug
duplicate
enhancement
enhancement
help wanted
invalid
pull-request
question
suggestion
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tinyfilemanager#53
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @alecos71 on GitHub (Oct 12, 2018).
Original GitHub issue: https://github.com/prasathmani/tinyfilemanager/issues/69
Chrome reports this...
This page is trying to load scripts from unauthenticated sources
and here you can see how appears your app on Firefox and Chrome...
@wmerfalen commented on GitHub (Oct 15, 2018):
@alecos71 What are the URLs of said scripts?
@wmerfalen commented on GitHub (Oct 15, 2018):
@alecos71 ah, i see what they are now... if you look in the source code of the script and search for things like
<script, you'll find that the script is pulling from sources like cloudfare, jquery, bootstrap, etc. Not sure how I feel about that given that the philosophy of this project seems (at least to me) that it should be an all-in-one solution with very little/no deps.@alecos71 commented on GitHub (Oct 15, 2018):
With previous version this did not happen... the fm did load any kind of script... with this new version fm cannot load the remote scripts (blocked by Firefox and Chrome...) I'm still using the previous version since I test drive your new version and your fm didn't work properly...
The url is https://www.mywebsite.org/test/fm.php?p= (its an example of the mine)
@wmerfalen commented on GitHub (Oct 15, 2018):
@alecos71 I can look into it a bit more if you let me know what went wrong with my version?
Also, can you verify that the blocked scripts are the CDN URL's in the fm source code?
@alecos71 commented on GitHub (Oct 15, 2018):
This happens because my website is in https, I think...
Chrome doesn't let me know what are the scripts blocked, limit itself to say
This page is trying to load scripts from unauthenticated sources
With this version doesn't happen: tinyfilemanager-master (21.09.2018)
@alecos71 commented on GitHub (Oct 15, 2018):
Found the guilty...
http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css
should be:
https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css
Chrome and Firefox cannot load remote urls if they aren't in https...
@alecos71 commented on GitHub (Oct 15, 2018):
Confirmed!!! Must be: https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css
the resources must be in https...
@wmerfalen commented on GitHub (Oct 16, 2018):
@alecos71 I just committed to my master branch a version of the tinyfilemanager that serves all cdnjs urls over https.