[EMAIL PROTECTED] Slow image loads

2007-03-26 Thread Nathan Kellogg
We are having some issues with very slow ( 5 to 15 seconds ) load times on 16k images on our site. This seems to happen under moderate load. It does not seem to be any problem with bandwidth form the ISP. Are there any Apache config issues that could be casing this? Server uptime: 4 days

Re: [EMAIL PROTECTED] Apache on Windows

2007-03-07 Thread Nathan Kellogg
Does this mean that an XP box running Apache would be limited to 10 concurrent web browser users? My impression of this was that the connection limit only applied to the Windows Network connections and not to http/https/etc... In fact it is metered by NTLM authentication, if you loade

[EMAIL PROTECTED] Help needed with basic auth

2007-01-31 Thread Nathan Kellogg
We were using basic auth fine until several days ago when we started getting this error: [error] [client 10.1.1.103] (OS 3)The system cannot find the path specified. : Could not open password file: C:/home/herbert/.access I don't understand why Apache is looking for this file. It is cer

[EMAIL PROTECTED] FollowSymLinks in sub-directory

2007-01-24 Thread Nathan Kellogg
We are trying to use the following config to allow a listing of files in the /htdocs/buslist/ directory but not in the /htdocs/ directory. In the absence of index.html in the /htodcs/buslist/ directory, Apache responds with "Forbidden You don't have permission to access /buslist/ on this

RE: [EMAIL PROTECTED] Auth via SQL

2007-01-23 Thread Nathan Kellogg
near the bottom, look for the above error message. So, it works, no idea how stable it is. I guess I should really learn how to compile the modules but I already have too many jobs! :) At 11:18 AM 1/23/2007, you wrote: Nathan Kellogg <mailto:[EMAIL PROTECTED]> wrote: >> T

RE: [EMAIL PROTECTED] Auth via SQL

2007-01-23 Thread Nathan Kellogg
There is also mod_auth_mysql which I got to work on 2.2.3 for both user and group (at the time I tried 2.2.3, only user auth was available). There is a patch available for mod_auth_mysql-3.0.0 to make it compile with Apache 2.2.3. We installed the compiled version of mod_auth_mysql for Apach

RE: [EMAIL PROTECTED] Auth via SQL

2007-01-23 Thread Nathan Kellogg
We tried using mod_authn_dbd with MySQL but there are apparently no MySQL ( or PostgreSQL ) drivers built in to the mod_authn_dbd or to mod_dbd. I do not have the resources to compile myself so that is where I get stuck! Thanks At 09:17 AM 1/23/2007, you wrote: Nathan Kellogg <mai

[EMAIL PROTECTED] Auth via SQL

2007-01-23 Thread Nathan Kellogg
Has anyone successfully setup user authentication using an SQL database? - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-m

[EMAIL PROTECTED] mod_authn_dbd and MySQL

2007-01-22 Thread Nathan Kellogg
We are attempting to setup auth using mod_authn_dbd and MySql 5.x on WINXP. Started right off with an invalid command 'DBDriver' on the conf line: DBDriver mysql Likewise error with DBDriver pgsql. Also, I see that there has been a recent bug report about the MySQL driver not bei

[EMAIL PROTECTED] SSI setup help please

2007-01-12 Thread Nathan Kellogg
We are attempting to setup limited SSI capability in 2.2.3 In httpd.conf we have: LoadModule include_module modules/mod_include.so AddType text/html .shtml AddOutputFilter INCLUDES .shtml And only 1 directory we need to use SSI so: Options FollowSymLinks Options +Includes Allow

Re: [EMAIL PROTECTED] mod_isapi

2007-01-04 Thread Nathan Kellogg
This resolved the issues we were having , thanks very much! At 08:08 PM 1/3/2007, you wrote: Nathan Kellogg wrote: > Happy new year! And happy new year to all mod_isapi users. > We have been stuck in mid migration for a couple months now and are in > need of some help. I unders

