-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
Description
I'm using SSL with my domain (https://effys.space), but I noticed using SSL has resulted in the auto-upload feature not working.
How can I use both this feature and SSL?
I have tried disabling SSL on specific files by adding an .htaccess file in the /etcg/ directory containing the following:
<IfModule mod_rewrite.c>
RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(class-lib|cards\.php) [NC]
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
It turns off SSL, but auto-upload continues to not work. :/