Re: [users@httpd] Strange change in behavior of web page

2024-10-09 Thread Simon Harrison
On Wed, 09 Oct 2024 17:59:49 +0200 Freek de Kruijf wrote: > I also tried to use Microsoft Edge and it also displays the page > wrongly. As I wrote the content I see in the page in the browser in > both cases is the same. So why does the browser display things > differently when the only obvious

Re: [users@httpd] How to sign up using Apache

2022-07-03 Thread Simon Harrison
regards, > Ahmmad Ismail > I setup users over SSH with Python: subprocess.run(['ssh', 'm...@server.tld', 'htdbm -bt /usr/local/apache2/var/users.dbm', email, pword, '{},'.format(alias)]) Works really well. You will need to make yours

[users@httpd] Program or script to create sites in /var/www/

2022-06-24 Thread Simon Harrison
Hello. For a project I'm working on, I'll making a number of sites under: /var/www/webdav/ It appears that mod_macro should handle the configuration side of things, but I'm wondering how other users handle creating the DocumentRoot? Preferably over SSH.

Re: [users@httpd] Calling htdbm from another server

2022-01-12 Thread Simon Harrison
e been looking into this some more and I think the easiest way if can execute htdbm without requiring a password over ssh. Thanks for the tip though, I'll bear it in mind. Simon -- Web: https://simonh.uk Email: m...@simonh.uk --

[users@httpd] Calling htdbm from another server

2022-01-11 Thread Simon Harrison
m -bt /usr/local/apache2/var/users.db someone pword in a simple way if possible. Maybe someone has a cgi script I could use / adapt? Thanks, Simon -- Web: https://simonh.uk Email: m...@simonh.uk - To unsubscribe, e-mail:

Re: [users@httpd] AuthDBMGroupFile -- htdbm usage?

2021-12-24 Thread Simon Harrison
I've decided to answer my own question in case it helps others in the future. As it turns out, the solution was to pass a string with comma separated values with the -t option: root@server:/usr/local/apache2/var# htdbm -t users.dbm username "group1,group2" Could this be added to the docs explicit

Re: [users@httpd] AuthDBMGroupFile -- htdbm usage?

2021-12-24 Thread Simon Harrison
On Fri, 24 Dec 2021 10:59:36 + Simon Harrison wrote: > Hello. Following the advice here: > > https://httpd.apache.org/docs/2.4/mod/mod_authz_dbm.html#authdbmgroupfile > > I'm wanting use dbm for managing users and groups (in the same file). > The thing is, I can

[users@httpd] AuthDBMGroupFile -- htdbm usage?

2021-12-24 Thread Simon Harrison
dbmmanage which is now obsolete. The man page for htdbm is great for managing users, but the word group doesn't even appear. Can someone help me out? Many thanks, Simon -- Web: https://simonh.uk Email: m...@simonh.uk -

Re: [users@httpd] unescape urlencoded

2018-11-02 Thread Simon Walter
Thank you sir. I certainly will. Best, Simon On 10/27/2018 04:09 AM, William A Rowe Jr wrote: > Hi Simon, > > you might want to express your interest/RFE to the d...@apr.apache.org > <mailto:d...@apr.apache.org> list, > since that is where the apr_* functions are mainta

[users@httpd] unescape urlencoded

2018-10-25 Thread Simon Walter
://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1 for apr_escape_urlencoded and not for apr_unescape_url. I am want to decode form data in my own application (not a module). Best, Simon - To unsubscribe, e-mail: users-unsubscr

Re: [users@httpd] APR Table vs. Hash & Array vs. Skip List vs. Ring

2018-05-27 Thread Simon Walter
On 05/27/2018 05:49 PM, Nick Kew wrote: >> On 27 May 2018, at 03:40, Simon Walter wrote: >> >> Hi everyone, >> >> First of all, I am not sure if this is the right place to ask this. >> Please send me to the appropriate mailing list. Thanks. > > What&#

[users@httpd] APR Table vs. Hash & Array vs. Skip List vs. Ring

2018-05-26 Thread Simon Walter
uch appreciated. Best regards, Simon - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] dumb apr_pool question

2018-01-16 Thread Simon Walter
Thanks guys. Interesting info. It really helped. On 01/12/2018 12:12 AM, Yann Ylavic wrote: > On Thu, Jan 11, 2018 at 3:05 PM, Eric Covener wrote: >> On Thu, Jan 11, 2018 at 3:55 AM, Simon Walter wrote: >>> >>> I suppose that the pool is keeping track of

