Click to See Complete Forum and Search --> : Time to upgrade!


LordShryku
07-13-2004, 09:03 PM
PHP5 final release was put out today...

Moonglobe
07-13-2004, 11:18 PM
:D
nice

Shrike
07-14-2004, 05:32 AM
Hurrah :)

teddmcload
07-14-2004, 09:14 AM
hurrahh

Sul
08-08-2004, 07:11 PM
...so what's new lol :D

LordShryku
08-08-2004, 07:50 PM
Were you that bored to revive a month old thread?

Jona
08-08-2004, 09:18 PM
Originally posted by Sul
...so what's new lol :D

If you ever go to this site called www.php.net, and scroll down just a wee bit, you'll see this header that says, "PHP 5.0.0 Released!" Yep, the features are listed there. :rolleyes:

<offtopic>
LordShryku, I looked at your blog, and noticed you linked to Ryan Brill (http://www.ryanbrill.com/)'s site. I'm curious, do you also go to the Web Developer Forums (http://www.webdeveloper.com/forum/index.php?s=), or did you see his article on A List Apart (http://www.alistapart.com/)?
</offtopic>

LordShryku
08-08-2004, 09:33 PM
I'm a bit of everywhere, but Ryan's a regular around here.

Jona
08-09-2004, 12:08 AM
Originally posted by LordShryku
I'm a bit of everywhere, but Ryan's a regular around here.

Ah, I hadn't seen that before.

laserlight
08-13-2004, 05:11 AM
Anyone upgraded to PHP5.0.1 yet?

goldbug
08-13-2004, 11:15 AM
Of course I have :D

yelvington
08-14-2004, 11:55 AM
Oh yeah. And 'make install' continues to screw up the Apache2 conf file by putting in Apache 1 directives. But that's easy to fix.

goldbug
08-14-2004, 04:42 PM
Originally posted by yelvington
Oh yeah. And 'make install' continues to screw up the Apache2 conf file by putting in Apache 1 directives. But that's easy to fix.

In what way? My httpd.conf has no such entries. What configure command are you using for PHP?

yelvington
08-14-2004, 05:30 PM
'./configure' '--with-mysql=/home/mysql' '--with-apxs2'

And it consistently adds the following line to /etc/httpd/conf/httpd2.conf:

AddModule mod_php5.c

That's appropriate for Apache 1.x, but all Apache2 wants to see is

LoadModule php5_module lib/libphp5.so

So, when I restart the server, it fails. I comment out the offending line, and all is well.

Had the same problem with 5.0.

goldbug
08-14-2004, 07:40 PM
Well, it could be your configure command. Here's a snippet from my usual configure script:
./configure \
--with-apxs2=/usr/local/apache2/bin/apxs \
... etc ...

Don't see why specifying the path to apxs2 should matter (other than the possibility it's finding an Apache1.x apxs in a search path before the Apache2 version), but thats the only apache-related difference I can see between the two (only other possible one I can think of is that I compile apache myself as well--not sure if you use a package or whatever--but that shouldn't matter much either)