[EMAIL PROTECTED] apache 2.2.0 + configure + expat woes

2006-03-21 Thread ben
apache's top level configure script to pass this on to its own apr-util (in srclib) so that I need not configure apr* by hand?  I haven't found anything yet from some apache docs and from scanning the srcs...  Thanks. ben

[EMAIL PROTECTED] A NetHack-esque Journey of the dark arts for DBD(mysql) under httpd-2.2.3

2006-08-30 Thread Ben
This is my story of yesterday, on how I managed to bring something resembling mysql onto dbd over httpd 2.2.3; It may explain why I am astounded and amazed that 2.2.3 is called "The best available version of Apache", and why I believe it needs a lot more work to get that badge. The story h

Re: [EMAIL PROTECTED] A NetHack-esque Journey of the dark arts for DBD(mysql) under httpd-2.2.3

2006-08-30 Thread Ben
The next installment... It was time for me to add some meaningful messages to mod_authn_dbd.c Heads up to you apache developers: Try to be more imaginative when writing error messages - At least make each message unique!! There are six "Error looking up %s in database." errors in mod_autn_dbd

Re: [EMAIL PROTECTED] A NetHack-esque Journey of the dark arts for DBD(mysql) under httpd-2.2.3

2006-08-31 Thread Ben
Nice to hear you got it working, though you seem to have gone the long way round. You say I went the 'long way round', well other than using a package, is there a shorter way to install dbd(mysql) into a custom directory? Would you like to write out the steps in a complete and unambiguous mann

Re: [EMAIL PROTECTED] Apache 2.2.3 and MySQL 5.0.24a

2006-09-07 Thread Ben
I include a step-by-step install of A223/Mysql 5024 with DBD in the articles called: "A NetHack-esque Journey of the dark arts for DBD(mysql) under httpd-2.2.3" - posted 20 August on this maillist - it may be relevant or interesting to you. ---

Re: [EMAIL PROTECTED] Apache 2.2.3 and MySQL 5.0.24a

2006-09-08 Thread Ben
then we have to either accomodate different drivers within the httpd layer or pass a meaningful error string (and code) back to the engine. I am sure Nick or one of the others would know how to implement this change in a manner which keeps the concerns of apr-util and httpd separate. Be

Re: [EMAIL PROTECTED] Apache 2.2.3 and MySQL 5.0.24a

2006-09-08 Thread Ben
Rob, (Nick) I have been looking a little more at the issue of returning meaningful error messages back to apache - i didn't like my previous mail's hijacking of apache as a solution - though it should provide an idea of what is going on. So now the implementation looks like. Rob, sorry - t

Re: [EMAIL PROTECTED] Apache 2.2.3 and MySQL 5.0.24a

