Re: [EMAIL PROTECTED] You don't have permission to access /pipermail/ on this server.

2006-04-21 Thread Robert Ionescu
me/mailman/archives/public/ or where? -- Robert - 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]

Re: [EMAIL PROTECTED] Regular expressions in rewrites differs by version?

2006-05-03 Thread Robert Ionescu
David Hubbard wrote: Hello everyone, can someone tell me if the regular expression support has changed between 1.3 and 2.0 Yes. Apache 1.3.x uses POSIX Extended while apache 2.x uses the PCRE library. But that is documented in the changes2.0-notes as well. -- Robert

Re: [EMAIL PROTECTED] RewriteMap causing redirection loop

2006-05-14 Thread Robert Ionescu
vel 5? -- Robert - 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: [EM

Re: [EMAIL PROTECTED] RewriteMap causing redirection loop

2006-05-14 Thread Robert Ionescu
substitute one char with an other? That won't work. In order to match the map, the back reference $1 must be '&' and only '&', 'abc&cd' wouldn't match the map. -- Robert - The

Re: [EMAIL PROTECTED] RewriteMap causing redirection loop

2006-05-14 Thread Robert Ionescu
Clodoaldo Pinto wrote: Would it work with the internal function MapType to escape the ampersand? No, because the '&' is a valid character in the URL-path, therefore it would not be escaped. -- Robert - The of

Re: [EMAIL PROTECTED] mod_rewrite: RewriteRule to strip index.html?

2006-05-21 Thread Robert Ionescu
Ian Brandt wrote: Looked good, until the "add path info postfix" part. That's a bug. http://issues.apache.org/bugzilla/show_bug.cgi?id=38642 Use the L-Flag to stop immediately (there will be a redirect processing) or place the rules into httpd.conf (per-server contex

Re: [EMAIL PROTECTED] mod_rewrite

2006-05-24 Thread Robert Ionescu
rect it to http://www.mysite.com/mypage.php?key=value Are your directories constants? Or are they some kind variable? To force such an external redirect, you could use in your httpd.conf RewriteRule ^/directoryone/directorytwo/(mypage\.php)$ /$1 [R=30

Re: [EMAIL PROTECTED] mod_rewrite

2006-05-29 Thread Robert Ionescu
pache 2.1). -- Robert - 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] rewrite rule

2006-05-29 Thread Robert Ionescu
tion or in a , if you're using virtual hosts: RewriteEngine On RewriteCond %{HTTP_REFERRER}<>$1 !(/test/.+)<>\1$ RewriteRule ^(/test/[^/]*\.(html?|php))$ /test-redir.php?page=$1 [L,NS] -- Robert - The official Use

Re: [EMAIL PROTECTED] mod_rewrite

2006-05-29 Thread Robert Ionescu
/c would now end up in /c and no external redirection takes place at all. -- Robert - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To uns

Re: [EMAIL PROTECTED] rewrite rule

2006-06-06 Thread Robert Ionescu
>/test/index.html, the RegEx-Engine returns true. The result is now negated in mod_rewrite by the exclamation mark resulting in false which would abort this RewriteRule. RewriteEngine On RewriteCond %{HTTP_REFERRER}<>$1 !(/test/.+)<>\1$ Rewr

Re: [EMAIL PROTECTED] mod_proxy_ajp (mod_rewrite) with ssl

2006-06-06 Thread Robert Ionescu
Fenlason, Josh wrote: I think it's probably something to do with my mod_rewrite configuration, If you're using a SSL , be sure to either inherit the rules from the main server config section with the RewriteOptions directive or repeat the rules in that virtual host.

Re: [EMAIL PROTECTED] Help with mod_rewrite

2006-06-06 Thread Robert Ionescu
didn't work (I don't understand how to tell it that $1 is what I need in lowercase). eg. RewriteMap lower int:tolower RewriteRule ^/svn/(.*) /${lower:$1} [PT] will transform anything starting with /svn/ to lowercase.

Re: [EMAIL PROTECTED] Help with mod_rewrite

2006-06-06 Thread Robert Ionescu
Eric Lemes wrote: The problem here is that after the myrepos path, there mustn't be any changes in the case. So you need to fine tune the RegEx, RewriteRule ^/svn/([^/]+)/(.*) /svn/${lower:$1}/$2 [PT] -- Robert

Re: [EMAIL PROTECTED] Redirecting url with except cgi-bin

