Boyle Owen | 1 Mar 2005 09:46

RE: immediate build error


> -----Original Message-----
> From: Steven Pannell [mailto:steven.pannell <at> zooplus.com]
> Sent: Donnerstag, 24. Februar 2005 18:32
> To: users <at> httpd.apache.org
> Subject: [users <at> httpd] immediate build error
> 
> 
> Hi,
> 
> I'm trying to build apache 2.0.52 on solaris 9 but get this 
> error immediate
> after I type build.  

Describe exactly how you are compiling (eg configure line etc.). I have
solaris and do configure, make, make install - don't know what "build"
is...

Rgds,
Owen Boyle
Disclaimer: Any disclaimer attached to this message may be ignored. 

> Probably some thing is missing from the 
> installation
> but I am not sure what.  can anyone help:
> 
> ld: fatal: file strings/*.lo: open failed: No such file or directory
> make[2]: *** [libapr-0.la] Error 1
> make[2]: Leaving directory `/opt/src/apache/httpd-2.0.52/srclib/apr'
> make[1]: *** [install-recursive] Error 1
(Continue reading)

Michael Rode | 1 Mar 2005 11:51
Picon

Apache Problem - automatic change of the location of the Perl interpreter

Hello,

I'm running Apache under the XAMP Server enviroment on Windows XP. I'm 
wrote a big Perl script with many seperate files, my wish is to run the 
Perl Script offline same as online without changing always the location of 
the Perl interpreter of the first line from the Perl script for example 
"#!/usr/bin/perl"

But under the XAMP Server enviroment the location of the Perl interpreter 
is "#!c:\xampp\perl\bin\perl.exe"

Now I search already long for a solution to force Apache for the correct 
location of Perl, without change it in my Perl scripts. I tried to config 
the Apache httpd.conf I open for example a Virtual Server in this way 
below, but it don't work:

############ Virtual Host Datenfeld #############

NameVirtualHost 127.0.0.1
<VirtualHost 127.0.0.1>
    ServerName datenfeld
    DocumentRoot c:/xampp/htdocs/datenfeld
    ScriptAlias /cgi-bin/ c:/xampp/htdocs/datenfeld/cgi-bin/
    ErrorLog logs/datenfeld-error_log
    CustomLog logs/datenfeld-access_log common

<Directory c:/xampp/htdocs/datenfeld/cgi-bin>
    AddHandler cgi-script .cgi .pl
    SetHandler cgi-script
    Action cgi-script c:/xampp/perl/bin/perl.exe
(Continue reading)

thomas | 1 Mar 2005 12:05

mod_proxy question

how come this statement wouldn't working ?
ProxyRemote http://mail.*.* http://123.123.123.123/mail

I just want to redirect from http://mail.*.* (all vhosting mail domain) to
http://123.123.123.123/mail

Thanks.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe <at> httpd.apache.org
   "   from the digest: users-digest-unsubscribe <at> httpd.apache.org
For additional commands, e-mail: users-help <at> httpd.apache.org

Joe Orton | 1 Mar 2005 12:12
Picon
Favicon

Re: apache2, mod_ssl, Connection to child 0 closed with abortive shutdown

On Mon, Feb 28, 2005 at 05:26:39PM +1100, Carl Brewer wrote:
> 
> Hello
> 
> I'm using apache2.0.53 on an i64 (Opteron) Solaris 10 server,
> and it works fine (as I'd expect), except when I try and
> set up mod_ssl on it.  I'm using it to run a subversion server.
> It's compiled with Sun's SFW gcc, and the following arguments :
> 
> ./configure --enable-dav --enable-ssl

What version of OpenSSL?

> 
> I'm seeing this in my log file :
> 
> [Mon Feb 28 17:03:11 2005] [debug] ssl_engine_kernel.c(1809): OpenSSL: 
> Exit: error in SSLv3 read certificate verify A
> [Mon Feb 28 17:03:11 2005] [debug] ssl_engine_kernel.c(1809): OpenSSL: 
> Exit: error in SSLv3 read certificate verify A
> [Mon Feb 28 17:03:11 2005] [info] SSL library error 1 in handshake 
> (server dart.opaltree.com.au:443, client 211.26.251.34)
> [Mon Feb 28 17:03:11 2005] [info] SSL Library Error: 336187530 
> error:1409D08A:SSL routines:SSL3_SETUP_KEY_BLOCK:cipher or hash unavailable
> [Mon Feb 28 17:03:11 2005] [info] Connection to child 0 closed with 
> abortive shutdown(server dart.opaltree.com.au:443, client 211.26.251.34)

Are you getting this error for all attempts to connect via SSL, or just 
some?  What's the output of 

(Continue reading)

Boyle Owen | 1 Mar 2005 12:20

RE: mod_proxy question


> -----Original Message-----
> From: thomas <at> hkeasyhost.com [mailto:thomas <at> hkeasyhost.com]
> Sent: Dienstag, 1. März 2005 12:05
> To: users <at> httpd.apache.org
> Subject: [users <at> httpd] mod_proxy question
> 
> 
> how come this statement wouldn't working ?
> ProxyRemote http://mail.*.* http://123.123.123.123/mail

Are you sure that the directive supports arbitrary shell-style
wildcards? Maybe you need to define each site separately:

ProxyRemote http://mail.site1.com http://123.123.123.123/mail
ProxyRemote http://mail.site2.com http://123.123.123.123/mail

 or use a regexp:

ProxyRemote http://mail\.(.*)$ http://123.123.123.123/mail

 or just say:

ProxyRemote http://mail http://123.123.123.123/mail

Rgds,
Owen Boyle
Disclaimer: Any disclaimer attached to this message may be ignored. 

> 
(Continue reading)

Boyle Owen | 1 Mar 2005 12:29

RE: How to rewrite URL to trigger authentication ?


> -----Original Message-----
> From: Brice Figureau [mailto:brice+apache <at> daysofwonder.com]
> Sent: Samstag, 26. Februar 2005 12:53
> To: users <at> httpd.apache.org
> Subject: [users <at> httpd] How to rewrite URL to trigger authentication ?
> 
> 
> Hi,
> 
> I want to trigger an HTTP authentication based on some value of the
> param 'page' of the query string:
> 
> http://myhost/index.php?page=stats&param1=xxx 
> should trigger an authentication and upon success, should let access.
> 
> and
> http://myhost/index.php?page=goahead&param1=xxx 
> should be accessible directly.
> 
> My idea was the following:
> 1) create a protected directory which is guarded with an AuthUserFile
> 2) Rewrite (redirect in fact) if REMOTE_USER is empty and page matches
> stats to /protected/index.php
> 3) the authentication dialog should pop-up
> 4) then rewrite /protected/index.php back to /index.php 

OK - but now the URL is outside the authentication realm so the browser
sends the request without credentials, so it triggers the rewrite and
you go round the loop again. And again. And againnnnnn.....
(Continue reading)

Farid Izem | 1 Mar 2005 13:47
Picon

Re: Problem Starting Apache Chrooted

Hi, i already solve the problem using google. 
In fact, i just have to do this : 
mknod /var/jail/dev/null  c 1 3
chmod 666 /var/jail/dev/null

Everything works well now.

Kind Regards,

Farid

On Mon, 28 Feb 2005 11:20:14 -0800, John N. Brahy <jbrahy <at> ad2.com> wrote:
> Hello Farid,
> 
> The problem that I see is that you don't have all the necessary files in
> your chroot. Then you chroot an application, it is not able to access
> anything beyond the chroot. So, you'll notice when it's trying to find
> /etc/ld.so.preload it's getting a -1 ENOENT (no such file or directory)
> error. If you are going to use /var/jail, you will have to copy all the
> files that you will need into that directory. I.E. copy
> /etc/ld.so.preload to /var/jail/etc/ld.so.preload. I'd follow the strace
> and do that for every file not found error you run across.
> 
> Hope that helps,
> 
> John
> 
> 
> chroot("/var/jail")                     = 0
> chdir("/")                              = 0
(Continue reading)

John | 1 Mar 2005 14:09
Picon

Re: Problem Starting Apache Chrooted


----- Original Message ----- 
From: "Farid Izem" <farid.izem <at> gmail.com>
To: "John N. Brahy" <jbrahy <at> ad2.com>
Cc: <users <at> httpd.apache.org>
Sent: Tuesday, March 01, 2005 2:47 PM
Subject: Re: [users <at> httpd] Problem Starting Apache Chrooted

> Hi, i already solve the problem using google. 
> In fact, i just have to do this : 
> mknod /var/jail/dev/null  c 1 3
> chmod 666 /var/jail/dev/null
> 
> Everything works well now.
> 
> Kind Regards,
> 
> Farid
> 
> 
How do you cope with the http patching or updating ?

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe <at> httpd.apache.org
   "   from the digest: users-digest-unsubscribe <at> httpd.apache.org
For additional commands, e-mail: users-help <at> httpd.apache.org

(Continue reading)

Joshua Slive | 1 Mar 2005 15:07
Picon

Re: Apache Problem - automatic change of the location of the Perl interpreter

On Tue, 01 Mar 2005 11:51:11 +0100, Michael Rode
<info <at> pacht-bungalow-thailand.de> wrote:
> Hello,
> 
> I'm running Apache under the XAMP Server enviroment on Windows XP. I'm
> wrote a big Perl script with many seperate files, my wish is to run the
> Perl Script offline same as online without changing always the location of
> the Perl interpreter of the first line from the Perl script for example
> "#!/usr/bin/perl"
> 
> But under the XAMP Server enviroment the location of the Perl interpreter
> is "#!c:\xampp\perl\bin\perl.exe"

See the ScriptInterpreterSource directive.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe <at> httpd.apache.org
   "   from the digest: users-digest-unsubscribe <at> httpd.apache.org
For additional commands, e-mail: users-help <at> httpd.apache.org

Denis Gerasimov | 1 Mar 2005 15:48
Picon

Apache config GUI tools


Hello list,

Are there any free GUI tools like MySQL Administrator (for MySQL DBMS)
available for Apache?
I saw a mention about Comanche (www.comanche.org) on the list in the past
but its Win32 version doesn't work at this moment.

Best regards, Denis Gerasimov
Outsourcing Services Manager,
VEKOS, Ltd.
www.vekos.ru

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe <at> httpd.apache.org
   "   from the digest: users-digest-unsubscribe <at> httpd.apache.org
For additional commands, e-mail: users-help <at> httpd.apache.org


Gmane