RE: [users@httpd] problem configuring https

2023-02-12 Thread Phil Kemp
Thank you eric! Managed to use curl to see what was going on. It has taken me weeks to get this working. Much appreciated. Phil -Original Message- From: Eric Covener Sent: Saturday, February 11, 2023 10:42 AM To: users@httpd.apache.org Subject: Re: [users@httpd] problem configuring

[users@httpd] problem configuring https

2023-02-11 Thread Phil Kemp
does not flag an errors. What steps can I take to debug this further? Are there any 'tricks' to try to get this working. Any help is most appreciated. Thanks Phil

[users@httpd] Re: ETAG and Vary with reverse proxy and xsendfile

2022-07-04 Thread Phil Endecott
ise adding this functionality? (I'm still unsure if sending valid ETags is sufficient to make If-None-Match work, i.e. whether the checking for that is up or downstream of where mod_xsendfile sits - any comments anyone?) Re

[users@httpd] ETAG and Vary with reverse proxy and xsendfile

2022-07-03 Thread Phil Endecott
Match header. Is that possible, or does Apache need to do the If-None-Match check earlier on? Any help would be much appreciated. I know mod_xsendfile is not an official Apache thing but I'm sure many readers will be a little familiar with it, and it is only one 70

[users@httpd] Best practice for mod_authn_dbd + postgresql; really SHA1?

2017-08-10 Thread Phil Endecott
https://www.postgresql.org/docs/9.6/static/pgcrypto.html (F.25.2) It looks like my choices are: 1: Do the crypto in PostgreSQL. For example, I could insert new password hashes: INSERT INTO passwords (username, pwhash) VALUES ('phil', crypt('passw0rd', gen_salt('bf',8))); And check them

Re: [users@httpd] SSLProtocol and TLSv1

2016-07-14 Thread Phil Smith
. The public IP address first goes through the web app firewall. On Thu, Jul 14, 2016 at 3:13 AM, Theo Sweeny <theo.swe...@madgex.com> wrote: > Hello Phil – that sounds as if when the traffic comes through the public > gateway, SSL is offloading to an interim gateway device rather than at

Re: [users@httpd] SSLProtocol and TLSv1

2016-07-13 Thread Phil Smith
No. SSLProtocol is configured properly for each VirtualHost section including the default. On Wed, Jul 13, 2016 at 4:48 PM, Eric Covener <cove...@gmail.com> wrote: > On Wed, Jul 13, 2016 at 4:46 PM, Phil Smith <philbo...@gmail.com> wrote: > > Either setting seems to wo

[users@httpd] SSLProtocol and TLSv1

2016-07-13 Thread Phil Smith
I'm running Apache distributed via CentOS6: Server: Apache/2.2.15 (CentOS) I'm attempting to disable TLSv1.0 in ssl.conf using either of: SSLProtocol all -SSLv2 -SSLv3 -TLSv1 or SSLProtocol +TLSv1.1 +TLSv1.2 Either setting seems to work in disabling TLSv1 if the apache server is requested via

Re: Fwd: Re: [users@httpd] Virtual Host Not working

2016-05-14 Thread phil
"/usr/local/www/fishing/logs/greatlandfishing-error_log" CustomLog "/usr/local/www/fishing/logs/greatlandfishing-access_log" common AddType application/x-httpd-php .php .phtml AddType application/x-httpd-php-source .phps Try changing the above line to: rel

Re: [users@httpd] Re:

2014-04-21 Thread Phil
tea' well i suppose its good to see crap coming through, it makes me feel better about my own spam setup. phil - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h

[users@httpd] re: virtualhost redirects to root on mobiles

2014-02-01 Thread Phil
in the block. Yours points to the default /var/www/ which would show the default apache 'it works' page. Try /var/www/example.com http://example.com/ or in your case Directory /var/www/morebearsmore.com/public_html/ Then again maybe this has nothing to do with it . . . -- Kind Regards Phil

Re: [users@httpd] How to run httpd server on random port on every bootup

2013-03-27 Thread Phil White
access control. Regards, Phil On 26 March 2013 13:31, Mandar Nandale mandar.nand...@gmail.com wrote: Basically i am running httpd server on embedded linux gateways and each gateway running httpd on unique port which will change on every power cycle and this port information is reported to common

[users@httpd] Limit/LimitExcept - access controls

2013-03-04 Thread Phil Smith
This discussion is related to the bolded recommendation at: http://httpd.apache.org/docs/2.2/mod/core.html#limit stating that: In the general case, access control directives should not be placed within a Limit section. and further that... A LimitExcept section should always be used in preference

[users@httpd] Access configurations

2013-02-11 Thread Phil Smith
I'm trying to find some Apache documentation verifying that the access configs listed below in the manner I find them to be working are truly supported by Apache and are reasonable.(I'm using Apache 2.2.3). In a given directory in web space I have an .htaccess file with information such as the