2006-06-08 Thread Robert Ionescu
You can try a neg. lookahead with Apache 2.x RedirectMatch ^/(?!cgi-bin)(.*)$ http://www.somedomain.com/us/company/en/$1 -- Robert - The official User-To-User support forum of the Apache HTTP Server Project. See http

[EMAIL PROTECTED] Is it more secure to only return 200 and 404 error codes?

2006-06-13 Thread Robert Hulme
The suggestion has been made to me that it is more secure to configure Apache to only return 200 and 404 error codes (or something similar) so that situations that would return any other 4xx or 5xx code will return 404 codes. The reasoning given for this is that it limits the amount of informatio

[EMAIL PROTECTED] mysql config question

2006-06-20 Thread Robert Cahn
I'm running FC4.  When my php script hits mysql_connect() it dies.  I checked error_log and found PHP Fatal error:  Call to undefined function mysql_connect() What am I missing in my httpd.conf file? /Bob Cahn Gipsy Trail Club Carmel, NY 10512

RE: [EMAIL PROTECTED] Apache returns empty file, reports 200 and correct file size

2007-03-01 Thread Robert Lassiter
I was having this problem when I found the following article. After reading this: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18719 I tried setting "EnableSendfile off" on httpd.conf, and it solved it. -Original Message- From: Eric Wertman [mailto:[EMAIL PROTECTED] Sent: Wednesd

[EMAIL PROTECTED] SetEnv Path for CGI scripts Windows XP

2007-03-16 Thread Robert Nikander
Hi, I'm running Apache 2.2 on Windows, and I'm trying to run some CGI scripts. They appear to be failing because the path environment variable isn't set right. When I put "SetEnv Path c:\somedir" in an .htaccess file, apache appears to ignore it. The path var that gets passed to cgi script

[EMAIL PROTECTED] mod_proxy_balancer not working with ProxyRemote

2007-05-13 Thread Robert Spier
I'm setting up a forward proxy with httpd 2.2.4, and have several target proxy backends. I was hoping to be able to use mod_proxy_balancer to load balance between them. I'd expect this to work: ProxyRequests On ProxyRemote http balancer://mycluster BalancerMember http://localhost:8119 Bala

[EMAIL PROTECTED] xfdf

2007-06-10 Thread Robert Palmer
Could somebody provide some advice on options to generate a pdf from xfdf on an Apache server? 1. How and is it possible to kick off Adobe reader by providing the xfdf name and having it bring up the pdf with the form fields populated. 2. How is it possible to perform a merge (I'd assume with a c

[EMAIL PROTECTED] Running Multiple Interpreters in a Single Page

2007-06-24 Thread Robert Alford
List, I have a piece of Ruby code and a piece of PHP code that I would like to serve as part of one web page. My server has been setup such that it can serve Ruby and PHP pages individually, but I'm not sure if there exists the means to get Apache to interpret a block of Ruby code in the same

[EMAIL PROTECTED] Mod Rewrite assistance sought (hoped for :-)

2007-07-17 Thread Robert Granvin
e a lot of time trying to figure out the best approach. Thanks in advance..! \\ Robert J. Granvin Webmaster \\ [EMAIL PROTECTED] Metro State University

Re: [EMAIL PROTECTED] Mod Rewrite assistance sought (hoped for :-)

2007-07-17 Thread Robert Granvin
Unfortunately, no (on the content root). Basically, the "secure" (https) portion is a shared subdomain, hence the directory approach. Think of the structure this way: /var/www/site1 /var/www/site2 /var/www/siten /var/www/secure/ \\ Robert

[EMAIL PROTECTED] Apache setup for 3 routed LANs

2007-07-24 Thread Robert Plzák
last version of MySql Which have I to in server config? Please help me... Robert E-mail: [EMAIL PROTECTED] - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html

[EMAIL PROTECTED] How to do an Online monitoring of virtual host usage (Linux)

2007-08-15 Thread robert mena
Hi, I have a centos 4.5 server with apache 2.0.52-32.3 and 50+ domains hosted (all virtual hosts). I have a problem determining which virtual host is causing me trouble (either due to bandwidth or processor usage). My regular tools (iptraf, tcpdump) do not help with the virtual host part since a

[EMAIL PROTECTED] Apache 2.2 - Change in default behavior when a .exe file is clicked

2007-09-12 Thread Robert Gann
Title: Robert Gann, Ph I hope this is not a FAQ, but I've searched and been unable to find an answer. I've just migrated to Fedora Linux 7, with Apache 2.2.  When I connect to Apache with a Win XP computer using Mozilla Firefox, if I click on a .zip file, I am offered the option t

Re: [EMAIL PROTECTED] Apache 2.2 - Change in default behavior when a .exe file is clicked

2007-09-12 Thread Robert Gann
Title: Robert Gann, Ph The apache error log has the phrase "URL file extension is restricted by policy". The only two AddHandler statements I have in httpd.conf are AddHandler send-as-is asis AddHandler type-map var And one that appears in the middle of a     Joshua Slive wrot

[users@httpd] problem when using mod_deflate and zip files and IE6

2005-05-12 Thread robert rottermann
rule. This did help with *.pdf files (which had the same problem), but not zip files. Any help would be greatly appreciated. Robert DeflateCompressionLevel 3 DeflateFilterNote Input instream DeflateFilterNote Output outstream DeflateFilterNote Ratio ratio LogFormat '"%r" %{outstream

Re: [users@httpd] problem when using mod_deflate and zip files and IE6

2005-05-13 Thread robert rottermann
NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50110)" This is also something that makes me wonder. Why do I not get a compression ration . Now I achieved serving zip f iles by using AddOutputFilterByType DEFLATE text/html text/plain text/css instead of SetOutputFilter DEFLATE

[users@httpd] what do I need to activate chacheing?

2005-05-13 Thread robert rottermann
Hello, I have the following setting, but the CacheRoot directory is always empty. I therefore assume, that chache is not working at all. How can I check if it is working. thanks Robert // Order deny,allow Deny from all /#Allow from .your_domain.com/ /# prevent the

Re: [users@httpd] what do I need to activate chacheing?

2005-05-14 Thread robert rottermann
Tejas, thanks for your answers CacheEnable mem / but I will try your suggestion also. My "cache root" is always empty. This is what made me assume that my cache is not working. Is there a way to test whether the cach does actually work? thanks Robert I do enable the cache with Teja

Re: [users@httpd] Apache on Linux

2005-05-15 Thread Robert Zagarello
Hmmm... I never tried this but can't one install Apache on non-Windows using a pre-packaged - i.e., pre-compiled and linked - executable? This is where the previous advice on using Gentoo or Fedora Core may come in handy, because it may be readily available for those OSs. The only reason your s

Re: [users@httpd] mod_rewrite: failed to lock file descriptor

2005-05-15 Thread Robert Zagarello
The problem with errors is that you can't take them seriously after the first one. What I mean by that is to understand all subsequent errors in the light of the first. This seems especially true of Windows. It also means if you can fix the first one the others may go away. BZAG ===

Re: [users@httpd] 403 on XP accessing an XML database document

2005-05-18 Thread Robert Zagarello
Rob, Web servers use a generic login account to access information on the server's file system, and it is possible that XP SP2 in its zeal to act as Terminator in its security madness may have either disabled that account or modified its permissions. Just a suggestion. BZAG

[users@httpd] win 2K install problem

2005-05-18 Thread Robert Zagarello
Some things to consider: Because you mentioned "work network", does your Win2K PC sit in a Windows domain? If so, are you sure you have full admin rights, meaning, perhaps your domain admin has installed a group policy that restricts rights on your PC? Are you logged on using your domain accoun

[users@httpd] web server slow too much slow

2005-05-20 Thread Robert Zagarello
Msuro, I use dyndns and a private LAN also. I've found that you have to tell the web server, in its /etc/hosts file, what its dyndns name is so the web server can find its way out of your private LAN more quickly. You should put this in your web server's /etc/hosts file: 82.53.152.115 maurov

Re: [users@httpd] Problem in authenticating users from multiple OU of windows 2003 Active directory

2005-05-23 Thread Robert Zagarello
Can you try multiple directive blocks, one for each OU? BZ == --- "Vikas Kumar. Sinha" <[EMAIL PROTECTED]> wrote: > Hello All > > I have successfully configured apache with mod_ldap > for authentication from windows 2003 active > directory. But I am facing problem in authenticating > u

RE: [users@httpd] Problem in authenticating users from multiple OU of windows 2003 Active directory

2005-05-23 Thread Robert Zagarello
o make multiple entry for AuthLDAPURL. > But is does not works. > > Regards > > Vikas > > > -Original Message- > From: Robert Zagarello [mailto:[EMAIL PROTECTED] > Sent: Mon 5/23/2005 5:39 PM > To: users@httpd.apache.org > Subject: Re: [EMAIL PROTECTED]

[users@httpd] Random Link error

2005-05-24 Thread Robert Zagarello
Jason, You need to rule out network access problems which have nothing to do with your server. You may have problems associated with your client's network, for example. I've just been to your site and clicked several links with no problems. The usual list of suspects are: Performance issue

[users@httpd] Whither HTTP_USER_AGENT?

2005-05-25 Thread Robert Granvin
ion information? We have an infrastructure that changes stylesheets and content based on the browser and version being used, and obviously without this environment variable, that is now broken. Do I have any options? Many thanks... \\ Robert J. Granvin

Re: [users@httpd] Whither HTTP_USER_AGENT?

2005-05-25 Thread Robert Granvin
xpect and am used to). \\ Robert J. Granvin Webmaster \\ [EMAIL PROTECTED] Metro State University >>> [EMAIL PROTECTED] 05/25/05 3:44 PM >>> Th variable is very much available. Look at the apache docs you'

[users@httpd] Read errors for GET when is more than 64K

2005-05-28 Thread Robert Zagarello
Mark, Have you checked whether you can duplicate the problem using an SSH client into your web server, for example, by downloading large files? It might help to rule out dropped packets, both from a client within the local LAN segment and from the internet. BZAG =

Re: [users@httpd] No route to host

2005-05-29 Thread Robert Zagarello
You need to determine if you have a real network problem or not. Surely there are other PCs on that local LAN segment. How is routing from/to those? BZ === --- Bhanu Ravichettu <[EMAIL PROTECTED]> wrote: > I have been trying it since yesterday evening.. I > have also rebooted the > system

Re: [users@httpd] Getting 'no shared ciphers' while connecting to the server

2005-05-31 Thread Robert Zagarello
Alaka, Can you spell out the OpenSSL commands you are using to gen the key and cert? Perhaps that is where the error is and not your server. BZAG === Alaka wrote: Hi All, I'm using Apache 1.3.31 with mod_ssl 2.8.17 and OpenSSL 0.9.7d binaries. I use R

Re: [users@httpd] Routing \ Apache Question

2005-05-31 Thread Robert Zagarello
Jonathan, Have you set your router to forward ports 80/443 to your web server's private LAN address(es) (or whatever port(s) the server listens to) ? Your router firewall has selectable operating modes and you need to check what you think is working with the doc at: http://www.netopia.com/equip

Re: [users@httpd] Routing \ Apache Question

2005-05-31 Thread Robert Zagarello
Are you using name-based or IP-based multiple vhosts? Also, I've assumed you are using a private LAN instead of an internet-registered IP one, so correct me if I'm wrong. The private LAN will cause DNS name resolution problems, because your web server will have a private IP address that doesn't

Re: [users@httpd] Routing \ Apache Question

2005-05-31 Thread Robert Zagarello
There's one other thing. Some cable/DSL ISPs (to private LANs) actually restrict or block incoming port 80 requests (to your router) if you are using a residential broadband connection instead of purchasing a business account. BZAG === ---

Re: [users@httpd] Routing \ Apache Question

2005-05-31 Thread Robert Zagarello
try to > NAT all traffic from my > Public address to the my private LAN IP address( > I.E. 192.168.1.100). > > Are you saying that this box will always need to be > outside the firewall? > > Thanks for all of your help! > Jonathan > > - Original Message

Re: [users@httpd] IP Address Problem...

2005-05-31 Thread Robert Zagarello
The last time I saw double colons it had to do with IPv6 vs. IPv4. Just a thought. BZAG == --- Harish Sundaram <[EMAIL PROTECTED]> wrote: > Hi, > > I am running Apache 2.0.53 on HP-UX Itanium machine > and I'm facing this > peculiar problem with the Server Access log. For any

RE: [users@httpd] IP Address Problem...

2005-05-31 Thread Robert Zagarello
printed > as "::" only! > > Is there any workaround to this to get the address > printed in > 255.255.255.255 format ? > And if I have to print the IPV6 address correctly > (:::255.255.255.255 > types..) what do I need to do? > > Thanks and Regards,

[users@httpd] "cannot assign requested address" error on boot, but not on manual start...?

2005-06-02 Thread Robert Granvin
h all reside in the same disk tree as well. When the startup script is run immediately after boot, it works great: apache: starting Done! Does anyone have any ideas or suggestions for us? Having to manually restart after a reboot is really kindof a pain. :-) \\ Robert J. Gr

