Re: Multiple versions of PHP

2008-02-22 Thread Mel
On Friday 22 February 2008 04:25:17 patrick wrote: I've got a new problem... Nope, you've got a shoot yourself in the foot problem. While I was able to install PHP 5 into a separate location than PHP 4 (both from ports), See? There's a reason ports use CONFLICTS: the ports are conflicting. I

Re: Multiple versions of PHP

2008-02-21 Thread patrick
I've got a new problem... While I was able to install PHP 5 into a separate location than PHP 4 (both from ports), I'm now trying to add a PHP 5 extension (/usr/ports/graphics/php5-gd). The built-in version checking is saying: === php5-gd-5.2.5 cannot install: doesn't work with PHP version : 4

Re: Multiple versions of PHP

2008-02-21 Thread patrick
Okay, I got it installed, but I had to make temporary changes to /usr/ports/Mk/bsd.php.mk. My first idea was to build with: make PREFIX=/usr/local/php5 LOCALBASE=/usr/local/php5 but that didn't work because other things expect LOCALBASE to be /usr/local (or rather, expect that whatever LOCALBASE

Re: Multiple versions of PHP

2007-04-03 Thread patrick
Thanks, that worked really well. For those searching the archive for an easy answer, you just need to do: make PREFIX=/path/to/where/you/want all install clean Patrick On 4/2/07, Kimi Ostro [EMAIL PROTECTED] wrote: On 02/04/07, patrick [EMAIL PROTECTED] wrote: I have a FreeBSD 6.2 server

Re: Multiple versions of PHP

2007-04-03 Thread Nagy László Zsolt
patrick wrote: Thanks, that worked really well. For those searching the archive for an easy answer, you just need to do: make PREFIX=/path/to/where/you/want all install clean Hmm, what happens if two ports would be in conflict, unless installed into separate directories? In other words, how

Multiple versions of PHP

2007-04-02 Thread patrick
I have a FreeBSD 6.2 server with Apache 1.3.x and PHP 4.4.x built from ports. I'd like to install PHP 5 from the ports tree, but target its install location to /usr/local/php5 to keep it separate from the PHP 4 stuff. (I'll be running PHP through fastcgi.) I'm wondering if there's a way to do

Re: Multiple versions of PHP

2007-04-02 Thread Kimi Ostro
On 02/04/07, patrick [EMAIL PROTECTED] wrote: I have a FreeBSD 6.2 server with Apache 1.3.x and PHP 4.4.x built from ports. I'd like to install PHP 5 from the ports tree, but target its install location to /usr/local/php5 to keep it separate from the PHP 4 stuff. (I'll be running PHP through