httpd-2.0.61 - kompile fehlgeschlagen

2007-09-25 Thread yokosafati
Hallo, Ich habe versucht apache httpd-2.0.61 auf Solaris Sparc 9 zu kompilieren. Die ./configure läuft durch, aber die make schlägt immer fehl mit folgenden Fehlermeldung: .../httpd-2.0.61/scrlib/apr/libtool[4767]:: ist not an identifier make[2]: *** [htpasswd] Error 1 Meine ./configure ist

Re: httpd-2.0.61 - kompile fehlgeschlagen

2007-09-25 Thread Rainer Sokoll
On Tue, Sep 25, 2007 at 06:30:25PM +0200, yokosafati wrote: Hallo, Ich habe versucht apache httpd-2.0.61 auf Solaris Sparc 9 zu kompilieren. Die ./configure läuft durch, aber die make schlägt immer fehl mit folgenden Fehlermeldung: .../httpd-2.0.61/scrlib/apr/libtool[4767]:: ist not an

RE: [EMAIL PROTECTED] No pidfile

2007-09-25 Thread Axel-Stéphane SMORGRAV
Is it possible that the directory is not writable to the Apache process owner?? If the server listens to ports below 1024 that's unlikely since it must start as root and will have root privileges when creating the pid and log files, but you never know... -ascs -Message d'origine- De :

Re: [EMAIL PROTECTED] help about a rewrite rule

2007-09-25 Thread tech user
--- Joshua Slive [EMAIL PROTECTED] wrote: See: http://wiki.apache.org/httpd/RewriteQueryString Thank you so much Joshua. I want to rewrite the url from, http://www.example.com/movie_play.php?mid=45298 to, http://www.example.com/movie45298.html I added the commands in httpd.conf:

RE: [EMAIL PROTECTED] help about a rewrite rule

2007-09-25 Thread Axel-Stéphane SMORGRAV
RewriteEngine on RewriteCond %{QUERY_STRING} ^mid=(\d+)$ RewriteRule ^/movie_play.php /movie%1.html? [R] -Message d'origine- De : tech user [mailto:[EMAIL PROTECTED] Envoyé : mardi 25 septembre 2007 08:18 À : users@httpd.apache.org Objet : Re: [EMAIL PROTECTED] help about a rewrite

RE: [EMAIL PROTECTED] help about a rewrite rule

2007-09-25 Thread tech user
Thanks a lot.It works fine. --- Axel-Stéphane SMORGRAV [EMAIL PROTECTED] wrote: RewriteEngine on RewriteCond %{QUERY_STRING} ^mid=(\d+)$ RewriteRule ^/movie_play.php /movie%1.html? [R] Sick of deleting your inbox? Yahoo!7 Mail has free unlimited storage.

RE: [EMAIL PROTECTED] No pidfile