RE: [users@httpd] "cannot assign requested address" error on boot, but not onmanual start...?

2005-06-02 Thread Robert Granvin
If we run the steps manually once the server is up, it all works fine, of course. So it's only Apache failing to start at that point. It's odd. \\ Robert J. Granvin Webmaster \\ [EMAIL PROTECTED] Metro State Un

[users@httpd] authentication and mod_proxy

2005-06-02 Thread Robert Petkus
esite> SSLOptions +StdEnvVars +CompatEnvVars Order allow,deny Allow from all AuthName "Site Access" AuthType Basic AuthPAM_Enabled ON require user foo I authenticate as "foo" but the proxied server does not rec

[users@httpd] Firefox can't connect to the SSL-Host (IE does) - exit signal Bus error (10)

2005-06-03 Thread Robert Zagarello
Oskar, I suspect your firefox test client. Have you tried checking the test client's firefox ssl settings? Does this occur from any firefox client? BZAG === Quoting Oskar Eyb <[EMAIL PROTECTED]>: > > Hello! > > I have since a few weeks a problem with the ssl-host and the > firefox-br

Re: [users@httpd] Compiling Apache2 with Cygwin

2005-06-21 Thread Robert Zagarello
T, Not finding header files that are clearly in your include path makes me think some silly thing is going on like file protections or permissioning. Just a thought for you to double-check on. BZAG T wrote (partially transcribed): If I specify

