Unsubscribe

2009-12-21 Thread Michele Waldman
Does anyone know how to unsubscribe from this list? I have sent email to the unsubscribe link on apache.org several times. Yet, I still receive numerous emails that are cluttering my overcrowded inbox. Can someone please help me to unsubscribe? Michele -Original Message- From:

Using httpd.conf and htaccess

2009-05-05 Thread Michele Waldman
I want to get some configuration variables from httpd.conf and .htaccess for mod_auth_digest: static const command_rec digest_cmds[] = { AP_INIT_TAKE1(AuthName, set_realm, NULL, OR_AUTHCFG, The authentication realm (e.g. \Members Only\)), AP_INIT_ITERATE(AuthDigestProvider,

RE: Using httpd.conf and htaccess

2009-05-05 Thread Michele Waldman
Looks like I need to use: AllowOverride AuthConfig Is this right? Where do I put this? Margaret Michele Waldman Sovereign Sites L.L.C. Website Development 646-861-3375 Rule your domain ... -Original Message- From: Michele Waldman [mailto:mmwald...@nyc.rr.com] Sent: Tuesday, May 05

RE: Using httpd.conf and htaccess

2009-05-05 Thread Michele Waldman
[mailto:j...@joe-lewis.com] Sent: Tuesday, May 05, 2009 6:41 PM To: modules-dev@httpd.apache.org Subject: Re: Using httpd.conf and htaccess Michele Waldman wrote: Looks like I need to use: AllowOverride AuthConfig Is this right? Where do I put this? Directory/'Location block

mod_auth_digest amiss

2009-04-23 Thread Michele Waldman
Maybe, I'm missing something. I was talking about needing to change apache, but I decided to try something else. I've got this: FilesMatch .*[^(login.php|logout.php)] AuthType Digest AuthName account AuthUserFile /home/path/public_html/account/.htpasswd Require user admin

RE: mod_auth_digest amiss correction

2009-04-23 Thread Michele Waldman
Correction: The second time I try to access login.php, I get access. But, not when I try to access the directory that also has the same require. Michele -Original Message- From: Michele Waldman [mailto:mmwald...@nyc.rr.com] Sent: Thursday, April 23, 2009 8:11 PM To: modules-dev

Safari, Chrome, ..., Apache, ajax htaccess digest

2009-04-23 Thread Michele Waldman
I know I'm not the only person in the world who wants Safari, Chrome and other browsers to work with apache, htaccess digest and ajax. But once out of an account, you can't get back in via these browsers. Is it up to Safari and Browsers to execute some sort of logout like FF IE or for the

RE: Location of Apache Modules

2009-04-22 Thread Michele Waldman
on this thinking that it was going to be a quick fix. Michele -Original Message- From: Eric Covener [mailto:cove...@gmail.com] Sent: Tuesday, April 21, 2009 2:00 PM To: modules-dev@httpd.apache.org Subject: Re: Location of Apache Modules On Tue, Apr 21, 2009 at 12:51 PM, Michele Waldman

RE: Location of Apache Modules

2009-04-22 Thread Michele Waldman
-2580 -Original Message- From: Michele Waldman [mailto:mmwald...@nyc.rr.com] Sent: Wednesday, April 22, 2009 1:37 PM To: modules-dev@httpd.apache.org Subject: RE: Location of Apache Modules I'm looking in modules/http/http_request.c. Is this even in the right ballpark? I'm

Logging in a new user to htaccess when presented with new credentials

2009-04-22 Thread Michele Waldman
I hope I'm posting to the right list and everyone hasn't already seen my posting. As it works on my server, if a user is logged into htaccess and a webpage accesses another webpage via ajax using new credentials, the creditials are validated for the ajax page access, but the new user is not

Location of Apache Modules

2009-04-21 Thread Michele Waldman
I ran a find for functions like ap_hook_auth_checker, ap_run_type_checker and a few other functions. I could not find the function definitions. All I could find was a reference to them in server/export.c. Does anyone know where all of the functions are? It's difficult to trace through the

FW: [M] mod_auth_digest hook

2009-04-21 Thread Michele Waldman
Maybe, if I'm a little clearer someone might be able to point in the right direction. I don't think I need to modify mod_auth_digest, but another apache module. What I have is a person login into htaccess using ajax. The file they access has htaccess require valid-user. The first time they log

RE: Location of Apache Modules

2009-04-21 Thread Michele Waldman
Did your browser send digest credentials on the ajax request? You can log %{Authorization}i in the access log to quickly tell. Yes. The browser is sending the creditials. I did check this. That's what was hanging me up. If credentials were sent, can mod_log_config log a %u or were they

mod_auth_digest on different apache version

2009-04-17 Thread Michele Waldman
I'm going to check the versions of apache on the machines, but on my server when I try to login via ajax, the new user gets logged in. On my client's mod_auth_digest loops through the previous connections, returns that authentication and does not log the user in. Are there some flags that

Apache logging in prev?

2009-04-15 Thread Michele Waldman
In auth_mod_digest, it looks for previous authentication: while (mainreq-prev != NULL) { mainreq = mainreq-prev; } I'm trying to prevent this in certain cases to allow a new login. If I stop this statement, it uses the new creditials to validate, but this user is not

RE: Apache logging in prev?

2009-04-15 Thread Michele Waldman
./server/util_script.c apr_table_addn(e, REMOTE_USER, r-user); apr_table_addn(e, REDIRECT_REMOTE_USER, back-user); I could this. Is this the right place? Michele -Original Message- From: Michele Waldman [mailto:mmwald...@nyc.rr.com] Sent: Wednesday, April 15

mod_auth_digest

2009-04-10 Thread Michele Waldman
Does anyone know? After a browser calls a page authenticated with mod_auth_digest, what function or hook is called the next time the page is accessed. I figure it has to authenticate each time, but it's probably using a short cut to reauthenticate. I want to intervene but I'm not sure what's

RE: mod_auth_digest

2009-04-10 Thread Michele Waldman
Reply. I put print statements in the mod_auth_digest file to see values. I didn't see subsequent call, but I forgot to check the timestamps. I'll look again. Thanks. Margaret Michele Waldman Sovereign Sites L.L.C. Website Development 646-861-3375 Rule your domain ... -Original Message

RE: mod_auth_digest

2009-04-10 Thread Michele Waldman
htaccess security option, at least for me. No one else seems to be interested other than the author of the webpage on Rest Based Authentication. Margaret Michele Waldman Sovereign Sites L.L.C. Website Development 646-861-3375 Rule your domain ... -Original Message- From: Michele Waldman

RE: Safari - Why?

2009-04-05 Thread Michele Waldman
must be set. As suggested, I'll try spaces but I don't see them in the header. Is php stripping out spaces in phpinfo()? Does phpinfo() show exactly as sent from the browser or does it scrub them? Michele -Original Message- From: Michele Waldman [mailto:mmwald...@nyc.rr.com] Sent: Sunday

RE: Safari - Why?

2009-04-05 Thread Michele Waldman
: Eric Covener [mailto:cove...@gmail.com] Sent: Sunday, April 05, 2009 1:39 PM To: modules-dev@httpd.apache.org Subject: Re: Safari - Why? On Sun, Apr 5, 2009 at 1:33 PM, Michele Waldman mmwald...@nyc.rr.com wrote: The server can't set the server environment without the headers I don't believe.  So

RE: Making mod_auth_digest mysql

2009-02-12 Thread Michele Waldman
Lol. I'm using the proper syntax on the server. Just checked. -Original Message- From: Eric Covener [mailto:cove...@gmail.com] Sent: Thursday, February 12, 2009 2:49 PM To: modules-dev@httpd.apache.org Subject: Re: Making mod_auth_digest mysql On Thu, Feb 12, 2009 at 2:25 PM, Michele

RE: Making mod_auth_digest mysql

2009-02-12 Thread Michele Waldman
- From: Michele Waldman [mailto:mmwald...@nyc.rr.com] Sent: Thursday, February 12, 2009 3:28 PM To: modules-dev@httpd.apache.org Subject: RE: Making mod_auth_digest mysql Lol. I'm using the proper syntax on the server. Just checked. -Original Message- From: Eric Covener [mailto:cove

RE: Making mod_auth_digest mysql

2009-02-12 Thread Michele Waldman
There is not authentication requirement for logged_out it's in a higher directory. -Original Message- From: Joe Lewis [mailto:j...@joe-lewis.com] Sent: Thursday, February 12, 2009 4:46 PM To: modules-dev@httpd.apache.org Subject: Re: Making mod_auth_digest mysql Michele Waldman wrote

RE: Making mod_auth_digest mysql

2009-02-12 Thread Michele Waldman
authenticating against mysql was all part of this. Michele -Original Message- From: Joe Lewis [mailto:j...@joe-lewis.com] Sent: Thursday, February 12, 2009 6:39 PM To: modules-dev@httpd.apache.org Subject: Re: Making mod_auth_digest mysql Michele Waldman wrote: There is not authentication

RE: Making mod_auth_digest mysql

2009-02-12 Thread Michele Waldman
-...@httpd.apache.org Subject: Re: Making mod_auth_digest mysql 2009/2/8 Michele Waldman mmwald...@nyc.rr.com: But, I have to know how does RewriteCond ${REMOTE_USER} . Is the . for any character? Why does it evaluate correctly when undefined and != doesn't? . is one any character, yes

RE: Making mod_auth_digest mysql

2009-02-09 Thread Michele Waldman
-...@httpd.apache.org Subject: Re: Making mod_auth_digest mysql 2009/2/8 Michele Waldman mmwald...@nyc.rr.com: But, I have to know how does RewriteCond ${REMOTE_USER} . Is the . for any character? Why does it evaluate correctly when undefined and != doesn't? . is one any character, yes

RE: Making mod_auth_digest mysql

2009-02-08 Thread Michele Waldman
- Intelligent Bandwidth Control http://www.bettercgi.com/throttlebox/ Strongbox / Throttlebox affiliate program: http://www.bettercgi.com/affiliates/user/register.php On 02/08/2009 09:05:54 AM, Michele Waldman wrote: Sorry, about the extraneous personal notes. The I love you was an exaggeration of thank

RE: Making mod_auth_digest mysql

2009-02-06 Thread Michele Waldman
variables, although they can use environment variables if necessary. For example: RewriteCond %{DOCUMENT_ROOT}/%{ENV:foo} -d would check that the folder named by the environment variable foo exists in the document root. Dave Michele Waldman wrote: RewriteCond has flags -f -d ... But not -e

RE: Need help with --activate-module

2009-02-05 Thread Michele Waldman
Maybe, I'm not on the right forum. I posted and go no response. I guess that's ok. I got mod_auth_digest authenticating against mysql working. I need to make it prettier. I didn't want to disturb the existing code, so I was super cautious. My only issue now if changing the password. There

RE: Antwort: apxs

2009-02-05 Thread Michele Waldman
and may contain privileged, proprietary, or otherwise private information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of the email by you is prohibited. Michele Waldman mmwald...@nyc.rr.com 02.02.2009 17:18 Bitte antworten

apxs

2009-02-02 Thread Michele Waldman
I wrote the mod_auth_digest authenticating against mysql. I can't compile. apxs -i -a -I/usr/include/mysql -L/usr/lib/mysql -lmysqlclient -luuid -lrt -lcrypt -lm -lz -c mod_auth_digest.c I've tried using an extra -I and -L for crypt. When I compile with both, I get crypt is an undefined