Re: [users@httpd] Access configurations

2013-02-11 Thread Phil Smith
On Mon, Feb 11, 2013 at 10:05 PM, Igor Cicimov icici...@gmail.com wrote: On 12/02/2013 1:50 PM, Phil Smith philbo...@gmail.com wrote: I'm trying to find some Apache documentation verifying that the access configs listed below in the manner I find them to be working are truly supported

[users@httpd] .htaccess file outside of web space

2012-04-04 Thread Phil Smith
I noticed that when I placed an .htaccess file outside of web space, the .htaccess file was respected by Apache. I found this surprising. Say DocumentRoot is /home/joe/public_html so that /home/joe is in a path leading to web space, but outside of web space. An .htaccess file: /home/joe/.htaccess

[users@httpd] can't password protect a file but can a directory

2012-03-20 Thread phil curb
I can't get b.htm to be password protected. I can put directives AuthType, AuthName, AuthUserFile, Require.. In directory.. and get the directory password protected. But I want the directory to not be password protected, and for just a file (b.htm) to be password protected but i'm having no

Re: [users@httpd] unexpected EOF while looking for matching

2012-02-20 Thread Phil Smith
On Mon, Feb 20, 2012 at 8:54 AM, Tom Evans tevans...@googlemail.com wrote: On Mon, Feb 20, 2012 at 1:16 PM, Steve Swift swi...@swiftys.org.uk wrote: Ah, but the sh error means that my code never starts executing. If the very first line of my code were to get executed, then the error message

Re: [users@httpd] unexpected EOF while looking for matching

2012-02-18 Thread Phil Smith
On Sat, Feb 18, 2012 at 7:10 AM, Eric Covener cove...@gmail.com wrote: On Sat, Feb 18, 2012 at 12:00 AM, Phil Smith philbo...@gmail.com wrote: I'm running Apache/2.2.3 (CentOS) which is the latest version available for CentOS5. I'm noticing the following in my error logs: sh: -c: line 0

[users@httpd] unexpected EOF while looking for matching

2012-02-17 Thread Phil Smith
this, but no answers. Any thoughts, please? Thank you. Phil - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: users-unsubscr

[users@httpd] How to add multiple index.html references in httpd.conf ?

2012-01-15 Thread Phil Pinkerton
is the exact same server. Phil

Re: [users@httpd] How to add multiple index.html references in httpd.conf ?

2012-01-15 Thread Phil Pinkerton
at 11:02 AM, Phil Pinkerton pcpinker...@gmail.com wrote: https://server.domain.net/otherapp and get the index.html in “otherWeb” Isn't this the same as the 2nd example in the manual? http://httpd.apache.org/docs/2.2/mod/mod_dir.html#directoryindex

Re: [users@httpd] How to add multiple index.html references in httpd.conf ?

2012-01-15 Thread Phil Pinkerton
at 11:24 AM, Phil Pinkerton pcpinker...@gmail.com wrote: No because just adding the path to the otherWeb/index.html to DirectoryIndex line still defaults to the first index.html They're searched in order. Only one can be used.. If you just appended a value and the old value existed

Re: [us...@httpd] suexec for another user

2010-08-12 Thread Phil Howard
On Wed, Aug 11, 2010 at 18:24, David Ricar r...@ethernet.cz wrote: Phil Howard wrote: For maintenance, it might be easier for you to make an suexec wrapper.  Run your wrapper to do custom checks and if it decides to go on, it runs suexec.  That way your maintenance is for your program, only

