tobiasstrebitzer / FireFile

Firefox CSS Live Editing Plugin
www.firefile.at
53 stars 12 forks source link

firefile.php bug: no https - only http #44

Open andreasotto opened 11 years ago

andreasotto commented 11 years ago

Current version of firefile.php still doesn't support https URLs for saving because of hardcoded string "http" in line 109:

Please replace hardcoded "http" at least against something like

($_SERVER['HTTPS'] ? "https" : "http")

to make firefile.php work (at least on Apache Servers this will work, on others not).