2007-09-25 Thread Robinson Craig
Thanks Axel-Stéphane, Not sure what's going on, but restarted Apache and now have pidfile in correct location. Maybe it's possible for pidfile to be deleted whilst it is still running but after it starts?? Cheers, Craig -Original Message- From: Axel-Stéphane SMORGRAV [mailto:[EMAIL

RE: [EMAIL PROTECTED] No pidfile

2007-09-25 Thread Boyle Owen
-Original Message- From: Robinson Craig [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 25, 2007 8:54 AM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] No pidfile Thanks Axel-Stéphane, Not sure what's going on, but restarted Apache and now have pidfile in

Re: [EMAIL PROTECTED] Apache in embedded product

2007-09-25 Thread Krist van Besien
On 9/25/07, Malluru, Puri [EMAIL PROTECTED] wrote: /home/pmalluru/work curl -I http://puritruman:9090/ /home/pmalluru/work ++ I pressed Ctrl+C to kill curl session above. I don't see an entry in access_log or in error_log for 9090 access. Are

[EMAIL PROTECTED] One-Time authentificaton for multiple servers

2007-09-25 Thread Michelle Konzack
Hello, I have a couple of servers (currently 42 Web-Servers et a redunant PostgreSQL for AUTH) and I am trying to get a One-Time authentification running. Exactly: It should not mather on which Web-Server the $USER authenticate and if she/he change the website dynamicly... The AUTH should be

Re: [EMAIL PROTECTED] Allow/Deny directive and https

2007-09-25 Thread J.M. Castroagudin
Er... I don`t want to look like I am desperate... but i am actually a bit, hehe... Anyone has any idea about this? am I doing something wrong? any contribution will be welcome Thank you all very much! J.M. Castroagudin escribió: Hmmm... I thought that deny,allow, as I had, was the right

[EMAIL PROTECTED] https and mod_gnutls

2007-09-25 Thread edwardspl
Dear All, If your System is Linux FC6, then , are you using your https with mod_gnutls ? So, would you mind to share your installation steps here ? Thank for your help ! Edward. - The official User-To-User support forum of

RE: [EMAIL PROTECTED] SSL server IP/port conflict

2007-09-25 Thread Rachel Anderson-Barrios
Johan, It isn't a bad idea, nor that difficult to add a dedicated IP for your SSL stuff. You can add another eth configuration on your current machine (even if your ip addresses are assigned dynamically). In the preceding case, setup your router to start assigning IPs above a certain value.

Re: [EMAIL PROTECTED] Single IP address + http + https +Virtual Host

2007-09-25 Thread Rachel Anderson-Barrios
Edward, ***.***.***.38 needs to be the machine's internal ip address http.conf ~snip~ ServerRoot /etc/httpd ~snip~ Listen 80 # # Load config files from the config directory /etc/httpd/conf.d. # Include conf.d/*.conf ~snip~ ServerName randerson ~snip~ DocumentRoot

Re: [EMAIL PROTECTED] Allow/Deny directive and https

2007-09-25 Thread Joshua Slive
On 9/13/07, J.M. Castroagudin [EMAIL PROTECTED] wrote: Hi everybody, I have been trying to limit access to certain 'directories' (inside a https vhost) based on IP directives. Something like this: SetEnvIf remote_addr W.X.Y.Z intranet SetEnvIf Client-ip W.X.Y.Z intranet VirtualHost

Re: [EMAIL PROTECTED] One-Time authentificaton for multiple servers

2007-09-25 Thread Rachel Anderson-Barrios
Michelle, I am not an apache expert. However, it sounds like you need an actual programming to do what you would like to do. From the sounds of it, you would need to have a central program which would check authentication every time the user made a request. If the user wasn't logged in, it

RE: [EMAIL PROTECTED] Apache in embedded product

2007-09-25 Thread Malluru, Puri
I tried that. I see Apache accepting connections and spitting the file I requested on telnet port. Below is session output. I tried this from a separate Linux box. Not even localhost. I don't understand why curl and wget is failing, but telnet is working fine.

[EMAIL PROTECTED] image folder outside the root....how to access it ?

2007-09-25 Thread Daniel Yaÿfffffffffff1ez
Hello everyone, I have been trying to make this work but so far I havent been able to successfully load an image (or other media file) that is in a folder outside the root of my domain. I initially wanted to do this in order to be able to deliver this images from code running inside my serer,

Re: [EMAIL PROTECTED] image folder outside the root....how to access it ?

2007-09-25 Thread Joshua Slive
On 9/25/07, Daniel Yaÿfff1ez [EMAIL PROTECTED] wrote: Hello everyone, I have been trying to make this work but so far I havent been able to successfully load an image (or other media file) that is in a folder outside the root of my domain. I initially wanted to do this in order to be

Re: [EMAIL PROTECTED] image folder outside the root....how to access it ?

2007-09-25 Thread Jesse Ross
Hi Daniel, This is what the Alias directive is for: http://httpd.apache.org/docs/2.2/mod/mod_alias.html#alias Regards, Jesse Ross Daniel Yaÿfff1ez wrote: Hello everyone, I have been trying to make this work but so far I havent been able to successfully load an image (or other media

[EMAIL PROTECTED] Apache log files on Windows

2007-09-25 Thread James Sherwood
Hello, I was wondering if anyone knows a way to copy a log file from apache without shuting down apache on a windows server 2003? We are using Apache 2.0.54 on a windows server 2003. When I try to copy the logs I get the error A program has a partial lock on the file Thanks, --James

[EMAIL PROTECTED] Apache error

2007-09-25 Thread Lalit Kapoor
Hi, I am new to apache. Can you suggest some solution for this problem. I have an application on IBM Websphere application server and at the same time I installed websphere plugin for apache as well. I am accessing one application on port 80 which is working fine. 2nd Instance of apache is

[EMAIL PROTECTED] Apache Win32 Binary, mod_perl and mod_fcgid working

2007-09-25 Thread Steffen
To inform you. We at http://www.apachelounge.com made a binary available which works with mod-perl and mod-perl etc. Steffen - The official User-To-User support forum of the Apache HTTP Server Project. See

Re: [EMAIL PROTECTED] One-Time authentificaton for multiple servers

2007-09-25 Thread Nick Owen
On 9/25/07, Michelle Konzack [EMAIL PROTECTED] wrote: Hello, I have a couple of servers (currently 42 Web-Servers et a redunant PostgreSQL for AUTH) and I am trying to get a One-Time authentification running. Exactly: It should not mather on which Web-Server the $USER authenticate and if

RE: [EMAIL PROTECTED] Apache error

2007-09-25 Thread Timo
Let's start with this: I am assuming you are using a Unix Like OS (is it Linux?) Are you sure that you have the files in these folders? If not just create a simple index.html file and put in /usr/local/apache2/htdocs folder and see if you can see it. Then try this link,

Re: [EMAIL PROTECTED] Apache Win32 Binary, mod_perl and mod_fcgid working

2007-09-25 Thread William A. Rowe, Jr.
Steffen wrote: To inform you. We at http://www.apachelounge.com made a binary available which works with mod-perl and mod-perl etc. How did the perl-framework regression tests look; and which patch did you happen to use? Or is this the cobbled-together 2.2.6 + smattering of 2.2.5 sources?

Re: [EMAIL PROTECTED] Apache Win32 Binary, mod_perl and mod_fcgid working

2007-09-25 Thread William A. Rowe, Jr.
Nick Kew wrote: On Tue, 25 Sep 2007 16:20:00 -0500 William A. Rowe, Jr. [EMAIL PROTECTED] wrote: Steffen wrote: To inform you. We at http://www.apachelounge.com made a binary available which works with mod-perl and mod-perl etc. How did the perl-framework regression tests look; and

[EMAIL PROTECTED] .jsp files do not resolve include file string, when CNAME address is used

2007-09-25 Thread Mark Paulston
Hello, running apache 1.3.4 on Solaris 8. Have a FILE.jsp which has two include file strings referenced by it. First, FILE.jsp works just fine when the FQDN (fully qualified domain name) is used; ie, http://HOSTNAME.DOMAIN.com/FOLDER_NAME/FILE.jsphttp://hostname.domain.com/FOLDER_NAME/FILE.jsp

[EMAIL PROTECTED] Environment variables missing from httpd 2.2 installation

2007-09-25 Thread Scott Courtney
Greetings! I've been running Apache web sites for years, but until now had never needed to reference environment variables inside the configuration files. I'm trying to set up a load balancing configuration using mod_proxy_balancer under Apache 2.2.3 (stock install under Debian Etch). My enabled

Re: [EMAIL PROTECTED] One-Time authentificaton for multiple servers

2007-09-25 Thread Jaqui Greenlees
--- Nick Owen [EMAIL PROTECTED] wrote: On 9/25/07, Michelle Konzack [EMAIL PROTECTED] wrote: Hello, I have a couple of servers (currently 42 Web-Servers et a redunant PostgreSQL for AUTH) and I am trying to get a One-Time authentification running. Exactly: It should not

[EMAIL PROTECTED] Apache Modules - Modifying and Persisting Values in Memory Across Requests

2007-09-25 Thread Mike O'Leary
Hello, Can someone explain a way via a C module to update a counter value for every request served by the module and write that value (via ap_rputs or something similar) to the browser. For example, the first time the module services a request, it writes 1 to the browser, the next time it writes

Re: [EMAIL PROTECTED] Apache log files on Windows

2007-09-25 Thread Norman Peelman
James Sherwood wrote: Hello, I was wondering if anyone knows a way to copy a log file from apache without shuting down apache on a windows server 2003? We are using Apache 2.0.54 on a windows server 2003. When I try to copy the logs I get the error A program has a partial lock on the file

Re: [EMAIL PROTECTED] Apache Modules - Modifying and Persisting Values in Memory Across Requests

2007-09-25 Thread Joshua Slive
On 9/25/07, Mike O'Leary [EMAIL PROTECTED] wrote: Hello, Can someone explain a way via a C module to update a counter value for every request served by the module and write that value (via ap_rputs or something similar) to the browser. For example, the first time the module services a

[EMAIL PROTECTED] versions and history files from Apache

2007-09-25 Thread Frances Chevonne Dancer
Hello, I am interested in studying the evolution of the Apache httpd server. I downloaded some of the older versions via a mirror, but their are some gaps in the versions. For example, it may contain 1.1, 1.2, 1.3, then skip to 1.6. My question is, Does anyone know why those versions are

Re: [EMAIL PROTECTED] versions and history files from Apache

2007-09-25 Thread William A. Rowe, Jr.
Frances Chevonne Dancer wrote: Hello, I am interested in studying the evolution of the Apache httpd server. I downloaded some of the older versions via a mirror, but their are some gaps in the versions. For example, it may contain 1.1, 1.2, 1.3, then skip to 1.6. My question is, Does

Re: [EMAIL PROTECTED] Apache log files on Windows

2007-09-25 Thread Mark A. Craig
Should I pipe up at this juncture and mention the ongoing trouble with using such utilities with Apache in Windows? Original Message Subject: Re: [EMAIL PROTECTED] Apache log files on Windows From: Norman Peelman [EMAIL PROTECTED] To: users@httpd.apache.org Date: Tuesday,

Re: [EMAIL PROTECTED] Apache log files on Windows

2007-09-25 Thread Mark A. Craig
Err, that was supposed to be humor, but I hit a wrong key and sent the message before I was done making it obvious. :-/ Mark Original Message Subject: Re: [EMAIL PROTECTED] Apache log files on Windows From: Mark A. Craig [EMAIL PROTECTED] To: users@httpd.apache.org Date:

Re: [EMAIL PROTECTED] versions and history files from Apache

2007-09-25 Thread Frances Chevonne Dancer
Hello, I am interested in the evolution of the code...sorry for excluding that. I would greatly appreciate it if you would be able to get those older versions of code. Thank you very much, Chevonne Quoting William A. Rowe, Jr. [EMAIL PROTECTED]: Frances Chevonne Dancer wrote: Hello, I

Re: [EMAIL PROTECTED] Apache log files on Windows

2007-09-25 Thread William A. Rowe, Jr.
Mark A. Craig wrote: Should I pipe up at this juncture and mention the ongoing trouble with using such utilities with Apache in Windows? No problems. 2.2.6 solves these issues. Bill - The official User-To-User support forum

Re: [EMAIL PROTECTED] Apache log files on Windows

2007-09-25 Thread Norman Peelman
William A. Rowe, Jr. wrote: Mark A. Craig wrote: Should I pipe up at this juncture and mention the ongoing trouble with using such utilities with Apache in Windows? No problems. 2.2.6 solves these issues. Bill -

[EMAIL PROTECTED] Query on Maxmemefree

2007-09-25 Thread Arnab Ganguly
Hi All, I have couple of queries on the usage of MaxMemFree param in Apache. 1) What would be the ideal value to keep it with? 2) Does it have any dependency with other parameters like ServerLimit,MaxClient etc? 3) Does the memory taken up by the Apache daemon is reduced if we keep a lower value

Re: [EMAIL PROTECTED] Apache log files on Windows

2007-09-25 Thread Sander Temme
On Sep 25, 2007, at 11:17 AM, James Sherwood wrote: We are using Apache 2.0.54 on a windows server 2003. When I try to copy the logs I get the error A program has a partial lock on the file This means you're trying to copy a file that's being written to, and the OS thinks it has a good