Re: [us...@httpd] Need help with VirtualHost/forwarding

2010-08-12 Thread Phil Howard
On Thu, Aug 12, 2010 at 10:37, Mike Soultanian msoul...@csulb.edu wrote: server - the problem is that it can't be done for another couple weeks (IT department won't do it right away as it involves restarting all of the servers and a whole change management process). Remind me to not ever

Re: [us...@httpd] suexec for another user

2010-08-12 Thread Phil Howard
On Thu, Aug 12, 2010 at 09:49, David Ricar r...@ethernet.cz wrote: I need just one thing: replace others writable tests by is_in_homedir test - suexec does not solve, who could rewrite the code, but where the code is located. My patch is rather naive and dirty proof of concept right now, I

Re: [us...@httpd] Need help with VirtualHost/forwarding

2010-08-12 Thread Phil Howard
On Thu, Aug 12, 2010 at 12:41, Mike Soultanian msoul...@csulb.edu wrote: On 8/12/2010 9:33 AM, Phil Howard wrote: No backup staff ... ouch. budget cuts? :) Down to one administrator, I assume. there is no plan to get them out of that folder - www.csulb.edu/colleges/cota is the final

Re: [us...@httpd] suexec for another user

2010-08-12 Thread Phil Howard
On Thu, Aug 12, 2010 at 13:02, David Ricar r...@ethernet.cz wrote: [...] Sorry, I'm still not understanding what you are doing. I didn't understand why you need two users per each site. -- sHiFt HaPpEnS! - The official

Re: [us...@httpd] suexec for another user

2010-08-11 Thread Phil Howard
On Wed, Aug 11, 2010 at 09:23, David Ricar r...@ethernet.cz wrote: Hello, I don't think I see anything you are trying to accomplish different than an ordinary multiuser server. You should be able to configure where CGI can be run from to a narrow space. I assume FTP is for the site owner to

Re: [us...@httpd] Cache issues

2009-09-28 Thread Phil Pinkerton
Jonathan Zuckerman wrote: On Fri, Sep 25, 2009 at 10:54 AM, Phil Pinkerton pcpinker...@gmail.com wrote: On Fri, Sep 25, 2009 at 12:45 PM, Jonathan Zuckerman j.zucker...@gmail.com wrote: On Fri, Sep 25, 2009 at 6:15 AM, Phil Pinkerton pcpinker...@gmail.com wrote: Anyone

[us...@httpd] Cache issues

2009-09-25 Thread Phil Pinkerton
Anyone experience performance issues with regards to Apache cache ? From time to time we are experience access issues ( users accessing Subversion ) that seem to be due to an over loaded Apache cache. We suspect the cache because when we refresh (stop,start) the Apache server the problems goes

Re: [us...@httpd] Cache issues