2006-09-12 Thread Ben
n would be gratefully received. I've already spent a great deal more time on learning backend httpd / apr that I wished for. I'm not a C programmer any more, and I don't want to have to learn "C' style APIs very much... Gr [:-) Ben Ben <mailto:[EMAIL PRO

Re: [EMAIL PROTECTED] mod_dbd mod_authn_dbd mod_authz_dbd confusion

2006-09-15 Thread Ben
then contributions would be welcomed by at least one person on this board! Both Rob and I have successfully implemented 223/5024a to use mod_authz_dbd - but neither of us are sure how or why one compile worked while another didn't. Good luck! Ben Gents, I've been having awf

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-15 Thread Ben
(related to Re: [EMAIL PROTECTED] A NetHack-esque Journey of the dark arts for DBD (mysql) under httpd-2.2.3 and Re: [EMAIL PROTECTED] Apache 2.2.3 and MySQL 5.0.24a Re: [EMAIL PROTECTED] mod_dbd mod_authn_dbd mod_authz_dbd confusion ) The following method should build corre

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-15 Thread Ben
On 15 Sep 2006, at 16:23, Nick Kew wrote: On Friday 15 September 2006 16:03, Ben wrote: The following method should build correctly. Moreover, error reporting is more informative - and has saved me a lot of time already - It's easy to misconfigure something, and get an error happ

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-15 Thread Ben
Hi Vasily - you are lucky .. only one day wasted!! I just saw your second mail cd $HP_SRC/srclib/apr-util ./buildconf You don't need to do configure or make here - as it is taken care of later on by the big configure The need to run buildconf is so that the configure file gets to notic

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-15 Thread Ben
Ben,   Thank you so much for spending time with this.   When I do   cd $HP_SRC/srclib/apr-util   ldd .libs/libaprutil-1.so   I do not see mysql in there.  How come?Vasiliy Boulytchev[EMAIL PROTECTED]I am not sure if you actually have the  .libs/libaprutil-1.so fileif you do, and libmysqlclient_r

Re: [EMAIL PROTECTED] compilation problem

2006-09-18 Thread Ben
I've seen this error before. It's because the current /usr/apache directory is causing some sort of config problem Try this - mv /usr/apache /usr/apache.x ./configure --prefix=/usr/apache --enable-proxy --enable-cache -- enable-disk-cache make mv /usr/apache.x /usr/apache make install -

Re: [EMAIL PROTECTED] compilation problem

2006-09-20 Thread Ben
- and how/why! Of course, if it succeeds, it would be nice to know that too.. -b On 20 Sep 2006, at 15:23, Hasson Yehudit wrote: I tried it, but it didn't work (I got the same error while compiling). Maybe do you have another suggestion? -Original Message- From: Ben [mailto:[

Re: [EMAIL PROTECTED] configure apache fail with cannot access mod_security.c

2006-09-20 Thread Ben
Try ./buildconf before you run ./configure On 20 Sep 2006, at 16:16, Roshan Perera wrote: Hi, Please cc me on [EMAIL PROTECTED] .. trying to configure apache 2.2.3 with mod_security 1.9.4 my configure looks like this.. [EMAIL PROTECTED] $ pwd /export/home/pererar/apache/httpd-2.2.3/ [EMAI

Re: [EMAIL PROTECTED] configure apache fail with cannot access mod_security.c

2006-09-20 Thread Ben
/apr/configure buildconf: checking installation... buildconf: python not found. You need python installed to build APR from SVN. ./buildconf failed for apr [EMAIL PROTECTED] $ Is there any other way ? - Original Message - From: Ben <[EMAIL PROTECTED]> Date: Wed

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Ben
Hi Philip, If you can provide a set of unambiguous buildsteps for MySQL 5.0.24a over httpd-2.2.3, that would be very useful. Anything else just doesn't really help me very much - due to the large number of interdependant factors involved. -b. On 21 Sep 2006, at 06:44, Philip M. Gollucci wr

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Ben
Hi Rob, Just 'cos I got it working on one machine doesn't say so much - thanks for having a go. It may be a good idea to get a tail on the mysql log ( hostname.err ) Also, because I had put mysql into a custom directory, I needed to change some of the variables in my.cnf - that may make a

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Ben
= When running make, I get these errors (sorry for the wrapping..): [your apu did not compile with mysql linked in.] --with-mysql=DIR also see above for the 1.2.8-dev requirement. I was not able to get this to work in 1.2.7 which comes with 2.2.3. Hi Philip, I go

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Ben
Hi Rob, Ok - well your sock is correct! I did have some issues with character sets, hence those lines. They may also be not relevant. CFLAGS="-DHAVE_MYSQL_H -I/usr/local/include/mysql/ -L/usr/local/lib/ mysql/" ./configure [ your configure details --] I am not sure, b

[us...@httpd] What is the best way to handle "too many open files" errors?

2009-05-19 Thread Ben Welsh
most awesome tutorial or previous lister post ever, please forgive my ignorance. I'd appreciate even just the link. Thank you, Ben. $ ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited file size (blocks, -f) unlimited pending

Re: [us...@httpd] What is the best way to handle "too many open files" errors?

2009-05-20 Thread Ben Welsh
Thanks for your thoughts Andre. As I recollect, I think some of the these errors started cropping up around the time I compiled the python module numpy on the server. And I think that fortran and a lot of those deadweight file objects are its children. Perhaps if I scaled by the server to no longer

Re: [us...@httpd] Are apache caching modules redudant of memcached?

2009-05-22 Thread Ben Welsh
t that might be another thread ... =) Ben. On Fri, May 22, 2009 at 1:32 PM, Anthony J. Biacco < abia...@formatdynamics.com> wrote: > You can comment them out > > -Tony > --- > Manager, IT Operations > Format Dynamics, Inc. > 303-573-1

Re: [us...@httpd] What is the best way to handle "too many open files" errors?

2009-05-22 Thread Ben Welsh
I just had something of a "slap your forehead" moment on this one. It had be eating me about where all those extra lsof processes came from. And then it hit me. It's the "developer tools" kit from CentOS. Duh. http://www.linuxtopia.org/online_books/centos_linux_guides/centos_linux_developer_tools_

Re: [us...@httpd] What is the best way to handle "too many open files" errors?

2009-05-23 Thread Ben Welsh
> It was thus said that the Great Ben Welsh once stated: > > I just had something of a "slap your forehead" moment on this one. It had > be > > eating me about where all those extra lsof processes came from. And then > it > > hit me. It's the "d

[us...@httpd] mod_dbd and multiple DB connections

2009-10-15 Thread Ben Davies
you specify which connections to use. I think I know the answer is that there can only be one connection per server/virtual host. I hope this is not the case. Cheers! Ben Davies

RE: [us...@httpd] mod_dbd and multiple DB connections

2009-10-16 Thread Ben Davies
Nice one! I was hoping this had been addressed. Cheers! Ben From: nicholas@sun.com [mailto:nicholas@sun.com] On Behalf Of Nick Kew Sent: 15 October 2009 20:04 To: users@httpd.apache.org Subject: Re: [us...@httpd] mod_dbd and multiple DB connections On 15 Oct 2009, at 09

[EMAIL PROTECTED] Apache 2.2.9: ./ configure: WARNING: Unrecognized options: --enable-mod etc

2008-07-30 Thread Ben Aurel
nable-cache \ > --enable-proxy \ > --enable-shared \ > --enable-logio \ > --enable-deflate \ > --with-included-apr \ > --enable-cgi \ > --enable-cgid \ > --enable-suexec I get the message: "configure: WARNING: Unrecognized options: --disable-static, --disable-ipv6, --en

[EMAIL PROTECTED] Re: Apache 2.2.9: ./ configure: WARNING: Unrecognized options: --enable-mod etc

2008-07-30 Thread Ben Aurel
oups - I missed a previous posting to the exact same problem. therefore this should be considered as closed. On Wed, Jul 30, 2008 at 1:36 PM, Ben Aurel <[EMAIL PROTECTED]> wrote: > hi > > I try to compile Apache 2.2.9 with a Debian Layout on Mac OS X 10.5.4 > > > ./c

[EMAIL PROTECTED] error when MAKE Apache 2.2.*: exports.c : error: previous definition of '...' was here

2008-07-30 Thread Ben Aurel
\; sudo find /usr -iname "apache*" -exec rm -rf {} \; sudo find /usr -iname "httpd*" -exec rm -rf {} \; 3. I already tried it with several versions 2.8, 2.7, 2.2, but always the same errors. I didnt configure something special. Just plain "./configure" - no optio

Re: [EMAIL PROTECTED] error when MAKE Apache 2.2.*: exports.c : error: previous definition of '...' was here

2008-07-30 Thread Ben Aurel
(const void *)apr_allocator_create; 153 const void *ap_hack_apr_allocator_destroy = (const void *)apr_allocator_destroy; 154 const void *ap_hack_apr_allocator_alloc = (const void *)apr_allocator_alloc; 155 const void *ap_hack_apr_allocator_free = (const void *)apr_allocator_free; Maybe this

[EMAIL PROTECTED] Article: Howto build Apache2 on Mac OS X Leopard

2008-08-20 Thread Ben Jakbot
hi I just updated my article on how to compile and setup apache2 from the sources up on mac os x leopard. http://manuals.jakbot.com/doku.php?id=os:macosx:setup:apache2-macosx ben - The official User-To-User support forum of the

[EMAIL PROTECTED] configuration file management

2008-08-29 Thread Ben Spencer
Probing to see if people have a good way/tools which people use to manage their apache configuration file(s). we have roughly 50 virtual hosts which are divided into roughly four major applications with each application having some common configuration directives. While copy/paste works, it is easy

RE: [EMAIL PROTECTED] configuration file management

2008-08-30 Thread Ben Spencer
Thank you for the information and links. > You should put common directives into a separate file and Include[1] > them, > to avoid repetition. Does this work within a virtualhost block? Example: ServerName: blah.com # include standard RewriteRules Include conf/local/common-rewrite.conf # site s

RE: [EMAIL PROTECTED] [A2/Load balancing] mod_proxy vs. dedicated box?

2008-09-03 Thread Ben Spencer
Dedicated device = ?? What type of applications are running on server 1 & server 2? Sticky sessions being used? Explain a little more of your configuration. You should also be able to get a feeling for the distribution of the requests by using balancer-manager benji Benji Spencer System Adminis

RE: [EMAIL PROTECTED] hardware for proxy

2008-09-09 Thread Ben Spencer
How active are the sites? How complicated is the "proxy" configuration? Are the Proxies an SSL termination point? Server uptime: 50 days 3 hours 56 minutes 39 seconds Total accesses: 36316506 - Total Traffic: 1544.5 GB CPU Usage: u468.16 s2336.35 cu0 cs0 - .0647% CPU load 8.38 requests/sec - 373.7

RE: [EMAIL PROTECTED] hardware for proxy

2008-09-09 Thread Ben Spencer
> Ther is no SSL involve what so ever. > The sites are very active (it is a share hosting environment and this > is > the reason why I wanna try the proxy) and beside that we plan to > expand. > We have between 50~300 reqs/sec (depend on time of the day) with around > 10~20 kb/reqs and this is not

RE: [EMAIL PROTECTED] redirects conundrum

2008-09-12 Thread Ben Spencer
The issue is that you are redirecting / to /a/ You can accomplish what you need with mod_rewrite, though I am not sure the processing order for redirects done with Redirect and those done with mod_rewrite so this might involve changing the Redirect permanent directives to mod_rewrite redirect d

RE: [EMAIL PROTECTED] redirects conundrum

2008-09-12 Thread Ben Spencer
ssage- > From: Eric Bowman [mailto:[EMAIL PROTECTED] > Sent: Friday, September 12, 2008 10:29 AM > To: users@httpd.apache.org > Subject: Re: [EMAIL PROTECTED] redirects conundrum > > Ben Spencer wrote: > > The issue is that you are redirecting / to /a/ > > > >

RE: [EMAIL PROTECTED] Trouble With mod_rewrite

2008-09-16 Thread Ben Spencer
Looks like you went the wrong direction with the rewrite. The ! is "not". You have "not" www.consumer-sc.ca.gov, then redirect. RewriteCond %{HTTP_HOST} !^www\.consumer-sc\.ca\.gov$ [NC] Should be RewriteCond %{HTTP_HOST} ^www\.consumer-sc\.ca\.gov$ [NC] Or even (which doesn't force the req

[EMAIL PROTECTED] setting response header based on content type

2008-09-30 Thread Ben Spencer
Seems I have run into an unique little problem. I am interesting in setting a response header based on the content-type of the response. This seems like this should be an head thing with a combination of SetEnvIf and Header, however, SetEnvIf only looks at request headers, and not the response head

[us...@httpd] Resource Centric Authz

2009-03-26 Thread Ben Davies
do this in PHP, but I'm attempting to draw a clean line between Authn/Authz and the resources accessed underneath. Any comments or ideas would be appreciated. Cheers! Ben

[EMAIL PROTECTED] "Content-Length: 0" problem in GET request

2006-03-23 Thread Ben Hoyt
0" header in the GET request ... though I could be missing something obvious. Any pointers or info would be much appreciated. I'm using Apache 2.0.47 under Win32 (WinXP SP2). Thanks heaps, Ben. -- Ben Hoyt | [EMAIL PROTECTED] Harvest Electro

Re: [EMAIL PROTECTED] "Content-Length: 0" problem in GET request

2006-03-23 Thread Ben Hoyt
CGI script, but if I manually expand the above "/he" to the full link ("/w.cgi?cmd=wml&hsn=3001"), it still fails in just the same way. -- Ben Hoyt | [EMAIL PROTECTED] Harvest Electronics | PO Box 446 | 10 Pragnell St | Masterton | New Zealand http://www

Re: [EMAIL PROTECTED] "Content-Length: 0" problem in GET request

2006-03-23 Thread Ben Hoyt
ero. I didn't immediately connect that to the "Content-Length: 0" header (though it obviously is the same thing), because I knew my CGI script wasn't parsing the headers, Apache was. But of course Apache just converts that header to the CONTENT_LENGTH environment variable . .

[EMAIL PROTECTED] Loading Mod_Python module generates error:: "undefined symbol: apr_table_compress"

2006-04-16 Thread Ben Ringold
uires Apache 2.0.47+ although the documentation says 2.0.40 is supported. I have tried updating to apr_util-0.9.7-1 via rpm, and then recompiling mod_python, but the results were identical. Thanks in advance. Ben Ringold Hypothetical Sof

Re: [EMAIL PROTECTED] Loading Mod_Python module generates error:: "undefined symbol: apr_table_compress"

2006-04-17 Thread Ben Ringold
For the record, I was able to resolve this problem by upgrading to httpd-2.0.47 The current documentation for mod_python-3.2.8 states it is compatible with Apache 2.0.40, but I believe this is incorrect due to the error described below. Ben Ringold Hypothetical Software

[EMAIL PROTECTED] Setup htpasswd on directory but allow access to index file

2007-04-19 Thread Ben Roberts
allow Allow from all AuthType Basic AuthName "Private Area" AuthUserFile /home/username/.htpasswds require user bill ben Can anybody tell me why my override of the password protection for index.php files is being ignored? Or alternatively tell me a

Re: [EMAIL PROTECTED] Setup htpasswd on directory but allow access to index file

2007-04-19 Thread Ben Roberts
Joshua Slive wrote: On 4/19/07, Ben Roberts <[EMAIL PROTECTED]> wrote: Hello there, I need to setup htpasswd protection on a web directory served by Apache. I also need to permit access to the index file in the specified directory, but block access to any other files or subdirectorie

[EMAIL PROTECTED] build mod_ssl with Apache 2.2.4

2007-06-18 Thread Kader Ben
1 Could someone tell me what I'm missing? Regards, Ben It's here! Your new message! Get new email alerts with the free Yahoo! Toolbar. http://tools.search.yahoo.com/t

[EMAIL PROTECTED] Limit number of prefork worksers a virtual host can use

2007-08-03 Thread ben short
Hi, I'm using httpd 2.2.4 and have two virtual hosts. Is it possible to assign half of the available workers to each virtual host? Regards Ben Short - The official User-To-User support forum of the Apache HTTP Server Pr

[EMAIL PROTECTED] Rewrite Help

2007-08-25 Thread Ben Hussey
This is something I've been trying to do for a while but never found or achieved how to do it. I need to redirect (on a large scale): http://xyz.mydomain.com to: /web/live/xyz Is this possible using mod_rewrite and if so I would greatly appreciate a starting block to work from Thanks Ben Hussey

[EMAIL PROTECTED] Apache able to cache entire HTML page?

2007-09-03 Thread Ben Spencer
Background: We have a CMS system which generally houses rarely-updated content (the content providers are outside of our group and of course want to be able to push updates out whenever they want). Saddly, the CMS system really can't keep up with the traffic we receive without many backend applicat

[EMAIL PROTECTED] mod_proxy_balancer failover based on response code?

2007-09-03 Thread Ben Spencer
We are successfully using proxy_load_balancer to load balance requests to backend IIS servers. We noticed that if a "site" on one of the IIS servers is turned off, Apache still considers it a member and will send requests to it. IIS responds with a 503 (I think -- no site configured for this name o

RE: [EMAIL PROTECTED] Apache able to cache entire HTML page?

2007-09-04 Thread Ben Spencer
che.org > Subject: Re: [EMAIL PROTECTED] Apache able to cache entire HTML page? > > On 04/09/07, Ben Spencer <[EMAIL PROTECTED]> wrote: > > Question: > > Can apache cache everything for an undefined amount of time > > (days/months/years) without concern of the bac

[users@httpd] Wildcard DNS with Separate Subdomain Log Files

2005-05-27 Thread Ben Fryer
a script called split-logfile in the manual but its not very clear how it can be used. Any help would be greatly appreciated. Many Thanks Ben - The official User-To-User support forum of the Apache HTTP Server Project. See

Re: [users@httpd] Wildcard DNS with Separate Subdomain Log Files

2005-05-27 Thread Ben Fryer
Hi Jean Thank you great answer, just what I was looking for! One final question ;) can I just check how I should use split-logfile CustomLog "|/apache/split-logfile >> /path/to/user/logs/access_log" vhost Something like that? Thanks again Ben - Original Message --

[EMAIL PROTECTED] Flag to enable reading plain ASCII

2005-10-24 Thread Ben Gardiner
and what to say or change? Ben -- From: Ben Gardiner Return address: [EMAIL PROTECTED] - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info.

Fwd: [EMAIL PROTECTED] Flag to enable reading plain ASCII

2005-10-24 Thread Ben Gardiner
-- Forwarded message -- From: Joshua Slive <[EMAIL PROTECTED]> Date: Oct 24, 2005 12:41 PM Subject: Re: [EMAIL PROTECTED] Flag to enable reading plain ASCII To: [EMAIL PROTECTED] Please send your message to the list. Thanks. Joshua. On 10/24/05, Ben Gardiner <[EMAIL

Re: [EMAIL PROTECTED] Flag to enable reading plain ASCII

2005-10-25 Thread Ben Gardiner
almost useless. Thanks for any help. Ben On 10/24/05, Joshua Slive <[EMAIL PROTECTED]> wrote: > On 10/24/05, Ben Gardiner <[EMAIL PROTECTED]> wrote: > > > > On 10/24/05, Ben Gardiner <[EMAIL PROTECTED]> wrote: > > > Thanks, Joshua, for responding. I haven

Re: [EMAIL PROTECTED] Flag to enable reading plain ASCII

2005-10-27 Thread Ben Gardiner
while. But Apache is all new to me. Please help. Ben On 10/25/05, Nick Kew <[EMAIL PROTECTED]> wrote: > Ben Gardiner wrote: > > The Apache error_log tells me, on many lines, > > "Directory index forbidden by rule." > > That's just Options +indexes you ne

[EMAIL PROTECTED] Combination of plain and html

2005-10-27 Thread Ben Gardiner
Hi Users -- I am new at Apache but a veteran from the BBS days. So I have a combination of html files and plain ascii. Does anyone else have that combination? I am trying, so far without success, to set up httpd.conf to permit callers to access the plain ascii files. I don't really know diddly

Re: [EMAIL PROTECTED] Combination of plain and html

2005-10-27 Thread Ben Gardiner
10 years.) If that special diredtory were "bbs" I might then put ? But is it necessary? Ben (if I seem dumb or obstinate it is becasue I do not understand) On 10/27/05, Joshua Slive <[EMAIL PROTECTED]> wrote: > On 10/27/05, Ben Gardiner <[EMAIL PROTECTED]> wrote: &

Re: [EMAIL PROTECTED] Combination of plain and html

2005-10-28 Thread Ben Gardiner
, but they cannot access the directory itself for browsing, nor can they see the file names in it. Ben On 10/27/05, Joshua Slive <[EMAIL PROTECTED]> wrote: > On 10/27/05, Ben Gardiner <[EMAIL PROTECTED]> wrote: > > > Acting as a caller, I can indeed reach a specific asci

[EMAIL PROTECTED] Images/Flash files not loading.

2005-11-03 Thread Ben Houlton
stops. you can see what i'm talking about here: http://www.benjrox.net/?page=kangaroos and here: http://john.benjrox.net/flash/YouCannotEscapeYourFate.swf   thank you for your time.   ben houlton

Re: [EMAIL PROTECTED] Google Map of Apache users active on this list (OT)

2005-11-03 Thread Ben Gardiner
Very cute idea. I was on the list (gmail) but then somehow off. Ben On 11/3/05, Saad, Dan (N-Computer Sciences Corp) <[EMAIL PROTECTED]> wrote: > Claire, > > I just checked out your map and I'm one of two from Colorado (dan) and your > marker seems 2 far North. I'm

[EMAIL PROTECTED] How to prevent from simple DoS?

2007-11-18 Thread Ben Macintosh
secs without creating new problems? I'm using Apache 2.0.54 from Debian Sarge. Here's a screenshot of the status page: http://img520.imageshack.us/my.php?image=statushi3.png Any help appreciated Thanks, Ben - The offi

Re: [EMAIL PROTECTED] How to prevent from simple DoS?

2007-11-19 Thread Ben Macintosh
all rule. Although it could be quite difficult to get it right. As every malicious request blocks a slot for 5 minutes there hasn't got to be a lot of traffic/requests. But I guess that's a possibility which would work, even though I&#x

Re: [EMAIL PROTECTED] How to prevent from simple DoS?

2007-11-19 Thread Ben Macintosh
already been addressed in newer releases? Note the different output from netstat on Apache 2.0.54/Debian Sarge when telnetting to the server (State, User, INode, PID): ESTABLISHED 33 18526669 15770/apache2 and Apache 2.2.3/Debian Et

Re: [EMAIL PROTECTED] How to prevent from simple DoS?

2007-11-19 Thread Ben Macintosh
irst, right? In my case the IPs were always different, so this won't help me much in the future. Ben - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html>

Re: [EMAIL PROTECTED] How to prevent from simple DoS?

2007-11-19 Thread Ben Macintosh
2007/11/19, Nick Kew <[EMAIL PROTECTED]>: > On Mon, 19 Nov 2007 20:19:20 +0100 > "Ben Macintosh" <[EMAIL PROTECTED]> wrote: > > I already thought about using a firewall rule. Although it could be > > quite difficult to get it right. As every malicious reque

Re: [EMAIL PROTECTED] How to prevent from simple DoS?

2007-11-19 Thread Ben Macintosh
2007/11/19, Joshua Slive <[EMAIL PROTECTED]>: > On Nov 19, 2007 3:19 PM, Ben Macintosh <[EMAIL PROTECTED]> wrote: > > > Thanks for pointing me to the right direction - never heard about > > AcceptFilter before. > > Interesting, because it is specifically suggest

[EMAIL PROTECTED] Configuring ssl on apache 2 and Leopard 10.5.1

2008-01-06 Thread Ben assis
Hi all, On an imac intel dual core, I recently migrated to Leopard from Tiger 10.4.10. On my Tiger client, I had installed my own web server using openssl and mod_ssl with Apache 1.3 server; https was working fine. On Leopard with apache 2.2.6 and OpenSSL 0.9.7, I cannot set my own web server to w

Re: [EMAIL PROTECTED] Configuring ssl on apache 2 and Leopard 10.5.1

2008-01-06 Thread Ben assis
Hi William, You could explain how I would introduced Leopard's own firewall ? Would you tell me how and wherer I could do that: in which system preferences ? Regards 2008/1/6, William A. Rowe, Jr. <[EMAIL PROTECTED]>: > > Ben assis wrote: > > > > As my ISP is blo

Re: [EMAIL PROTECTED] Configuring ssl on apache 2 and Leopard 10.5.1

2008-01-07 Thread Ben assis
Ok William, I know that I can use a firewall but I didn't activate it.Thanks 2008/1/6, William A. Rowe, Jr. <[EMAIL PROTECTED]>: > > Ben assis wrote: > > > > As my ISP is blocking ports 80 and 443, I was using ports 8080 and 8083 > > under Tiger. > > Under

Re: [EMAIL PROTECTED] Configuring ssl on apache 2 and Leopard 10.5.1

2008-01-09 Thread Ben assis
n their side ... Could you give us the output you get when you run "httpd -S" on the > command line? Here is what I get : bash-3.2# httpd -S VirtualHost configuration: Syntax OK Regards Ben

[EMAIL PROTECTED] Error Documents

2008-02-10 Thread Ben Hussey
Is it possible to get local paths to work non-relatively? (Apache 2.2) Here are the relevant parts of my config and the result: > > ServerAdmin [EMAIL PROTECTED] > VirtualDocumentRoot /web/live/%1/ > > > ErrorDocument 400 /web/error/error.php?code=400 > ErrorDocument 403 /web/error/erro

Re: [EMAIL PROTECTED] Error Documents

2008-02-10 Thread Ben Hussey
Ah indeed - I missed the Alias line from my 2.0 configuration. Thanks On 10/02/2008, Nick Kew <[EMAIL PROTECTED]> wrote: > On Sun, 10 Feb 2008 15:49:16 +0000 > "Ben Hussey" <[EMAIL PROTECTED]> wrote: > > > In version 2.0 relative and non-relative local pa

[EMAIL PROTECTED] mod_rewrite, cookies and : in the value

2008-03-04 Thread Ben Spencer
Configuration: 2 servers which use two different cookies to help maintain sessions. The cookies are set domain wide so each server can actually update the others cookies. When a request is sent to either server, I want to be able to update the others cookies (session timeout time) with mod_rewrite

RE: [EMAIL PROTECTED] mod_rewrite, cookies and : in the value

2008-03-04 Thread Ben Spencer
> > This is a simple task, except that the value of the cookie actually has > > a ":" in it which confuses mod_rewrite and the parameters since the > > parameter separator is a ":". > > You just need to escape the colon as "%3A" (percentage-three-uppercase A). HmmmThanks. How to do that in th

[EMAIL PROTECTED] Cannot access "localhost"

2008-03-05 Thread Ben Schonle
ssing localhost work? or point me to some tutorial that is addressing the issue? Further research: ------ Here also the data from the /etc/hosts: 127.0.0.1 localhost 127.0.1.1 ben-desktop # The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-lo

Re: [EMAIL PROTECTED] Cannot access "localhost"

2008-03-05 Thread Ben Schonle
posed to be empty due to the new apache2.conf file??? The ports.conf contains: // Listen 80 Listen 443 // Any furthe advice? Here also the data from the /etc/hosts: 127.0.0.1 localhost 127.0.1.1 ben-desktop cheers, Ben Joshua Slive wrote: On Wed, Mar 5, 2008 at 2:

Re: [EMAIL PROTECTED] Cannot access "localhost"

2008-03-05 Thread Ben Schonle
[EMAIL PROTECTED]:~$ sudo netstat -anp | grep '^tcp.*LISTEN' [sudo] password for ben: tcp0 0 0.0.0.0:80 0.0.0.0:* LISTEN 5114/apache2 tcp6 0 0 :::22 :::* LISTEN 4693/sshd //

Re: [EMAIL PROTECTED] Cannot access "localhost"

2008-03-05 Thread Ben Schonle
I am waiting for replies from Ubuntu still. If I find something out, I will let you guys know. Thx very much so far! Joshua Slive wrote: On Wed, Mar 5, 2008 at 3:00 PM, Ben Schonle <[EMAIL PROTECTED]> wrote: [EMAIL PROTECTED]:~$ sudo netstat -anp | grep '^tcp.*LISTEN'

RE: [EMAIL PROTECTED] strange tmp file created by apache

2008-03-13 Thread Ben Spencer
That is a PHP session (tmp) file. http://us.php.net/manual/en/ref.session.php benji --- Benji Spencer System Administrator Ph: 312-329-2288 > -Original Message- > From: Marc Fromm [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 13, 2008 1:07 PM > To: users@httpd.apache.org > Subject: [

[EMAIL PROTECTED] "Apache HTTP server stopped working and was closed"

2008-04-03 Thread Ben Okonji
opped working and was closed". I can't understand what the problem is. I have never had any problems like this with XP so I'm assuming it's a compatability issue with Vista and Apache. Can anybody confirm this? And any ideas please? Many thanks, Ben

Re: [EMAIL PROTECTED] "Apache HTTP server stopped working and was closed"

2008-04-05 Thread Ben Okonji
Hi, thanks for your reply. But where I cant find a download for "- symbols.zip" on the Apache. Can you direct me please? Thanks, Ben. On Thu, Apr 3, 2008 at 7:56 PM, Joshua Slive <[EMAIL PROTECTED]> wrote: > On Thu, Apr 3, 2008 at 11:00 AM, Ben Okonji <[EMAIL PROTECT

[EMAIL PROTECTED] Permissions denied despite corrections

2008-05-21 Thread Ben Gardiner
ls -alZ to check the SELinux permissions, and they all look correct. Is there some place (/etc/httpd/httpd.conf or /var/www/vhosts/conf/httpd.include) I should check? Ben -- From: Ben Gardiner Return address: [EMAIL PROTECTED]

Re: [EMAIL PROTECTED] Clustering

2008-05-22 Thread Ben Ricker
Google is your friend: http://java.sys-con.com/read/44199.htm Ben Ricker On May 22, 2008, at 5:45 AM, Ch Praveena wrote: Hi all, I think I can get a proper response and can solve my issue. I am trying to cluster Jboss(Mainitans tomcat as a web container) using APACHE as load

Re: [EMAIL PROTECTED] Clustering

2008-05-22 Thread Ben Ricker
I misunderstood the exact nature of your issue. This questions sounds like something better sent to a JBoss or Tomcat user Forum. it is not Apache related. Ben On May 22, 2008, at 7:12 AM, Ch Praveena wrote: I dint get u. If you mean that my intension is to know about the way of

[EMAIL PROTECTED] mod_setenvif SEGFAULT PCRE - OSX 10.4.11

2008-05-23 Thread Ben Davies
is the httpd.crash.log. I would appreciate any help, directions or hunches anyone has, as the use of SetEnvIf is pretty vital to my project. Thank you! Ben ****** Host Name: ben-davies-computer Date/Time: 2008-05-23 11:12:07.863 +0100 OS Version: 10.4.11 (Build 8S2167) Report V

RE: [EMAIL PROTECTED] mod_setenvif SEGFAULT PCRE - OSX 10.4.11

2008-05-23 Thread Ben Davies
Just a quick update to my previous posting: It now appears that the same compile_regex PCRE error fires for mod_rewrite as well. So there is definitely some problem with my compile and PCRE, as more that one module is affected. Again, any help would be appreciated! Cheers! Ben Ben Davies

[EMAIL PROTECTED] RE: RESOLVED [EMAIL PROTECTED] mod_setenvif SEGFAULT PCRE - OSX 10.4.11

2008-05-23 Thread Ben Davies
time with no problems. Cheers! Ben Ben Davies | Lead Developer | Stickyeyes 6th Floor, West One, Wellington Street, Leeds, LS1 1BA Email: [EMAIL PROTECTED] 0113 391 2929 | Fax 0113 391 2939 This e-mail may contain information that is privileged, confidential or otherwise protected from

[EMAIL PROTECTED] error when compiling on mac os x (leopard)

2008-05-23 Thread Ben Aurel
tool-woes-td15248567.html After that I was able to install Apache. Maybe somebody can use this information about that problem (Bugreport?). Or somebody could tell me a little bit more about it. Thanks a lot Ben - The official U

Re: [EMAIL PROTECTED] RE: Retransmissions seen for HTTP GETs and POSTS

2008-05-27 Thread Ben Ricker
You might be looking at a network load issue or need to tweak the TCP retransmission timeout setting. But again, the issue is on the TCP/ networking layer and not an issue with Apache. Good luck. -- Thanks, Ben Ricker -- I use my cat's name for a password: he is called [

Re: [EMAIL PROTECTED] Heavy Wait on My Shoulders

2008-05-29 Thread Ben Ricker
I would search for 'LogLevel' and bump it up to Debug and watch the error_log. Also, you say the request hits the access_log? What is the result? Since you have mod_perl, you may be using CGI which is the cause of the hang. Ben Ricker On Thu, May 29, 2008 at 3:52 PM, amiribarksda

Re: [EMAIL PROTECTED] Heavy Wait on My Shoulders

2008-05-29 Thread Ben Ricker
That is expected because reload stops the current request and starts another one so it would force a Broken Pipe. Have you tried turning off https and seeing if you see the same behavior? -- Thanks, Ben Ricker -- I use my cat's name for a password: he is called [

Re: [EMAIL PROTECTED] Heavy Wait on My Shoulders

2008-05-30 Thread Ben Ricker
is for 1.3 but you can apply the tuning parameters to 2.x if you look them up on apache.org. If I am not mistaken, most of the directives are still operable in 2.x. -- Thanks, Ben Ricker -- I use my cat's name for a password: he is called [EMAIL PROTECTED] and I chang

Re: [EMAIL PROTECTED] Heavy Wait on My Shoulders

2008-05-30 Thread Ben Ricker
KeepALives off is a BAD idea. You should turn them on. In fact, I would bet my semi-pro reputation that this may be your big issue with the SSL slowness. It may not be ALL the issues since you are using dynamic content which brings a host of perf issues. Read that link and tune KeepAlives. Ben

  1   2   3   >