[PHP] Apache config + PHP include paths

2001-06-21 Thread Butler, Shaun

is there a way to set up a different include path per virtual host in the 
apache config or in the php.ini ?

so www.blahblah.com would have /www/libs as the include path

and 

www.moomoo.com would have /www/moo 

-- Shaun

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Apache config + PHP include paths

2001-06-21 Thread lenar

in your virtualhost definition use:
php_value include_path "new include path"

might be that instead of php_value you have to use php_admin_value, not
sure.

this is explained in "Chapter 3. Configuration" of php manual.

lenar.

""Butler, Shaun"" <[EMAIL PROTECTED]> wrote in message
0106240506.10472@progeny">news:0106240506.10472@progeny...
> is there a way to set up a different include path per virtual host in the
> apache config or in the php.ini ?
>
> so www.blahblah.com would have /www/libs as the include path
>
> and
>
> www.moomoo.com would have /www/moo
>
> -- Shaun
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Apache config + PHP include paths

2001-06-21 Thread infoz

Yes, in httpd.conf, just add the appropriate line, i.e.

php_value include_path "blah"

in the section for each virtual host.

- Tim
  http://www.phptemplates.org

> is there a way to set up a different include path per virtual host in the
> apache config or in the php.ini ?



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Apache config + PHP include paths

2001-06-21 Thread DAve Goodrich

on 6/21/01 8:14 AM, Butler, Shaun at [EMAIL PROTECTED] wrote:

> is there a way to set up a different include path per virtual host in the
> apache config or in the php.ini ?
> 
> so www.blahblah.com would have /www/libs as the include path
> 
> and 
> 
> www.moomoo.com would have /www/moo
> 
> -- Shaun


DocumentRoot /usr/local/web/myWeb
ServerName myWeb.org
ServerAlias www.myWeb.org
php_value include_path /usr/local/web/myWeb_inc
CustomLog /usr/local/web/logs/myWeb_access_log combined
ErrorLog /usr/local/web/logs/myWeb_error_log
 

That would make the include directory outside the server root. You could
just as easily put it inside and name all your files *.php. But that has
been discussed at length already ;^)

DAve
--
Dave Goodrich
Director of Interface Development
Reality Based Learning Company
9521 NE Willows Road, Suite 100
Redmond, WA 98052 
Toll Free 1-877-869-6603 ext. 237
Fax (425) 558-5655 
[EMAIL PROTECTED] 
http://www.rblc.com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Apache config + PHP include paths

2001-06-21 Thread Aaron Bennett
Title: RE: [PHP] Apache config + PHP include paths






Shaun, you can also define php_value (but NOT php_admin_value) lines in a .htaccess file rather than in your httpd.conf, assuming you gave (or were given) the appropriate AllowOverride parameters to use .htaccess... Unless you are running your own server or know root, then thats what might be your best (quickest) bet.

the appropriate format would be:
php_value include_path ".:/path/to/includes:/another/path/somewhere/else"


(personally, i use a "." as the first path to check current directory as well.. (covered in the manual as well, i believe)

--
Aaron Bennett
[EMAIL PROTECTED]


-Original Message-
From: lenar [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 21, 2001 8:32 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Apache config + PHP include paths



in your virtualhost definition use:
php_value include_path "new include path"


might be that instead of php_value you have to use php_admin_value, not
sure.


this is explained in "Chapter 3. Configuration" of php manual.


lenar.


""Butler, Shaun"" <[EMAIL PROTECTED]> wrote in message
0106240506.10472@progeny" TARGET="_blank">news:0106240506.10472@progeny...
> is there a way to set up a different include path per virtual host in the
> apache config or in the php.ini ?
>
> so www.blahblah.com would have /www/libs as the include path
>
> and
>
> www.moomoo.com would have /www/moo
>
> -- Shaun
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]