Ok, think I get it. I see that when I do a phpinfo it IS showing 4.4.1 as what I am using. But doing php -v from command line gets me 4.4.0, which means I need to make sure the path is pointed to the new location for locally run scripts.
Code:
root@x [~/downloads]# /usr/local/bin/php -v
PHP 4.4.0 (cli) (built: Aug 29 2005 13:18:14)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies
with Zend Extension Manager v1.0.8, Copyright (c) 2003-2005, by Zend Technologies
with Zend Optimizer v2.5.10, Copyright (c) 1998-2005, by Zend Technologies
root@x [~/downloads]# /usr/bin/php -v
PHP 4.4.1 (cgi) (built: Nov 2 2005 10:01:40)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies
with Zend Extension Manager v1.0.8, Copyright (c) 2003-2005, by Zend Technologies
with Zend Optimizer v2.5.10, Copyright (c) 1998-2005, by Zend Technologies
Now my include directories are showing both /usr/bin and /usr/local/bin - should I nix one of those since the older php is still there? -- edit -- sorry, see now most are symlinking...