From: Matthijs Kooijman Date: Wed, 24 Nov 2010 08:08:52 +0000 (+0100) Subject: php5: Add the current directory to the include path. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fservers%2Fdrsnuggles.git;a=commitdiff_plain;h=1edefe62a86ea098034a568dae90b51f25f7b68f php5: Add the current directory to the include path. It is in there by default, but our local override of the include_path had removed it, breaking stuff. --- diff --git a/etc/php5/cgi/php.ini.local b/etc/php5/cgi/php.ini.local index eda3532..98dd3d8 100644 --- a/etc/php5/cgi/php.ini.local +++ b/etc/php5/cgi/php.ini.local @@ -29,6 +29,6 @@ cgi.rfc2616_headers = 1 cgi.fix_pathinfo = 1 # Include some global php libraries -include_path = "/var/www/php5-libs" +include_path = "/var/www/php5-libs:." # vim: set filetype=dosini: