Is either the mod_digest module or the mod_auth_digest module installed and enabled on your webhost servers? For use in .htaccess if there are any other uses for those modules. If so, which is enabled, mod_digest or mod_auth_digest? Thank you for your time.
EDIT
Never mind. I kept reading the article that prompted me to ask, and found a better and more secure method than both digest and basic http authentication. Still answer though for the next person who wants to know.
Is the digest module enabled in .htaccess?
-
- A regular
- Posts: 44
- https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
- Joined: Thu Feb 19, 2015 6:50 am
Re: Is the digest module enabled in .htaccess?
auth_basic is. It does not appear that auth_digest is, by default.
-
- A regular
- Posts: 44
- Joined: Thu Feb 19, 2015 6:50 am
Re: Is the digest module enabled in .htaccess?
I know (and have) that auth_basic is enabled. But ok. Thanks for your speedy response! What about mod_auth_mysql? Is that installed and enabled?Edge100x wrote:auth_basic is. It does not appear that auth_digest is, by default.
-
- A regular
- Posts: 44
- Joined: Thu Feb 19, 2015 6:50 am
Re: Is the digest module enabled in .htaccess?
EDIT:
Never mind. I found a PHP function that listed all the enabled modules in Apache. My output was this:
So only mod_auth_basic is enabled.
Never mind. I found a PHP function that listed all the enabled modules in Apache. My output was this:
Code: Select all
Array ( [0] => core [1] => itk [2] => http_core [3] => mod_so [4] => mod_bw [5] => mod_actions [6] => mod_alias [7] => mod_auth_basic [8] => mod_authn_anon [9] => mod_authn_dbd [10] => mod_authn_dbm [11] => mod_authn_default [12] => mod_authn_file [13] => mod_authz_dbm [14] => mod_authz_default [15] => mod_authz_groupfile [16] => mod_authz_host [17] => mod_authz_owner [18] => mod_authz_user [19] => mod_autoindex [20] => mod_cgi [21] => mod_dbd [22] => mod_deflate [23] => mod_dir [24] => mod_env [25] => mod_expires [26] => mod_ext_filter [27] => mod_filter [28] => mod_headers [29] => mod_ident [30] => mod_imagemap [31] => mod_include [32] => mod_log_config [33] => mod_logio [34] => mod_mime [35] => mod_mime_magic [36] => mod_negotiation [37] => mod_rewrite [38] => mod_setenvif [39] => mod_speling [40] => mod_ssl [41] => mod_suexec [42] => mod_unique_id [43] => mod_usertrack [44] => mod_vhost_alias [45] => mod_fastcgi [46] => mod_passenger [47] => mod_php5 )