From owner-freebsd-questions@FreeBSD.ORG Sat Mar 10 01:35:52 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3BB8E106566C for ; Sat, 10 Mar 2012 01:35:52 +0000 (UTC) (envelope-from alexus@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id C62118FC08 for ; Sat, 10 Mar 2012 01:35:51 +0000 (UTC) Received: by werl4 with SMTP id l4so1997139wer.13 for ; Fri, 09 Mar 2012 17:35:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=8va4vCY5sH3HTEuJ8b7qDmu8TMZ1oYoV79YAtPnvLJM=; b=c+VXf+mX7Rdm0tGnTuJ0e4H52JRaP8F0QtXMcqAuyKVYk1Jp0Ku7BupOmsLlHk2AS6 EH/ekm79fTK7wa1IAm7IA2U8KET/yClt35lxAkmE5MPHG4lkIoh5v9KfBT1qzKLANAIo Eo324PWthTaDPwPrIZMXpQfZNV1i4w5wMXoQm++GjtkeIj73nDOQ2saw4D4jVcRQ5p3V GIrYuj8IwNoN0XWSEbnSWyi/BL5/uftSBi74lbGgSSneI71P3q+01SLxV/BaMMm9HuM+ 6dUvkNlRcC7VnZCSbz26CdSiwZrorR2XXHPFD+NFCxePnh7CYr7SlccQncu+FNZRzBS2 DYkw== MIME-Version: 1.0 Received: by 10.180.102.231 with SMTP id fr7mr9544466wib.10.1331343350936; Fri, 09 Mar 2012 17:35:50 -0800 (PST) Received: by 10.216.171.18 with HTTP; Fri, 9 Mar 2012 17:35:50 -0800 (PST) In-Reply-To: <6C1B4420-3535-40A1-83CE-15CEBEF60A66@my.gd> References: <6C1B4420-3535-40A1-83CE-15CEBEF60A66@my.gd> Date: Fri, 9 Mar 2012 20:35:50 -0500 Message-ID: From: alexus To: Damien Fleuriot Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: "freebsd-questions@freebsd.org" Subject: Re: apache22 + mod_fastcgi X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2012 01:35:52 -0000 if it would be incorrectly it wouldn't work the first time (default host) virtualhost has a copy from a default host, the only difference is local path to directory, that's all ifmodule is there just in case if for whatever reason module is missing, site can operate in degraded state vs not operate at all and other virtual hosts can work as well otherwise i have to go and comment out alot of lines manually so it's not ifmodule as that proven to work, but in any case i added ifmodule after, line was there before without ifmodule so it didn't work before either.. mbp:~ alexus$ curl -I http://XX.XXX.XX.XXX/php/phpinfo.php HTTP/1.1 200 OK Date: Sat, 10 Mar 2012 01:34:29 GMT Server: Apache/2.2.21 (FreeBSD) mod_ssl/2.2.21 OpenSSL/0.9.8q DAV/2 mod_python/3.3.1 Python/2.7.2 mod_fastcgi/2.4.6 X-Powered-By: PHP/5.3.8 Content-Type: text/html mbp:~ alexus$ curl -I http://virtualhost.com/php/phpinfo.php HTTP/1.1 200 OK Date: Sat, 10 Mar 2012 01:34:42 GMT Server: Apache/2.2.21 (FreeBSD) mod_ssl/2.2.21 OpenSSL/0.9.8q DAV/2 mod_python/3.3.1 Python/2.7.2 mod_fastcgi/2.4.6 Last-Modified: Thu, 23 Feb 2012 02:10:09 GMT ETag: "97c8ef-11-4b99824b74240" Accept-Ranges: bytes Content-Length: 17 Content-Type: application/x-httpd-php mbp:~ alexus$ On Fri, Mar 9, 2012 at 7:24 PM, Damien Fleuriot wrote: > I think you're naming your module incorrectly. > > First, try just setting the handler in your vhost w/o the ifmodule stuff. > If that works, you know where you've gone wrong. > > > On 9 Mar 2012, at 21:12, alexus wrote: > >> i'd like to follow up with this question if possible >> >> On Wed, Mar 7, 2012 at 8:31 PM, alexus wrote: >>> --- >>> LoadModule fastcgi_module =C2=A0 =C2=A0 libexec/apache22/mod_fastcgi.so >>> >>> >>> =C2=A0 =C2=A0 =C2=A0 =C2=A0AddHandler php5-fastcgi .php >>> =C2=A0 =C2=A0 =C2=A0 =C2=A0FastCgiExternalServer /usr/local/www/apache2= 2/data/php -socket >>> /var/run/spawn_fcgi.sock >>> >>> --- >>> >>> this works for my apache for default virtualhost, yet if i use same >>> thing under a virtualhost it won't work >>> >>> >>> =C2=A0 =C2=A0 =C2=A0 =C2=A0ServerName xxxx >>> =C2=A0 =C2=A0 =C2=A0 =C2=A0DocumentRoot /home/xxx/xxx/htdocs/ >>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 >>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0AddHandler php5-= fastcgi .php >>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0FastCgiExternalS= erver /home/xxx/xxx/htdocs/php -socket >>> /var/run/spawn_fcgi.sock >>> =C2=A0 =C2=A0 =C2=A0 =C2=A0 >>> >>> >>> in default virtual host i PHP scripts gets executed no problem, under >>> second it actually just starts downloading that php script.. >>> >>> any ideas? >>> >>> -- >>> http://alexus.org/ >> >> >> >> -- >> http://alexus.org/ >> _______________________________________________ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.= org" --=20 http://alexus.org/