Re: [users@httpd] Compiling Apache2 with Cygwin

2005-06-21 Thread Robert Zagarello
Try posting this to the Cygwin Forum also: http://cygwin.com/lists.html According to the directions at the bottom of that web page, you can post to the list without subscribing by sending email to [EMAIL PROTECTED] For subscribing to the "cygwin" mailing list there is a form and directions at t

Re: [users@httpd] OS 10048

2005-07-05 Thread Robert Zagarello
I would think the process only starts up on boot. Was the process IIS? If so you should be able to disable its startup using the Services app. If it was some other process not a service, you can check your normal startup locations in the registry (HKLM and HKCURR /SOFTWARE/Microsoft/Windows/Cur

Re: [EMAIL PROTECTED] Accessing my website internally

2005-07-18 Thread Robert Zagarello
Is HostNameLookups off in httpd.conf? --- [EMAIL PROTECTED] wrote: > > Hello everyone, > I have my web site up and running without any > issues. But my Question is > > How do I access my site on my local network without > the outside connection. > The WEB server is on the same physical networ

[EMAIL PROTECTED] Setting options for Apache 2.0.54 Win32 build

2005-07-20 Thread Robert Swarbrick
Hello all, I'm trying to work out how to set the equivalent of 'configure' options (e.g. --with-ldap) whilst building Apache from source **on Win32**. I've read enough of the docs to build Apache 2.0.54, include OpenSSL 0.9.7g, run the server and connect to pages over https, but to date trying

[EMAIL PROTECTED] NameVirtualHost xxx:0 has no VirtualHosts

2005-08-10 Thread robert rottermann
I get the following error when I run rcapache2 config-check on my SuSe box I get the warning: [warn] NameVirtualHost 147.86.4.81:0 has no VirtualHosts what could be the reason of that? And how do I get rid of it? thanks Robert

Re: [EMAIL PROTECTED] NameVirtualHost xxx:0 has no VirtualHosts

2005-08-10 Thread robert rottermann
Thanks for your answer Davide Bianchi wrote: robert rottermann wrote: on my SuSe box I get the warning: [warn] NameVirtualHost 147.86.4.81:0 has no VirtualHosts what could be the reason of that? You have an entry NameVirtualHost an no blocks. I do have virtual hosts, and thy are

Re: [EMAIL PROTECTED] NameVirtualHost xxx:0 has no VirtualHosts

2005-08-10 Thread robert rottermann
Davide Bianchi wrote: robert rottermann wrote: fix your configuration If I knew how ... Locate your httpd.conf (usually under /etc/something or use httpd -V to see where apache thinks his config dir is), open it up with your preferred editor, locate the offending line and comment

Re: [EMAIL PROTECTED] NameVirtualHost xxx:0 has no VirtualHosts

2005-08-10 Thread robert rottermann
Thanks for your helb now everything seems to work Robert - 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: [EM

Re: [EMAIL PROTECTED] Apache on DSL

2005-08-27 Thread Robert Zagarello
As an aside, an advantage of using a NAT router on cable or dialup is that you don't need to run the firewall on your Apache server because there is usually one in your router, unless you put the server in the DMZ on your router. Depending on the OS used, you may have to play with your hosts file

Re: [EMAIL PROTECTED] Really annoying problem either with Apache2 or PHP or both

2005-09-10 Thread Robert Zagarello
David, Connectivity issues should point to network problems first, specifically off-LAN connectivity problems. When using local LAN clients do you get disconnects? If not, see if you can put a client on the LAN segment on the other side of your LAN's router (gateway) and try to duplicate the dis

Re: [EMAIL PROTECTED] Having error on Apachectl start

2005-09-14 Thread Robert Zagarello
I noticed on Apple's MAC OS X support site that the highest version of expat support is server 10.2 and then only using Apache 2.0.36, for eval purposes: http://docs.info.apple.com/article.html?artnum=107014 It sounds like the expat library detection is broken, but that is really a shot in the d

Re: [EMAIL PROTECTED] apache2/SSL problems

2005-09-22 Thread Robert Zagarello
Susan, State whether this problem occurs on more than one client, and if this is the first time you've tried using SSL from a client to this server before or not. If accessed for the first time, it's possible you have to redo your server certificates (expirations?) or delete the ones on your cli

RE: [EMAIL PROTECTED] apache2/SSL problems

2005-09-22 Thread Robert Zagarello
Susan, What do your apache logs show (httpd-ssl_request.log, httpd_access.log and httpd_error.log in /var/log or something similar)? Yes it sounds like your SSL is running on the server but the server is not authenticating against the certificates, meaning it does not have access to the certifica

[EMAIL PROTECTED] apache mod_rewrite

2005-09-26 Thread Robert Becskei
ke camera1.mydomain.com.   How do you do this with mod rewrite?   Sincerely Robert B

Re: [EMAIL PROTECTED] adding SSL - is a distinct virtual host mandatory?

2005-10-03 Thread Robert Zagarello
No it is not required to have a separate virtual host, at least not for Apache itself. I am running V2.054 http and https on FreeBSD V5.3 with no problem. BZAG = --- Andrew Clarke <[EMAIL PROTECTED]> wrote: > > SuSE 9.3 hosting Apache 2.0.53 (the build from SuSE >

[EMAIL PROTECTED] Configure silent windows [MSI] installation

2005-10-11 Thread Robert Desbois
Hi, I wish to bundle Apache 2 into an installer. I would prefer to have the Apache installation proceed silently (msiexec /qn apache-blah.msi) but cannot find how to configure what options are chosen during the installation (e.g. network domain, server name, admin email, service vs. program, et

re[2]: [EMAIL PROTECTED] Configure silent windows [MSI] installation

2005-10-11 Thread Robert Desbois
;[EMAIL PROTECTED]> To : this is a question for a microsoft msi installer mailinglist - if there is such thing and you don't need to bye professional support ____ From: Robert Desbois [mailto:[EMAIL PROTECTED] Sent: Tue 11.10.2005 15:44 To: users@h

[EMAIL PROTECTED] FTP with apache

2005-10-12 Thread robert rottermann
Hi there, I would like to use apache to redirect ftp access to some other port. I am using zope which has a ftp server at port 8021. I would therefor serveve all ftp access to this port. How can I do that? thanks Robert

Re: [EMAIL PROTECTED] FTP with apache

2005-10-13 Thread robert rottermann
quot; user to be able to start zope, therefore it can not access ports below 1024. Any more ideas? Robert Dunx -Original Message----- From: robert rottermann [mailto:[EMAIL PROTECTED] Sent: Thursday, 13 October 2005 7:38 am To: users@httpd.apache.org Subject: [EMAIL PROTECTED] FTP w

[EMAIL PROTECTED] Migrating from 1.3.31 to 2.0.X

2005-10-24 Thread Robert . Setterlund
release a security vulnerability notice and suggests updating to version 1.3.34.  But it is not release for Sun Sparc Solaris. Robert D. Setterlund Federal Reserve Bank of Boston 600 Atlantic Ave., Boston, MA, 02106 (617) 973-3374 [EMAIL PROTECTED]

Re: [EMAIL PROTECTED] Mod_rewrite and mod_proxy

2005-11-09 Thread Robert Ionescu
external redirection with statuscode 301 and last rule RewriteRule ^/(.*) /newsite/$1 [R=301,L] #proxyPass for everyRequest RewriteRule ^/(.*) http://internal.address.com/ [P,L] ProxyPassReverse / http://internal.address.com/ -- HTH, Robert -

Re: [EMAIL PROTECTED] mod_rewrite decodes %20 -> 400 bad request

2005-11-15 Thread Robert Ionescu
Usually the original request should be logged, /user/otis/search/apache httpd, not the one you're rewriting to. I think it's caused by the P-Flag. -- Robert - The official User-To-User supp

Re: [EMAIL PROTECTED] mod_rewrite decodes %20 -> 400 bad request

2005-11-21 Thread Robert Ionescu
?id=11265 (mod_rewrite fails to encode special characters) -- Robert - 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

Re: [EMAIL PROTECTED] Re: snooping on cgi data

2007-10-04 Thread Robert Palmer
Just write a simple cgi script that passes through the stdin stdout messages and logs them. You'd need to consider performance and file access conflicts on the log files. Eric S. Johansson wrote: Peter Milanese wrote: Eric, your post comes across a bit abbrasive. my apologies. It was not

[EMAIL PROTECTED] mod_proxy and unrequested URL-decoding

2007-10-12 Thread Robert Jaeschke
ling list for this problem [1] but the feedback is very sparse. Some people live with the problem, some have built workarounds. It would be very helpful to have some solution to it. Best regards, Robert Jaeschke [1] e.g. http://mail-archives.apache.org/mod_mbox/httpd-dev/200703.mbox/[EMAIL PR

Re: [EMAIL PROTECTED] mod_proxy and unrequested URL-decoding

2007-10-16 Thread Robert Jaeschke
ve been fixing quite a lot of mod_proxy bugs. > This one looks the hardest (of those that matter:-), but it's > on the radar. > > See also > http://issues.apache.org/bugzilla/show_bug.cgi?id=43454 Thank you very much, this is good news! Best regards, Robert - -- Robert Jäschke

Re: [EMAIL PROTECTED] rewrite or proxypass?

2007-10-17 Thread Robert Jaeschke
/ http://www.ourcompany.com:8080/ ProxyPassReverse / http://www.ourcompany.com:8080/ Best regards, Robert - -- Robert JäschkeTel: +49-(0)561-804-6253 Universität Kassel E-Mail: [EMAIL PROTECTED] Wilhelmshöher Allee 73WWW: http://www.kde.cs.uni-kassel

Re: [EMAIL PROTECTED] Need help

2007-10-19 Thread Robert Palmer
I've been running a number of low volume sites on a 1.5M dsl with 128k uplink for five+ years. dyndns is excellent but now charge for new accounts and there are free services available. You didn't say if you were Linux or Windows. I use Linux, on an older box with ddclient to update dns. The

Re: [EMAIL PROTECTED] Need help

2007-10-19 Thread Robert Palmer
vice is still free, and allows linking up to five domains. Mark Original Message Subject: Re: [EMAIL PROTECTED] Need help From: Robert Palmer <[EMAIL PROTECTED]> To: users@httpd.apache.org Date: Friday, October 19, 2007 02:33:21 PM I've been running a number of low vol

[EMAIL PROTECTED] Warning when starting Apache2

2007-11-09 Thread Robert Rawlinson
When I start Apache2 I get this warning: rcapache2 start Starting httpd2 (prefork) [Fri Nov 09 14:52:25 2007] [warn] The ScriptAlias directive in /etc/apache2/httpd.conf at line 215 will probably never match because it overlaps an earlier ScriptAlias. I have searched and I can not find any oth

Re: [EMAIL PROTECTED] Warning when starting Apache2

2007-11-10 Thread Robert Rawlinson
How would I tell? I did not add one. Bob R [EMAIL PROTECTED] wrote: Hi, May be you have a file included somewhere before the directive with the same directive, which could be the one overlaped. - Ighal Quoting Robert Rawlinson <[EMAIL PROTECTED]>: When I start Apache2 I ge

[EMAIL PROTECTED] How to check for availability of remote server or services?

2007-11-26 Thread Robert Granvin
ng a custom 404 page. Anyways, really appreciating input and suggestions. \\ Robert J. Granvin Webmaster \\ [EMAIL PROTECTED] Metro State University

[EMAIL PROTECTED] virtual hosts and authentication

2007-12-05 Thread robert rottermann
virtual host config attached. my problem is, that the username is not passed to upstream server. I would be gratefull if you could point out what I am doing wrong. thanks robert # test # --- # DocumentRoot /srv/www/htdocs/ ServerAdmin [EMAIL PROTECTED] ServerName

[EMAIL PROTECTED] authorization with more than one method

2007-12-17 Thread robert rottermann
M how can I do that. can somebody point me to an example. thanks robert begin:vcard fn:Robert Rottermann n:Rottermann;Robert tel;work:++41 31 333 10 20 tel;fax:++41 31 333 10 23 tel;home:++41 31 333 36 03 x-mozilla-html:FALSE v

[EMAIL PROTECTED] ntlm authorization: strange behavior

2008-02-05 Thread robert rottermann
presented. can anyone point me a (possible) reason for this, and what we could do to fix it. we are using apache 2.2.3 on a redhat 5.1 server release. robert - The official User-To-User support forum of the Apache HTTP Server

[EMAIL PROTECTED] mod_proxy report "DNS lookup failure" when combined mod_proxy and mod_rewrite

2008-02-20 Thread Robert Balabalame
Hi, all: I want to use mod_rewrite to modify some url and pass it to backend servers。And the following is my config。 ServerName www.mysite.com AddOutputFilterByType DEFLATE text/html text/css application/x-javascript ProxyPass /balancer-manager ! ProxyPass /yui ! ProxyPa

[EMAIL PROTECTED] mod_proxy report "DNS lookup failure" when combined mod_proxy and mod_rewrite

2008-02-20 Thread Robert Balabalame
Hi, all: I want to use mod_rewrite to modify some url and pass it to backend servers。And the following is my config。 ServerName www.mysite.com AddOutputFilterByType DEFLATE text/html text/css application/x-javascript ProxyPass /balancer-manager ! ProxyPass /yui ! ProxyPa

Re: [EMAIL PROTECTED] mod_proxy report "DNS lookup failure" when combined mod_proxy and mod_rewrite

2008-02-23 Thread Robert Balabalame
at why mod_proxy can not return the right result is what I am confused. Any suggestion? Thanks. Robert On Fri, Feb 22, 2008 at 4:27 AM, Joshua Slive <[EMAIL PROTECTED]> wrote: > 2008/2/20 Robert Balabalame <[EMAIL PROTECTED]>: > > > > > ProxyPass /balancer-manage

Re: [EMAIL PROTECTED] mod_proxy report "DNS lookup failure" when combined mod_proxy and mod_rewrite

2008-02-26 Thread Robert Balabalame
Hi Joshua, thanks for your reply. I am not very familiar with mod_rewrite. I think I should be familiar with it first. I'll search some docs. Thanks. Robert. <http://127.0.0.1:8080/> On Sat, Feb 23, 2008 at 9:15 PM, Joshua Slive <[EMAIL PROTECTED]> wrote: > On Sat, Feb

Re: [EMAIL PROTECTED] mod_proxy performance with apache 2.2

2008-03-19 Thread Robert Anderson
I had a similar issue that was caused by caching. Do you have mod_cache or mod_disk_cache active? are they clearing properly? Regards, Robert Anderson B2B ECS TORONTO 17 Gormley Rd. W. Richmond Hill, ON

[EMAIL PROTECTED] Single Client Simultaneous Page Load Issue

2008-04-15 Thread Robert Conrad
Hi Everybody, I have been having a devil of a time (read: hours of searching) trying to figure out how to get Apache to serve up two or more pages concurrently to the same user on the same domain. I have multiple domains hosted on the box and it is quite happy to deliver two pages simultaneousl

RE: [EMAIL PROTECTED] Single Client Simultaneous Page Load Issue

2008-04-16 Thread Robert Conrad
EMAIL PROTECTED] On Behalf Of Joshua Slive Sent: Wednesday, April 16, 2008 6:08 AM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Single Client Simultaneous Page Load Issue On Wed, Apr 16, 2008 at 6:43 AM, Eric Covener <[EMAIL PROTECTED]> wrote: > On Tue, Apr 15, 2008 at 10:53 PM,

[EMAIL PROTECTED] rejecting non GET/POST methods

2008-04-27 Thread Robert Montgomery
Is there a way to tell apache to completely ignore certain methods, ie, PROPFIND, CCM_POST, CONNECT, OPTIONS, etc.. (and NOT write those requests to the log files either!) I've tried LIMIT & LIMIT EXCEPT directives, but I'm not sure if they are working (I still see those requests being logged). A

Re: [EMAIL PROTECTED] rejecting non GET/POST methods

2008-04-28 Thread Robert Montgomery
a separate log file, that would be a good compromise. Thanks for the tips, I'll check out the conditional logging. Best Regards, Rob --- Joshua Slive <[EMAIL PROTECTED]> wrote: > On Sun, Apr 27, 2008 at 7:43 AM, Robert Montgomery > <[EMAIL PROTECTED]> wrote: > > Is

<    1   2   3   4   5   >