[EMAIL PROTECTED] mod_isapi

2007-01-03 Thread Nathan Kellogg
Happy new year! We have been stuck in mid migration for a couple months now and are in need of some help. I understand from WROWE that the 2.2.4 version of mod_isapi should address the problems we are having; the 2.2.3 version always reports 500 errors , and the last bug fix for mod_isapi

[EMAIL PROTECTED] xBase++ on Apache

2006-12-27 Thread Nathan Kellogg
Does anyone have a better way of running xBase++ or Clipper apps under Apache OTHER than mod_isapi or WAA? - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.ht

[EMAIL PROTECTED] Header directive as workaround for mod_isapi bug

2006-12-22 Thread Nathan Kellogg
As a workaround for the mod_isapi 500 error bug, we are trying to replace the 500 error with 200 for the direcotry that handles the isapi apps. Options +ExecCGI SetHandler isapi-handler Header unset 500 Header append 200:ok Apache 2.2.3 will not start w

[EMAIL PROTECTED] ssl - force ssl per directory

2006-12-12 Thread Nathan Kellogg
We have open ssl running fine on Apache 2.2.3. A separate virtual host is defined for both the :80 port and for :443 In order that the .../secure/... directory be handled exclusively by the SSL host, we have : in the :80 vhost : Redirect permanent c:/orcourt/htdocs/secure https://www.orcour

Re: [EMAIL PROTECTED] mod_isapi 500 errors

2006-11-28 Thread Nathan Kellogg
In the meantime, is it possible to use the Header directive to unset the 500 error? At 08:54 AM 11/28/2006, you wrote: Does anyone have a compiled mod_isapi.so that will work with the Devside 1.91 build? I do not have the development tools or skills to compile the fixed module and we're rea

[EMAIL PROTECTED] mod_isapi 500 errors

2006-11-28 Thread Nathan Kellogg
Does anyone have a compiled mod_isapi.so that will work with the Devside 1.91 build? I do not have the development tools or skills to compile the fixed module and we're really stuck without a fix for the 500 error problem. -

Re: [EMAIL PROTECTED] CGI app held open

2006-11-22 Thread Nathan Kellogg
11/21/2006, you wrote: Nathan Kellogg wrote: > We are debugging a CGI app ( mod_isapi ) running on a WINxp machine. Just so you are clear, ISAPI is not CGI - CGI describes a way to launch a program (or script, via a program) passing environment variables to describe the request, and listenin

[EMAIL PROTECTED] Auth problem

2006-11-21 Thread Nathan Kellogg
I am having an auth problem: from error_log : client denied by server configuration: C:/nws/cgi/cfind.dll This has got to be very simple but I don't see it! Thanks in advance. AuthType Basic AuthName "Authorization Required" AuthUserFile c:/nwl/passwords Require user test SSLRequireSSL

[EMAIL PROTECTED] CGI app held open

2006-11-21 Thread Nathan Kellogg
We are debugging a CGI app ( mod_isapi ) running on a WINxp machine. The app executes fine but Apache retains the file handle on the app making it impossible to overwrite the old cgi app with the new one without restarting apache. Is there a way to change this behavior without compromisi

Re: [EMAIL PROTECTED] Auth problem

2006-11-21 Thread Nathan Kellogg
Options ExecCGI AuthType Basic AuthName "Authorization Required" AuthUserFile c:/nwl/passwords Require user test SSLRequireSSL For one thing, there seems to be a conflict between c:/nwl and c:/nws. For another thing, you don't have

[EMAIL PROTECTED] Help Wanted for Setup

2006-11-16 Thread Nathan Kellogg
I am looking for PAID help in the setup of Apache 2.2 on a WINXP box. We will be running openSSL, AUTH and later FastCGI, MYSQL and PHP. This server will host multiple sites and multiple SSL certs. Would prefer to hire someone who will be available later on, after the setup is done, from ti