[PHP] Anyone ever upgraded PHP at GoDaddy?

2005-06-15 Thread Brian Dunning
GoDaddy's Virtual Dedicated Servers come with PHP 4.2 - anyone ever upgraded this to 4.3 or later? I've never done any command line stuff or anything like that - is there an easier way? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Anyone ever upgraded PHP at GoDaddy?

2005-06-15 Thread Greg Donald
On 6/15/05, Brian Dunning [EMAIL PROTECTED] wrote: GoDaddy's Virtual Dedicated Servers come with PHP 4.2 - anyone ever upgraded this to 4.3 or later? I've never done any command line stuff or anything like that - is there an easier way? Make yourself a phpinfo() page. Your PHP configuration

Re: [PHP] Anyone ever upgraded PHP at GoDaddy?

2005-06-15 Thread Brian Dunning
On Jun 15, 2005, at 2:28 PM, Greg Donald wrote: Make yourself a phpinfo() page. Your PHP configuration will be at the top of the page. You can use that configure line to build/upgrade to a newer PHP. I see that, thanks - but if you'll forgive an ignorant question, what do I do with that

Re: [PHP] Anyone ever upgraded PHP at GoDaddy?

2005-06-15 Thread Laurent Duchesne
Hi, you need to get the appropriate php tarball from http://www.php.net/downloads.php and check out this page: http://www.geocities.com/tipsforlinux/articles/27.html It will tell you how to: - extract the sources - run configure (this is where you use the configure line from phpinfo) -

Re: [PHP] Anyone ever upgraded PHP at GoDaddy?

2005-06-15 Thread Greg Donald
On 6/15/05, Brian Dunning [EMAIL PROTECTED] wrote: On Jun 15, 2005, at 2:28 PM, Greg Donald wrote: Make yourself a phpinfo() page. Your PHP configuration will be at the top of the page. You can use that configure line to build/upgrade to a newer PHP. I see that, thanks - but if