PHP5 final release was put out today...
niceHurrah hurrahh...so what's new lol Were you that bored to revive a month old thread?Originally posted by Sul
...so what's new lol
If you ever go to this site called <!-- w --><a class="postlink" href="http://www.php.net">www.php.net</a><!-- w -->, 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.
<offtopic>
LordShryku, I looked at your blog, and noticed you linked to Ryan Brill (<!-- m --><a class="postlink" href="http://www.ryanbrill.com/">http://www.ryanbrill.com/</a><!-- m -->)'s site. I'm curious, do you also go to the Web Developer Forums (<!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/index.php?s=">http://www.webdeveloper.com/forum/index.php?s=</a><!-- m -->), or did you see his article on A List Apart (<!-- m --><a class="postlink" href="http://www.alistapart.com/">http://www.alistapart.com/</a><!-- m -->)?
</offtopic>I'm a bit of everywhere, but Ryan's a regular around here.Originally posted by LordShryku
I'm a bit of everywhere, but Ryan's a regular around here.
Ah, I hadn't seen that before.Anyone upgraded to PHP5.0.1 yet?Of course I have 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.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?'./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.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)
niceHurrah hurrahh...so what's new lol Were you that bored to revive a month old thread?Originally posted by Sul
...so what's new lol
If you ever go to this site called <!-- w --><a class="postlink" href="http://www.php.net">www.php.net</a><!-- w -->, 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.
<offtopic>
LordShryku, I looked at your blog, and noticed you linked to Ryan Brill (<!-- m --><a class="postlink" href="http://www.ryanbrill.com/">http://www.ryanbrill.com/</a><!-- m -->)'s site. I'm curious, do you also go to the Web Developer Forums (<!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/index.php?s=">http://www.webdeveloper.com/forum/index.php?s=</a><!-- m -->), or did you see his article on A List Apart (<!-- m --><a class="postlink" href="http://www.alistapart.com/">http://www.alistapart.com/</a><!-- m -->)?
</offtopic>I'm a bit of everywhere, but Ryan's a regular around here.Originally posted by LordShryku
I'm a bit of everywhere, but Ryan's a regular around here.
Ah, I hadn't seen that before.Anyone upgraded to PHP5.0.1 yet?Of course I have 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.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?'./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.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)