2009-09-25 Thread Phil Pinkerton
On Fri, Sep 25, 2009 at 12:45 PM, Jonathan Zuckerman j.zucker...@gmail.comwrote: On Fri, Sep 25, 2009 at 6:15 AM, Phil Pinkerton pcpinker...@gmail.com wrote: Anyone experience performance issues with regards to Apache cache ? From time to time we are experience access issues ( users

Re: [us...@httpd] Apache 2.2.11 Segmentation Fault Solaris 10 Sparc

2009-03-19 Thread Phil Pinkerton
with httpd.conf ? On Sat, Mar 14, 2009 at 8:21 AM, Eric Covener cove...@gmail.com wrote: On Sat, Mar 14, 2009 at 8:07 AM, Phil Pinkerton pcpinker...@gmail.com wrote: System: SunOS 5.10 sun4u sparc Sun-Fire-V210 Apache Source:httpd-2.2.11 - (httpd -v Apache/2.2.11 (Unix)) gcc = gcc 3.4 openssl

Re: [us...@httpd] Apache 2.2.11 Segmentation Fault Solaris 10 Sparc

2009-03-19 Thread Phil Pinkerton
, Mar 19, 2009 at 11:07 AM, Phil Pinkerton pcpinker...@gmail.com wrote: Seems it may be  a libc issue after changing libc I know get tons of this output ( snipped ) ...apachectl -k start -SSL Did you mean -DSSL? -- Eric Covener cove...@gmail.com

[us...@httpd] Apache 2.2.11 Segmentation Fault Solaris 10 Sparc

2009-03-14 Thread Phil Pinkerton
System: SunOS 5.10 sun4u sparc Sun-Fire-V210 Apache Source:httpd-2.2.11 - (httpd -v Apache/2.2.11 (Unix)) gcc = gcc 3.4 openssl 0.9.8i openldap 2.4.11 Python-2.6 Subversion 1.5.6 After a non-eventful configure make, make install ( as far as I can tell ) Start httpd: httpd -k start -SSL or

[us...@httpd] make install fails on Solaris sun box

2009-02-10 Thread Phil Pinkerton
the configure and make work without a hitch but when I get to make install I get the error below. if someone can explain what is going on here and how I might correct it would be terrific. make: Fatal error: Command failed for target `install-recursive' Current working directory

RE: [EMAIL PROTECTED] ProxyPass redirects the request

2008-08-03 Thread Phil Lefort
You might want to try: ProxyPass // http://www.backend.com/ ProxyPassReverse // http://www.backend.com/ References to mytest on the front-end will end up rendering the mytest info in the back-end. Good Luck, Phil Phil Lefort PSO Senior Field Engineer Office: 650-216-2173 Cell

[EMAIL PROTECTED] using Apache 2.28 on Windows 2003; apache won't start with validated certs using openssl; openssl debug won't work

2008-05-22 Thread Phil Lefort
that I am solving for a customer, please get back to me right away. Thank you. Phil L. Phil Lefort PSO Senior Field Engineer Office: 650-216-2173 Cell: 650-743-1917 [EMAIL PROTECTED] www.tumbleweed.com https://webaccess.tumbleweed.com/exchweb/bin/redir.asp?URL=http://www.tumbleweed.com

RE: Re: [EMAIL PROTECTED] using Apache 2.28 on Windows 2003; apache won't start with validated certs using openssl; openssl debug won't work

2008-05-22 Thread Phil Lefort
ideas as to how I can get this working? Thanks. Phil -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- Phil Lefort PSO Senior Field Engineer Tumbleweed Communications Corp. [EMAIL PROTECTED] 700 Saginaw Drive Tel. +1-650-216-2173 Redwood City, CA 94063 Cell

[EMAIL PROTECTED] Convert # to Ascii %23

2008-04-30 Thread Phil Pinkerton
/application/app_1.pl?en=PROJECT_Namepkn=20080526+-+Defect+%23123456 please advise Phil -- The fundamental principle here is that the justification for a physical concept lies exclusively in its clear an unambiguous relation to the facts it can be experienced AE Please Feed and Educate the Children

Re: [EMAIL PROTECTED] Convert # to Ascii %23

2008-04-30 Thread Phil Pinkerton
a # is a reference to a part of the page, a browser should not send stuff after the # to the server. But I have no idea how a # in a query string should be handled. Are you sure that it is the server which is dropping stuff after the # and not the browser itself? Phil Pinkerton wrote: Need

Re: [EMAIL PROTECTED] Convert # to Ascii %23

2008-04-30 Thread Phil Pinkerton
It is the first character in a directory/folder name i.e /defect /#123456/details_1.txt /#234561/details_1.txt ... On Wed, Apr 30, 2008 at 9:27 AM, Nick Kew [EMAIL PROTECTED] wrote: On Wed, 30 Apr 2008 09:01:38 -0400 Phil Pinkerton [EMAIL PROTECTED] wrote

Re: [EMAIL PROTECTED] Convert # to Ascii %23

2008-04-30 Thread Phil Pinkerton
on the wire. Phil Pinkerton wrote: I am not sure where the problem is I tried both IE and Firefox with the same results. Perhaps it is in the cgi or perl script ? see REQUEST_URI below has dropped the path from the # forward. I cannot show details but the sequence goes like this ( page

Re: [EMAIL PROTECTED] Convert # to Ascii %23

2008-04-30 Thread Phil Pinkerton
On Wed, Apr 30, 2008 at 11:30 AM, Joshua Slive [EMAIL PROTECTED] wrote: On Wed, Apr 30, 2008 at 9:40 AM, Phil Pinkerton [EMAIL PROTECTED] wrote: I am not sure where the problem is I tried both IE and Firefox with the same results. Perhaps it is in the cgi or perl script ? see

[EMAIL PROTECTED] Blacklists similar to avoid e.g. forum spam

2008-02-11 Thread Phil Endecott
blocklist entry, and to check new connections in the background. - Finally, I don't see any support for this sort of thing in Apache. Perhaps people have other strategies? Many thanks for any suggestions. Phil

[EMAIL PROTECTED] Return error code for a Location

2008-01-20 Thread Phil Endecott
which feels bad, if you know what I mean. (It's also untested, as I have to wait for a DNS change to propogate before I can see if it has worked.) Any suggestions? Thanks, Phil. - The official User-To-User support forum

Re: [EMAIL PROTECTED] mode_rewrite hostnames and wikiwords

2008-01-07 Thread Phil Wild
thanks again Phil On 07/01/2008, Mike Cardwell [EMAIL PROTECTED] wrote: Mike Cardwell wrote: how would I expand this rule to capture and convert the following? your.host.name - YourHostName (works with rule) YOUR.HOST.NAME - YourHostName (currently not handled) Yo-ur.HOST.name

Re: [EMAIL PROTECTED] mode_rewrite hostnames and wikiwords

2008-01-06 Thread Phil Wild
Hi Mike, This worked a treat many thanks for your help and knowledge... Phil On 05/01/2008, Mike Cardwell [EMAIL PROTECTED] wrote: Phil Wild wrote: Hello apache experts:-) I am trying to rewrite a url which conatins a hostname, converting the hostname to a wikiword. What I

Re: [EMAIL PROTECTED] mode_rewrite hostnames and wikiwords

2008-01-06 Thread Phil Wild
(regardless of case presented) and capitaliseing every dot separated word returning /doc/FullyQualifiedDomainName removing any characters other than [A-Z][a-z][0-9] Many thanks Phil On 07/01/2008, Phil Wild [EMAIL PROTECTED] wrote: Hi Mike, This worked a treat many thanks for your help

[EMAIL PROTECTED] mode_rewrite hostnames and wikiwords

2008-01-04 Thread Phil Wild
like http://www.example.com/doc/hostname.example.com and runs it as http://www.example.com/doc/hostnameexamplecom which is close but I would really like to run it as http://www.example.com/doc/HostnameExampleCom Is this possible and if so, how is it done? Many thanks Phil

Re: [EMAIL PROTECTED] Frustrated with rewrite rule, please help...

2007-12-26 Thread Phil Wild
Thankyou thankyou thankyou Putting the rules in the right location made all the difference. I learnt more from your response than I did digging through all the hwoto's I could find! Many thanks Phil On 26/12/2007, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On 12/23/07, Phil Wild [EMAIL

Re: [EMAIL PROTECTED] Frustrated with rewrite rule, please help...

2007-12-24 Thread Phil Wild
am at a loss as to where the issue is... Phil On 25/12/2007, Thomas Hart [EMAIL PROTECTED] wrote: Phil Wild wrote: Hi All, I am having trouble with my first attempts at using rewrite rules under apache. I am not sure where I am going wrong and have spent the morning googling to try

[EMAIL PROTECTED] Frustrated with rewrite rule, please help...

2007-12-23 Thread Phil Wild
am doing wrong? The error log does not contain any log entries relating to rewriting so I think I am completely missing the mark... Cheers Phil -- Tel: 0400 466 952 Fax: 0433 123 226 email: [EMAIL PROTECTED]

Re: [EMAIL PROTECTED] Please help - confused about reverse proxy

2007-12-10 Thread Phil Wild
Thanks I got it working real simple actually. I put my first attempt in the proxy.conf file but it was conflicting with entries from another virtual host. Once I separated all the entries out to the virtual host config files everything worked a treat. Cheers Phil On 10/12/2007, Staf Wagemakers

[EMAIL PROTECTED] Please help - confused about reverse proxy

2007-12-09 Thread Phil Wild
://app.company.org/cgi-bin/acceptdata.cgi and this works fine and accepts the data via a POST. I want to reverse proxy and rewrite the above so that a POST to http://receive.company.org gets reverse proxied to http://app.company.org/cgi-bin/acceptdata.cgi Is this possible? Many thanks Phil

[EMAIL PROTECTED] reverse proxy based on authentication

2007-11-20 Thread Phil Wild
involved but I would like to always have the URL's that are visible by the outside world to not show where they ended up on based on their group membership. Is something like this possible? How complex is this (for some one fairly new to apache)? Many thanks Phil

[EMAIL PROTECTED] Authentication not checked in proxied directory

2007-11-04 Thread Phil Endecott
credentials. Is this the expected behaviour? This is with 2.2.4. Regards, Phil. - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info

[EMAIL PROTECTED] Re: Authentication not checked in proxied directory [NOT!]

2007-11-04 Thread Phil Endecott
that credentials are being checked when in fact they are not for the subdirectory. By going directly to the subdirectory, the authentication is bypassed. Could the semantics of the config file be more fail-safe? It would be good to at least get a warning. Regards, Phil

[EMAIL PROTECTED] Resend: Blocking proxy requests rewrite_module

2007-10-11 Thread Phil Rhoades
access_log file (so some of my bandwidth must still be getting wasted) - I presume these requests are not being responded to but can I use the rewrite_module to discourage these requesters even further? Thanks, Phil. -- Philip Rhoades Pricom Pty Limited (ACN 003 252 275 ABN 91 003 252 275) GPO

[EMAIL PROTECTED] Blocking proxy requests rewrite_module

2007-10-07 Thread Phil Rhoades
the rewrite_module to discourage these requesters even further? Thanks, Phil. -- Philip Rhoades Pricom Pty Limited (ACN 003 252 275 ABN 91 003 252 275) GPO Box 3411 Sydney NSW 2001 Australia Fax: +61:(0)2-8221-9599 E-mail: [EMAIL PROTECTED

[EMAIL PROTECTED] access denied

2007-08-22 Thread Phil
Directory /usr/local/sql-ledger/usrs Order Deny,Allow Deny from All /Directory Sorry for the long explanation. Perhaps someone may have a suggestion. Thanks in advance. Phil Jourdan - The official User-To-User support forum

Re: [EMAIL PROTECTED] access denied

2007-08-22 Thread Phil
Joshua Slive wrote: On 8/22/07, Phil [EMAIL PROTECTED] wrote: The error message for httpd : client denied by server configuration: /user . This looks like an Apache problem; but there is no /user directory in the apache files. Alias /sql-ledger /user/local/sql-ledger/ Oops

Re: [EMAIL PROTECTED] access denied

2007-08-22 Thread Phil
Joshua Slive wrote: On 8/22/07, Phil [EMAIL PROTECTED] wrote: The error message for httpd : client denied by server configuration: /user . This looks like an Apache problem; but there is no /user directory in the apache files. Alias /sql-ledger /user/local/sql-ledger/ Oops

Re: [EMAIL PROTECTED] access denied

2007-08-22 Thread Phil
Joshua Slive wrote: On 8/22/07, Phil [EMAIL PROTECTED] wrote: The error message for httpd : client denied by server configuration: /user . This looks like an Apache problem; but there is no /user directory in the apache files. Alias /sql-ledger /user/local/sql-ledger/ Oops

Re: [EMAIL PROTECTED] authn_dbd: what format for encrypted password? [dbd now broken]

2007-08-20 Thread Phil Endecott
configuration has not changed. With persist on, the symptom is that I see this in the error log: [Mon Aug 20 23:12:29 2007] [error] [client 86.6.8.194] Error looking up phil in database In the postgresql log, I see *nothing at all*. This log records something even if I just telnet to the right

[EMAIL PROTECTED] authn_dbd: what format for encrypted password?

2007-08-18 Thread Phil Endecott
advice you can offer. Regards, Phil. - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: [EMAIL PROTECTED

[EMAIL PROTECTED] PAM authentication, migrating from 2.0 to 2.2

2007-07-04 Thread Phil Endecott
mod_authnz_external. Which of these would you recommend, with these requirements: - Mainly to work with Subversion. - Normal internet levels of security. - Debian. - Getting it working with minimum fuss. Many thanks for any suggestions. Phil

[EMAIL PROTECTED] PostgreSQL authentication in 2.2; caching?

2007-07-04 Thread Phil Endecott
suggestions about how to proceed would be much appreciated. Regards, Phil. - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe

[EMAIL PROTECTED] Apache 2.0 on AIX 5.3

2006-06-09 Thread phil
in advance, Phil - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: [EMAIL PROTECTED] from the digest: [EMAIL

RE: [EMAIL PROTECTED] Apache 2.0 on AIX 5.3

2006-06-09 Thread phil
Can you tell me the exact configure command you used to configure your apache? Would it apply to my 2.0.58 apache? Phil P.S. the 'Order' error message is just for reference -- if I do not comment out the LoadModule directives, then I get the weird two line error: Syntax error on line 233

RE: [EMAIL PROTECTED] Apache 2.0 on AIX 5.3

2006-06-09 Thread phil
Is there a way to find out which configure parameters were supplied to a particular apache install? This way perhaps I could determine the paramaters that the working apache 1.3 was compiled with, which works with LoadModule... On Fri Jun 9 14:28 , 'JP' [EMAIL PROTECTED] sent: Can you

Re: [EMAIL PROTECTED] Apache 2.0 on AIX 5.3

2006-06-09 Thread phil
error: Syntax error on line 233 of /usr/apache2/conf/httpd.conf: Cannot load /usr/apache2/modules/mod_access.so into server: I hope there is some AIX guru who knows the answer to this, because I am really stumped :( Phil On Fri Jun 9 14:45 , 'David Salisbury' [EMAIL PROTECTED] sent

Re: [EMAIL PROTECTED] Apache 2.0 on AIX 5.3

2006-06-09 Thread phil
variables... Can someone please instruct me how to properly configure them for 2.0? I am looking at http://httpd.apache.org/docs/2.0/programs/configure.html and http://www.apache.org/dist/httpd/binaries/aix/apache_1.3.26-000964804C00-ibm- aix4.3.README but cannot figure it out... Thank you Phil

[EMAIL PROTECTED] Generate 304 (not modified) response with mod_ext_filter

2005-12-30 Thread Phil Endecott
header; I'd like to compare the if-modified-since date with the timestamp on the .svg file, and return a 304 not modified response if nothing has changed. (I'm not sure how this interacts with Etags.) Is there a way to do this? Thanks for any ideas. --Phil

[EMAIL PROTECTED] apache 2.0.55 mod_proxy_http POST changes?

2005-11-30 Thread Phil Dibowitz
. ;) Thanks. -- Phil Dibowitz P: 310-360-2330 C: 213-923-5115 Unix Admin, Ticketmaster.com signature.asc Description: OpenPGP digital signature

[EMAIL PROTECTED] Spawned process doesn't get termination signal in worker MPM

2005-11-22 Thread Phil Endecott
, --Phil. - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: [EMAIL PROTECTED] from the digest: [EMAIL PROTECTED

Re: [EMAIL PROTECTED] Add header when access is denied

2005-11-19 Thread Phil Endecott
Joshua Slive wrote: On 11/17/05, Phil Endecott wrote: Hi Joshua, thanks for the reply. Yes, when I comment-out my ErrorDocument directives I get what I had expected: My ErrorDocuments are the standard ones from the Debian package. Is there anything I can do to fix this? Presumably it's

[EMAIL PROTECTED] Add header when access is denied

2005-11-16 Thread Phil Endecott
-Language: en 9 Expires: Wed, 16 Nov 2005 23:08:13 GMT 23:08:13 ERROR 403: Forbidden. This is with 2.0.54. Is this the expected behaviour? Is there anything I can do about it? Cheers, --Phil. - The official User-To-User support