You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using user-config-inc.php, I can set the login username and password for accessing editing mode in Hotglue (i.e. pages with the url structure /hotglue/my_page_name/?edit.
I would like to password protect the viewing of Hotglue pages as well. So if your browser requests /hotglue/my_page_name/, I'd want to display a login dialog. I was not able to get this to work using an .htpasswd file that is referenced in .htaccess, with both files located in the Hotglue folder.
The Apache logs give me a "wrong password" error. I'm wondering if the .htpasswd info is conflicting with the login credentials set in user-config-inc.php.
.htaccess
AuthUserFile /app/data/public/hotglue/.htpasswd
AuthName "Authorization Form Title"
AuthType Basic
require valid-user
.htpasswd
(generated with OpenSSL, sample below)
user:<my_password>
The text was updated successfully, but these errors were encountered:
Hi,
Using
user-config-inc.php
, I can set the login username and password for accessing editing mode in Hotglue (i.e. pages with the url structure/hotglue/my_page_name/?edit
.I would like to password protect the viewing of Hotglue pages as well. So if your browser requests
/hotglue/my_page_name/
, I'd want to display a login dialog. I was not able to get this to work using an.htpasswd
file that is referenced in.htaccess
, with both files located in the Hotglue folder.The Apache logs give me a "wrong password" error. I'm wondering if the
.htpasswd
info is conflicting with the login credentials set inuser-config-inc.php
..htaccess
.htpasswd
(generated with OpenSSL, sample below)
The text was updated successfully, but these errors were encountered: