Re: [PHP] PHP4 to PHP5 issue

2007-02-07 Thread Christopher Weldon
On Feb 5, 2007, at 2:00 PM, Jochem Maas wrote: you don't need to use the box - you can install a 2nd copy of apache and run php4 on it and use the apache ProxyPass directive to make the php4/apache setup available via the apache(2)/php5 [std] webserver. search the archives for 'ProxyPass'

Re: [PHP] PHP4 to PHP5 issue

2007-02-07 Thread Myron Turner
Christopher Weldon wrote: You actually don't even have to run a second instance of Apache. From what I've heard of other hosting companies doing, you can use the same Apache installation and run PHP4 and PHP5 concurrently. However, the only thing you'd have to do is one of the following: 1)

Re: [PHP] PHP4 to PHP5 issue

2007-02-07 Thread Jochem Maas
Myron Turner wrote: Christopher Weldon wrote: You actually don't even have to run a second instance of Apache. From what I've heard of other hosting companies doing, you can use the same Apache installation and run PHP4 and PHP5 concurrently. if you use CGI for one of them then yes - but not

Re: [PHP] PHP4 to PHP5 issue

2007-02-07 Thread Myron Turner
Jochem Maas wrote: Myron Turner wrote: Christopher Weldon wrote: You actually don't even have to run a second instance of Apache. From what I've heard of other hosting companies doing, you can use the same Apache installation and run PHP4 and PHP5 concurrently. if you use CGI

Re: [PHP] PHP4 to PHP5 issue

2007-02-05 Thread Jochem Maas
Skip Evans wrote: Hey all, I installed a new FreeBSD 6.0 server here in the office with PHP5. I moved over several sites we developed under PHP4, and all of those seem to be functioning perfectly, but I am getting an error on to sites, on PostNuke based and our dotProject system. Both

Re: [PHP] PHP4 to PHP5 issue

2007-02-05 Thread Skip Evans
Jochem Maas wrote: the problem is not with $q but with $db. $db is not an object, why that is so I don't know - more bug hunting for you I'm afraid. Woops! I sure read that one wrong. Thanks, I will dig deeper. Does anyone have any experience running dotProject under PHP5? Skip Evans

Re: [PHP] PHP4 to PHP5 issue

2007-02-05 Thread Sancar Saran
Hi, It look like your system cannot init adodb library. It may SQL setup problem... On Monday 05 February 2007 19:58, Skip Evans wrote: Hey all, I installed a new FreeBSD 6.0 server here in the office with PHP5. I moved over several sites we developed under PHP4, and all of those seem to be

RE: [PHP] PHP4 to PHP5 issue

2007-02-05 Thread Tim
Hi, -Message d'origine- De : Skip Evans [mailto:[EMAIL PROTECTED] Envoyé : lundi 5 février 2007 19:31 Cc : PHP-General Objet : Re: [PHP] PHP4 to PHP5 issue Jochem Maas wrote: the problem is not with $q but with $db. $db is not an object, why that is so I don't know - more

Re: [PHP] PHP4 to PHP5 issue

2007-02-05 Thread Skip Evans
Tim wrote: Yes, our company used it for three months before dumping it regarding PHP5 incompatibility and some other mistakes.. I ended up having to fix/hack too many things (sessions doing weird things, broken forum, translations all messed up, user roles not working quite right, admin system

Re: [PHP] PHP4 to PHP5 issue

2007-02-05 Thread Jochem Maas
Skip Evans wrote: Tim wrote: Yes, our company used it for three months before dumping it regarding PHP5 incompatibility and some other mistakes.. I ended up having to fix/hack too many things (sessions doing weird things, broken forum, translations all messed up, user roles not working

RE: [PHP] PHP4 to PHP5 issue

2007-02-05 Thread Tim
-Message d'origine- De : Jochem Maas [mailto:[EMAIL PROTECTED] Envoyé : lundi 5 février 2007 21:00 À : Skip Evans Cc : 'PHP-General' Objet : Re: [PHP] PHP4 to PHP5 issue Skip Evans wrote: Tim wrote: Yes, our company used it for three months before dumping it regarding PHP5

Re: [PHP] PHP4 to PHP5 issue

2007-02-05 Thread Richard Lynch
Your problem is the $db is NOT an Object. $q is fine as-is. Figure out why $db isn't getting be an object -- Probably because the username/password and/or permissions to connect to the DB aren't set up correctly. Or you didn't copy over the DB tables PostNuke and dotProject need. On Mon,