[users@httpd] dumb apr_pool question

2018-01-11 Thread Simon Walter
rg/docs/apr/trunk/group__apr__pools.html#ga54759954d2cba7cb649ab5680a33f9e3 Kind regards, Simon #include #include #include char * test_destroy(void); char * test_destroy(void) { apr_pool_t * Crash = NULL; apr_pool_create(&Crash, NULL); char * String = apr_pcalloc(Crash, 4);

Re: [users@httpd] apr_bucket_split data remains

2018-01-02 Thread Simon Walter
On 01/02/2018 09:10 PM, Yann Ylavic wrote: > printf("%.*s", (int)len, str) Now I understand that part of the man page. Very nice of you, Yann. Thank you. - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional

Re: [users@httpd] Reverse proxy not working

2018-01-02 Thread Simon Walter
On 01/02/2018 06:06 PM, Luca Toscano wrote: > Hi, > > 2017-12-31 10:25 GMT+01:00 Noor Mohammad >: > > I have an application correctly working on locahost:8080 and I am > setting up a reverse proxy as follows but on a remote browser, when > using the prox

Re: [users@httpd] apr_bucket_split data remains

2018-01-02 Thread Simon Walter
a bit. Is there any good reading about this on the interwebs? ;) Simon On 01/02/2018 12:51 AM, Eric Covener wrote: >> I see such code as the example you gave in various places. However, this >> bit of code (attached) shows me that I cannot simply printf the data. >> Again, I am

Re: [users@httpd] apr_bucket_split data remains

2018-01-01 Thread Simon Walter
On 01/01/2018 10:44 PM, Eric Covener wrote: > On Mon, Jan 1, 2018 at 8:37 AM, Simon Walter wrote: >> I am interested in how apr_bucket_split(e, point) works. >> >> It seems that after splitting e, it still contains everything after >> point. Only when flattened is

[users@httpd] apr_bucket_split data remains

2018-01-01 Thread Simon Walter
ogic, I am trying to see the contents of individual buckets. Kind regards, Simon - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] mod_cache, mod_deflate, mod_expires and a headache

2016-06-03 Thread Simon Mott
mod_cache doing its thing > > SetOutputFilter MOD_EXPIRES;CACHE > > # pass through mod_deflate after everything else is done for text content > AddOutputFilterByType DEFLATE text/html text/plain text/css application/javascript application/rss+xml Kind Regards, Simon On 1 June 2016 at 19:

Re: [users@httpd] mod_cache, mod_deflate, mod_expires and a headache

2016-06-01 Thread Simon Mott
Hi Eric Thanks for getting back to me. So if there is no mime type when it wants to cache which is why the AddOutputFilterType CACHE filter isn't doing what I expect, but SetOutputFilter CACHE gets caching before compression correct, is there any way I can apply mod_expires and mod_headers before

[users@httpd] mod_cache, mod_deflate, mod_expires and a headache

2016-06-01 Thread Simon Mott
che/apache2/mod_cache_disk/my_website.co.uk > CacheEnable disk / > CacheDirLevels 2 > CacheDirLength 1 > CacheMaxFileSize 200 > CacheIgnoreNoLastMod On > CacheIgnoreCacheControl On > CacheDefaultExpire 7200 > CacheLastModifiedFactor 0.5 > CacheIgnoreHeaders Set-Cookie > CacheHeader on > CacheLock on > > ExpiresActive on > ExpiresDefault "access plus 1 week" > ExpiresByType text/html "access plus 2 hours" > FileETag All Any help that can be offered would be greatly appreciated :) Simon

[users@httpd] web site not workin

2012-04-02 Thread simon ben
connection worker 0 in child 14747 for (*) [Mon Apr 02 20:58:48 2012] [notice] child pid 13800 exit signal Segmentation fault (11) googling arround did not help much appreciate if someone can help me and advice sregards simon

[users@httpd] php.net is directing windows users to Apache Lounge

2011-12-13 Thread Paul Simon
Hi All, PHP.net [http://windows.php.net/download/] is directing folks to download apache for windows from Apache Lounge [http://apachelounge.com/]. It says the apache from apache.org is compiled with the legacy Visual Studio 6 compiler instead of the Visual Studio 2008 compiler needed for the curr

[us...@httpd] Could not get next bucket brigade [500, #0]

2010-11-17 Thread Paul Simon
Hi All. Could anybody explain what this error might mean, "Could not get next bucket brigade [500, #0]?" I'm getting the error with certain files when trying to PUT them file to webdav enabled server. Thanks, Paul - The official

[us...@httpd] WebDav PUT fails with 500 response

2010-11-04 Thread Paul Simon
Hi All, I'm hoping somebody might guide me in the right direction. A php script is using the CURL extension to put files to a webdav server. It has been working successfully, putting a couple hundred files in the last few months. However, recently there's a file that fails to be PUT and is causing

[us...@httpd] server configuration for 5000 hits per second

2010-05-21 Thread Reber Simon
Dear all, We have a web application with about 5000 hits per second. The apache server is running on Red Hat AS 4.x with version 2.0.52 and prefork MPM. The question I have is, how I should configure prefork to manage this amount of requests. I had something like that in mind: StartServer

[us...@httpd] About configure Reverse Proxy

2010-05-18 Thread simon
2.168.1.1 and 192.168.2.2 have different services. How I do it? Thank You simon

Re: [us...@httpd] Apache/2.2.8 authenticate LDAP AD SSL or TLS - ubuntu(debian)

2009-11-23 Thread Simon Walter
daniel.goul...@and.co.uk wrote: If you have managed to get things working over plain LDAP (port 389) then you are nearly there... All you have to do is change the protocol and port and Apache should do the rest I guess my problem is not with Apache. I'll post on the ldap mailing list to se

Re: [us...@httpd] htpasswd ui question

2009-11-22 Thread Simon Walter
other software such as a forum, or mail app. What are you letting the users access? Is it just a plain HTML page? Regards, Simon - The official User-To-User support forum of the Apache HTTP Server Project. See http

Re: [us...@httpd] authentication against active directory.

2009-11-22 Thread Simon Walter
Ramesh wrote: Hi, I have a web site which I would want to allow only users after authenticating them against our Active Directory. I wanted to place .htaccess file in the main web folder 1. Do I need to install "mod_authz_ldap" module ? And is there any other module which I would need to in

Re: [us...@httpd] Apache/2.2.8 authenticate LDAP AD SSL or TLS - ubuntu(debian)

2009-11-22 Thread Simon Walter
Hi André and thanks for your reply. My reply is below yours. Cheers! André Warnier wrote: Simon Walter wrote: ... My questions is: Does anyone know of a document that describes what I need to make Apache authenticate via LDAP over SSL or TLS connecting to a MS AD server? Greetings

[us...@httpd] Apache/2.2.8 authenticate LDAP AD SSL or TLS - ubuntu(debian)

2009-11-19 Thread Simon Walter
S AD supports: SSL, TLS, SASL... ??? How can I know for sure that the server side is fine? Anyway, If someone can show me a working apache config and or a document which describes what I need to do to get this setup working, I'd be very grateful. I&#

[us...@httpd] SSL client authentication failed: unable to verify the first certificate

2009-07-20 Thread Paul Simon
Hi All, I'd greatly appreciate any comments or insights about what might be happening here. I set up apache to accept SSL requests using a self signed certifcate. That appears to be working fine. However, I'm trying to have Apache accept and read a self-signed SSL client certificate according

Re: [us...@httpd] Apache2 only serves first virtualhost

2009-01-29 Thread Simon Young
On Thu, Jan 29, 2009 at 06:09:00PM +0100, Mark Van Crombrugge wrote: > > FIRST HTTPD.CONF, no mather which URL one browses for, "First Website" > is allways served. > > # First Website > > Documentroot /var/www/html/www.website1.org > ServerName www.website1.org > ServerAlias website1.org

[us...@httpd] setuid/setgid wrapper for CustomLog pipe command

2009-01-08 Thread Simon
Hello, Does anyone know where I can get a wrapper written in C or perhaps a shell script which I can use to setuid a command used by a CustomLog when piping? Thank you! Simon - The official User-To-User support forum of

RE: syntax error

2008-12-15 Thread Arthur, Simon
could be more certain if you posted the httpd.conf file in its entirety. Hope this helps, Simon From: James Taylor-Bye [mailto:jtaylor-...@hotmail.com] Sent: 15 December 2008 14:14 To: users@httpd.apache.org Subject: RE: syntax error Ok status update I

RE: syntax error

2008-12-15 Thread Arthur, Simon
tware Foundation/Apache2.2" This directive tells the server where to put the configuration, error and log files. Regards, Simon (sga101) From: James Taylor-Bye [mailto:jtaylor-...@hotmail.com] Sent: 15 December 2008 10:49 To: users@httpd.apache.org Subje

Re: [EMAIL PROTECTED] help with mod_authn_dbd and oracle

2008-12-03 Thread Paul Simon
Just for the record... With guidance from the list, I got mod_dbd and mod_authn_dbd working. I installed Oracle Client 11g (win32_11gR1_client.zip) and Apache 2.2.10. I had to take a few guesses at what DBDParams was supposed to be. I ended up with "user=test pass=test server=db9i". I then follo

[EMAIL PROTECTED] Error Message - Parent: child process exited with status 3221225477 -- Restarting.

2008-11-20 Thread Arthur, Simon
051F810 !ap_regkey_value_remove 00B4FFB4 7C57B396 0051F810 0051F810 !endthreadex 00B4FFEC 0000 0000 kernel32!lstrcmpiW It would be much appreciated if anyone could provide some assistance in solving this problem. Please let me know if

Re: [EMAIL PROTECTED] help with mod_authn_dbd and oracle

2008-11-19 Thread Paul Simon
> Possibly foolish question, but did you read the README? There are > additional steps to obtain/install the actual InstantClient 11.1 drivers > and ensure that driver DLL can be found in the PATH. > > Bill I have a possibly more foolish question - what README are you refering to? There is a wo

Re: [EMAIL PROTECTED] help with mod_authn_dbd and oracle

2008-11-18 Thread Paul Simon
> > > > To answer your question directly, if your apr-util is built > > to load drivers dynamically, then yes, it should be > > apr_dbd_oracle.so (or .dll). But I don't know what the > > situation is on windows. Have you tried building it > > yourself (either the driver, or the whole of apr-uti

Re: [EMAIL PROTECTED] help with mod_authn_dbd and oracle

2008-11-18 Thread Paul Simon
> Paul Simon wrote: > > Hi, I have Apache 2.2.6 running on windows. Is it possible to get > mod_authn_dbd working with oracle right out of the box? I've added the > following > configuration (along with the appropriate auth modules): > > > >

[EMAIL PROTECTED] help with mod_authn_dbd and oracle

2008-11-18 Thread Paul Simon
Hi, I have Apache 2.2.6 running on windows. Is it possible to get mod_authn_dbd working with oracle right out of the box? I've added the following configuration (along with the appropriate auth modules): LoadModule authn_dbd_module modules/mod_authn_dbd.so LoadModule dbd_module modules/mod_dbd.s

[EMAIL PROTECTED] FW: Exchange 2007, Mod_Proxy, Activesync

2008-09-23 Thread Dwyer, Simon
ving trouble processing these extra verbs, and if so, is there anyway to get APACHE to deal with those verbs going forward. This might explain why it all works internally (as nothing is inspecting or processing those extra verbs) but fails when going through APACHE. __

[EMAIL PROTECTED] Exchange 2007, Mod_Proxy, Activesync

2008-09-23 Thread Dwyer, Simon
Hi all, Having an issue with Activesync and exchange 2007 going through mod_proxy. It works fine when the mail box belongs to the internet accessible CAS but when that CAS passes the request to another CAS it fails with a 0x85010014 error on the activesync device. This works fine if the mobile

[EMAIL PROTECTED] Exchange 2007 and timeout.

2008-07-15 Thread Dwyer, Simon
. http://support.microsoft.com/kb/905013http://support.microsoft.com/kb/905013 I have added a ttl and timeout after the proxypass line and waiting to see if it works. Just wanted to see if this was correct. Cheers, Simon Dwyer

[EMAIL PROTECTED] have a query with mod_perl

2008-06-13 Thread Benedict simon
thnks in advance regards simon -- Network ADMIN - KUWAIT MUNICIPALITY: -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. - The official User-To-User

[EMAIL PROTECTED] Fwd: unable to excecute cgi

2008-04-13 Thread Benedict simon
Dear All, I have recently install backuppc and the daemon running fine but when i access it through my browser after askin me for my username and password i get the followin message You don't have permission to access /BackupPC_Admin on this server. where Backup_Admin is the cgi file and my

[EMAIL PROTECTED] error reading the headers, referer

2007-12-12 Thread Simon Taylor
irection please. This may be related to a php misconfiguration but I want to rule out simple apache config issues before I progress down that path of investigation Thanks Simon Taylor Global Tools Development (GTD) Engineer Nortel Email [EMAIL PROTECTED] Office +44.1279 402291 (ESN 6 742 2291) Mobile +44.7740.533743 (ESN 748 3743)

RE: [EMAIL PROTECTED] apache query

2007-06-25 Thread simon
Thanks for ur quick reply really appreciate regards simon >> -Original Message- >> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >> Sent: Tuesday, June 26, 2007 7:22 AM >> To: users@httpd.apache.org >> Subject: [EMAIL PROTECTED] apache query &

[EMAIL PROTECTED] apache query

2007-06-25 Thread simon
Dear All, I have squirrelmail webmail server running with httpd-2.0.40-8 and would like to use now https or ssl for security issues. how do i check first if my apache server can be used to serve https and if not how can i enable https .. apprecite your help \ thnaks --

Re: [EMAIL PROTECTED] Caching.

2007-06-15 Thread Paul Simon
> Hello, > > mod_cache for apache 2.0 is marked "experimental". How reliable is it? > Would it be a bad idea to use it in production? > We have a problem that I think I might be able to solve with > mod_cache. If this a bad idea I might need another solution. > > Krist I had enabled mod_cache(di

RE: [EMAIL PROTECTED] Can't view SSL-enabled pages using Firefox

2007-06-14 Thread Salcedo, Simon
IE and Safari. I also played around with the Firefox settings, but that did not help, either. Regards, Simon -Original Message- From: Sander Temme [mailto:[EMAIL PROTECTED] Sent: Thursday, June 14, 2007 9:38 AM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Can't vie

RE: [EMAIL PROTECTED] Can't view SSL-enabled pages using Firefox

2007-06-14 Thread Salcedo, Simon
Yes, I understand what I am requested to do. Regards, Simon -Original Message- From: Boyle Owen [mailto:[EMAIL PROTECTED] Sent: Thursday, June 14, 2007 8:27 AM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] Can't view SSL-enabled pages using Firefox > -Original

RE: [EMAIL PROTECTED] Can't view SSL-enabled pages using Firefox

2007-06-14 Thread Salcedo, Simon
error message I am seeing) and some sites suggest that my new server may not have all the crypto libraries installed. I am running Apache on Solaris. Regards, Simon -Original Message- From: Graeme Fowler [mailto:[EMAIL PROTECTED] Sent: Thursday, June 14, 2007 7:47 AM To: users

RE: [EMAIL PROTECTED] Can't view SSL-enabled pages using Firefox

2007-06-14 Thread Salcedo, Simon
Sander, I disagree that the problem lies on the Client side because I have been to sites that have identical certificates as I was using and still browse those sites. I tend to believe that the problem is on the server side. Regards, Simon -Original Message- From: Sander Temme

RE: [EMAIL PROTECTED] Can't view SSL-enabled pages using Firefox

2007-06-13 Thread Salcedo, Simon
somebody help and tell me what this means and what I need to do? Regards, Simon -Original Message- From: Sander Temme [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 13, 2007 9:41 AM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Can't view SSL-enabled pages using Firefox O

RE: [EMAIL PROTECTED] Can't view SSL-enabled pages using Firefox

2007-06-13 Thread Salcedo, Simon
Sander, The apache logs do not even show that any kind of connection between my web server and the PC running FF. I am looking at the access_log and the error_log. Please tell me how to change the log level to debug. Regards, Simon -Original Message- From: Sander Temme [mailto

RE: [EMAIL PROTECTED] Can't view SSL-enabled pages using Firefox

2007-06-13 Thread Salcedo, Simon
I did re-installed FF on my PC and on my Mac. I even went back to FF1.5, but no luck. Regards, Simon -Original Message- From: Boyle Owen [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 13, 2007 2:21 AM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] Can't view SSL-en

RE: [EMAIL PROTECTED] Can't view SSL-enabled pages using Firefox

2007-06-12 Thread Salcedo, Simon
nable-expires -enable-headers -enable-deflate -enable-rewrite Do you notice anything with this? Regards, Simon From: j k [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 12, 2007 10:32 AM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Can'

RE: [EMAIL PROTECTED] Can't view SSL-enabled pages using Firefox

2007-06-12 Thread Salcedo, Simon
worked well with Firefox.) Regards, Simon From: Salcedo, Simon [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 06, 2007 2:37 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] Can't view SSL-enabled pages using Firefox Hi, I recently inst

Re: [EMAIL PROTECTED] Header set Content-type

2007-06-11 Thread Paul Simon
> > > > Is it impossible to set the Content-Type? Any suggestions? > > > > > > It is impossible to set Content-Type using mod_headers. All the > > > standard HTTP protocol headers are controlled by the apache core and > > > can't be overriden with mod_headers. > > > > > > But you can set Content-Ty

RE: [EMAIL PROTECTED] Apache ssl certs

2007-06-11 Thread Salcedo, Simon
Is your main site called "testhp.com" or "www.testhp.com"? Since your certificate is for "testhp.com", your ServerName should be "testhp.com" Regards, Simon From: Kirthi Narayan [mailto:[EMAIL PROTECTED] Sent:

RE: [EMAIL PROTECTED] Apache ssl certs

2007-06-11 Thread Salcedo, Simon
Ok. But I also need to know what domain name you sent to your certificate provider, as this is likely included in the certificate. Regards, Simon From: Kirthi Narayan [mailto:[EMAIL PROTECTED] Sent: Monday, June 11, 2007 3:26 PM To: users

RE: [EMAIL PROTECTED] Apache ssl certs

2007-06-11 Thread Salcedo, Simon
Kirthi, When the certs were generated, the domain name was used. In your .conf, the ServerName entry is probably your IP address. Regards, Simon From: Kirthi Narayan [mailto:[EMAIL PROTECTED] Sent: Monday, June 11, 2007 3:12 PM To: users

Re: [EMAIL PROTECTED] Header set Content-type

2007-06-11 Thread Paul Simon
> > Is it impossible to set the Content-Type? Any suggestions? > > It is impossible to set Content-Type using mod_headers. All the > standard HTTP protocol headers are controlled by the apache core and > can't be overriden with mod_headers. > > But you can set Content-Type using any of the standa

[EMAIL PROTECTED] Header set Content-type

2007-06-08 Thread Paul Simon
Hi. I'm trying to set Content-type and content-disposition using mod_headers but it's only partly working: RewriteRule sesp-apprv.csv$ - [E=SESP_CONT_DISP:Yes] Header always set Content-Type "application/ms-excel" env=SESP_CONT_DISP Header always set content-disposition "attachment;

[EMAIL PROTECTED] Can't view SSL-enabled pages using Firefox

2007-06-06 Thread Salcedo, Simon
message. Any ideas on what may be happening here? Regards, Simon Salcedo

[EMAIL PROTECTED] http start up issue

2007-05-31 Thread simon
... appreciate your help regards simon -- Simon D'cunha ( NETWORK ADMIN ) KUWAIT MUNICIPLAITY - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more

RE: [EMAIL PROTECTED] Using Rewrite rules to force all requests to a specific page except those comming from curtain IP addresses:

2007-05-29 Thread Simon Billis
Thank you so much - It is now working as expected. Thanks Simon. > -Original Message- > From: Simon Billis [mailto:[EMAIL PROTECTED] > Sent: 29 May 2007 20:00 > To: users@httpd.apache.org > Subject: RE: [EMAIL PROTECTED] Using Rewrite rules to force all requests to a

RE: [EMAIL PROTECTED] Using Rewrite rules to force all requests to a specific page except those comming from curtain IP addresses:

2007-05-29 Thread Simon Billis
Hi Joshua, Thank you :-) I've been looking at this for a long time and failed to see the error. Now to work on the logic... Many thanks Simon. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joshua Slive > Sent: 29 May 2007 19:

RE: [EMAIL PROTECTED] Using Rewrite rules to force all requests to a specific page except those comming from curtain IP addresses:

2007-05-29 Thread Simon Billis
id#8c4f6c0/subreq] (1) pass through /index.php Form the above it appears that "RewriteCond %{REMOTE_ADDR} ^!192\.168\.244\.105$" is not being triggered. Have I got the syntax incorrect or is the ! not supported for this? Thanks Simon. > -Original Message- > From: [

RE: [EMAIL PROTECTED] Using Rewrite rules to force all requests to a specific page except those comming from curtain IP addresses:

2007-05-29 Thread Simon Billis
Hi Joshua, Thanks for the prompt response - the intention is to allow those ip's listed to NOT be redirected, but all others to be redirected. What actually happens is that no ip is redirected. I'll configure the rewrite log as suggested to see what this throws up. Tha

[EMAIL PROTECTED] Using Rewrite rules to force all requests to a specific page except those comming from curtain IP addresses:

2007-05-29 Thread Simon Billis
%{REMOTE_ADDR} ^!192\.168\.244\.247$ [OR] RewriteCond %{REMOTE_ADDR} ^!192\.168\.245\.245$ RewriteRule ^/.*$ http://www.mydomain.com/maintenance.php [R] I think that I may be barking up the wrong tree - any pointers would be gratefully received. Many thanks in advance Simon

[EMAIL PROTECTED] Disk-based Caching tmp files

2007-05-07 Thread Paul Simon
Could someone explain why the CacheRoot on a front end proxy server (httpd-2.2.4, windows 2003) is filling up with so many files like aptmpZzwkBP at the root level? My understanding of the docs is that this shouldn't happen: "The overall aim of this technique [CacheDirLevels & CacheDirLength] is

Re: [EMAIL PROTECTED] Apache on Windows

2007-03-07 Thread Paul Simon
I've been running apache on windows (2003, 2000, XP) for the last 4 years. One server is for proxying (mod_proxy and OpenSSL) and the other is for running php apps. The servers get about 5000 visitors daily. There haven't been any serious issues. My experience is that it's more challenging runn

Re: [EMAIL PROTECTED] Apache 2.2.4 has recently begun to crash when reading a PhP file

2007-02-21 Thread Paul Simon
What version of PHP are you using? Are you running PHP as CGI or are you loading the php*apache.dll? What is the php page supposed to do? Are you using any php extensions? Have you checked bugs.php.net? I've had experiences with php*apache*.dll and the extension php_oci8.dll crashing apache 2.0

RE: [EMAIL PROTECTED] Removing or overwriting "Server" header field.

2007-01-24 Thread Simon Ashford
trivia like the "Server:" header. But it was raised as an issue and if I'm not going to do anything about it then I have to justify that to the boss. Having read the Developer list archives I guess I now have the information I need... Simon Ashford. -Original Message- From: [E

RE: [EMAIL PROTECTED] Removing or overwriting "Server" header field.

2007-01-24 Thread Simon Ashford
bably something the developers ought to adddress. It would be nice, for example, to be able to put "ServerTokens None" or some such in the basic configuration file without needing any other modules loaded... Simon Ashford. -Original Message- From: Pierre-Yves Bonnetain [mailto:[

[EMAIL PROTECTED] Removing or overwriting "Server" header field.

2007-01-24 Thread Simon Ashford
s noted was that it was possible to identify the web server software in use from the "Server" header. So I would like to remove or completely overwrite this header with something meaningless. Simon Ashford. --- This e-mail and

[EMAIL PROTECTED] Apache 2.2.3 Win32 Memory Issue

2006-12-29 Thread Paul Simon
Hi, Is anybody running Apache 2.2.3 on Win32 and using mod_rewrite proxy feature? When I add the line RewriteRule ^/(.*)$ http://someappserver:8111/$1 [P,L], then hit the server using ab, the server proxies correctly until the memory usage builds up causing the server to crash. Killing the apac

Re: [EMAIL PROTECTED] http problem

2006-06-06 Thread simon dcunha
Thanks for the quick reply. btw there is a group call apache in /etc/group and also user apache in /etc/password file could u pls let me know appreciate Regards Simon > On 6/4/06, simon dcunha <[EMAIL PROTECTED]> wrote: >> >> Dear All >> >> i had been

[EMAIL PROTECTED] http problem

2006-06-04 Thread simon dcunha
was there n it was perfect. can anyone let me know the problem Appreciate your help Regards simon -- Simon D'cunha ( NETWORK ADMIN ) KUWAIT MUNICIPLAITY - The official User-To-User support forum of the Apache

Re: [EMAIL PROTECTED] Re: Problems with JS, IE 6.0 and mod_deflate

2006-04-18 Thread Simon Werner
. Thanks for all your help. Simon On 4/18/06, Joost de Heer <[EMAIL PROTECTED]> wrote: > Axel-Stéphane SMORGRAV wrote: > > >> IBM HTTP Server != Apache HTTP Server, It's based on Apache HTTP Server, > >> with IBM specific stuff thrown in. > > > I am not so

Re: [EMAIL PROTECTED] Problems with JS, IE 6.0 and mod_deflate

2006-04-14 Thread Simon Werner
Thanks a lot for all the advice. Unfortunately we are limited to using only IE so we cannot implement other browsers. The mod_filter looks promising, I will try that. Thanks, Simon On 4/14/06, Axel-Stéphane SMORGRAV <[EMAIL PROTECTED]> wrote: > IE does not particularly like compresse

[EMAIL PROTECTED] Problems with JS, IE 6.0 and mod_deflate

2006-04-13 Thread Simon Werner
Note ratio DeflateCompressionLevel 9 # Fixing this issue will help us enormously in providing clients with a slow network a decent service. Thank you, Simon - The official User-To-User support fo

Re: [EMAIL PROTECTED] mod_edir

2006-01-30 Thread Simon Flood
oject/?mod_edir HTH Simon - 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-mail: [EMAIL PROTECTED] " from the d

Re: [EMAIL PROTECTED] Mod_rewrite and mod_proxy

2005-11-09 Thread Simon Irwin
the bad URLs (http://external.address.com/html/...), although correctly redirected, aren't updated in the browser address bar (I'd like them to become http://external.address.com/newsite/html/...). Any idea how I could correct that ? I would guess that the browser is using the original URI for t

Re: [EMAIL PROTECTED] Mod_rewrite and mod_proxy

2005-11-09 Thread Simon Irwin
altogether and instead implement of all your redirects using only mod_rewrite's RewriteRule directives. cheers Simon On 11/9/05, LECONTE Laurent ROSI/SICOR <[EMAIL PROTECTED]> wrote: > > Hello all, > > I've configured an Apache 2.0 instance to work as a r

Re: [EMAIL PROTECTED] Apache 1.3 and OpenSSL

2005-11-09 Thread Simon Irwin
never seen anything that notes the 'dependencies' between Apache/mod_ssl and OpenSSL. Thanks for your response. Simon On 11/9/05, Boyle Owen <[EMAIL PROTECTED]> wrote: > Plain text please... > > This basically amounts to asking whether the API for openssl 0.9.8a is > b

[EMAIL PROTECTED] Apache 1.3 and OpenSSL

2005-11-09 Thread Simon Irwin
tions.  Does anyone know whether Apache 1.3.12 (with mod_ssl 2.6.6) will work with OpenSSL 0.9.8a?  Are there any known compatibility issues? Any feedback  would be greatly appreciated. thanks Simon

[EMAIL PROTECTED] Alias And Redirection question

2005-09-29 Thread Simon Taylor
%b %d %H:%M:%S %Y] "JkRequestLogFormat "%w %V %T %q %r"#JkAutoAlias /opt/tomcat/webappsJkMount  /arsys63/*.jsp ajp13wJkMount  /arsys63/*.css ajp13wJkMount  /arsys63/servlet/* ajp13wJkMount  /arsys63/resources/* ajp13wJkMount 

[EMAIL PROTECTED] Test Am I Still Subscribed

2005-09-29 Thread Simon Taylor
    Simon TaylorService Tools Solutions (STS) EngineerNortel Email [EMAIL PROTECTED]Office  +44.1628.617291 (ESN 6 861 7291)Mobile +44.7740.533743 (ESN 748 3743)    

[EMAIL PROTECTED] Apache/Tomcat CSS Hostname Rewrite Issue

2005-08-24 Thread Simon Taylor
We are using Apache with Tomcat and we are experiencing a difficulty with URL's within the served HTML page sometimes being correctly  rewritten and sometimes not throughout the file.   Our users access our webserver through another server that just fwd's the requests on. In most instances

RE: [users@httpd] Novice needs help

2005-06-07 Thread Simon Maltby
atterick who replied. Regards, Simon -Original Message- From: Simon Maltby [mailto:[EMAIL PROTECTED] Sent: 07 June 2005 12:47 To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] Novice needs help Patrick, just tried accessing it locally and it worked, both on my machine and my proxy

RE: [users@httpd] Novice needs help

2005-06-07 Thread Simon Maltby
f the access log was empty until I accessed the http server locally. As for a virtual domain, I have no idea what that is. Anything beyond hardware and MS Paint is a mystery to me. Dan, the error log (link above) only states when the server started, restarted, stopped etc. Regards, Simon -Ori

[users@httpd] Novice needs help

2005-06-07 Thread Simon Maltby
very much. Simon. - 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-mail: [EMAIL PROTECTED] " from the digest