Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 17908 invoked from network); 9 Feb 2011 08:39:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 9 Feb 2011 08:39:46 -0000 Received: (qmail 63624 invoked by uid 500); 9 Feb 2011 08:39:46 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 63297 invoked by uid 500); 9 Feb 2011 08:39:43 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 63289 invoked by uid 99); 9 Feb 2011 08:39:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Feb 2011 08:39:42 +0000 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests=FREEMAIL_FROM,SPF_HELO_PASS,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of apache-dev@m.gmane.org designates 80.91.229.12 as permitted sender) Received: from [80.91.229.12] (HELO lo.gmane.org) (80.91.229.12) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Feb 2011 08:39:33 +0000 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Pn5Zx-0004NX-1K for dev@httpd.apache.org; Wed, 09 Feb 2011 09:39:13 +0100 Received: from dslb-178-007-216-223.pools.arcor-ip.net ([178.7.216.223]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 09 Feb 2011 09:39:13 +0100 Received: from carsten_sttgt by dslb-178-007-216-223.pools.arcor-ip.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 09 Feb 2011 09:39:13 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: dev@httpd.apache.org From: Carsten Wiedmann Subject: Re: Loadable Module debugging Apache 2.2.17 Windows. Date: Wed, 09 Feb 2011 09:39:07 +0100 Lines: 17 Message-ID: References: <2f0cedb8-34c2-4605-aee0-4f6ad88c2a74@iris> <4D51A4A2.5030506@rowe-clan.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: dslb-178-007-216-223.pools.arcor-ip.net User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.2.13) Gecko/20101207 Thunderbird/3.1.7 In-Reply-To: X-Antivirus: avast! (VPS 110208-1, 08.02.2011), Outbound message X-Antivirus-Status: Clean X-Virus-Checked: Checked by ClamAV on apache.org Hello Zeno, > Question: What does Apache use the SystemPath for? Does > Apache_MSI-Installer for Windows install some Apache DLL into the > System Path during the Setup? I will Google this now. If you start Apache with the "GUI" (Apache monitor), Apache is started as Windows service. --> a Windows service only nows the system $PATH (it's having it's own environment) and thus Apache / modules can only find DLLs in these dirs. If you start Apache as console app with httpd.exe, it's using your user environment. In this case system $path and user $path are merged and Apache / modules can find DLLs in all those dirs. Regards, Carsten