[PHP-DEV] PHP 4.0 Bug #8723: Fun with putenv From: mikhail <email protected>
Date: 01/15/01

From: mikhail <email protected>
Operating system: SCO Openserver 5.05
PHP version: 4.0.4pl1
PHP Bug Type: Apache related
Bug description: Fun with putenv

Apache: 1.3.14 (with mod_php4 among other)

test.phtml:
<?
 putenv("one=one");
 $one=getenv("one");
 exec("echo two", $two, $ret);
 print("1: $one<br>");
 print("2: $two[0] ($ret)<br>");
?>

Browser shows:
1: one
2: two (0)

Config options:
configure --with-gd=/usr/local/gd --with-mysql --with-jpeg-dir=/tmp/jpeg-6b
 --with-apache=../apache_1.3.14

After hitting Reload, browser shows:
1: one
2: two (0)

After hitting Reload again, browser shows:
1: one
Warning: Undefined index: 0 in /u/local/apache/htdocs/test.phtml on line 6
2: (1)

After "apachectl restart" the above repeats...

-- 
Edit Bug report at: http://bugs.php.net/?id=8723&edit=1

-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>