where to get php 5.2.6 compatible extension files

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
sss000_007
Forum Newbie
Posts: 4
Joined: Tue Sep 23, 2008 12:03 am

where to get php 5.2.6 compatible extension files

Post by sss000_007 »

Can anybody tell me where to get php 5.2.6 compatible extension files
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Re: where to get php 5.2.6 compatible extension files

Post by RobertGonzalez »

From the downloads page on php.net.
jmut
Forum Regular
Posts: 945
Joined: Tue Jul 05, 2005 3:54 am
Location: Sofia, Bulgaria
Contact:

Re: where to get php 5.2.6 compatible extension files

Post by jmut »

0. Download php sources for your php version.
1. ./configure whatever extensions you require as share
2. Do 'make'.
3. Find the .so files and use them. find ./ -iname '*.so' -type f Put .so files where 'extesnsions_dir' in php.ini points to.
4. Do not do 'make install' as this might overwrite current installation and mess up stuff.
5. Restart apache.
6. Check phpinfo if all loaded as expected
7. Happy coding.
Post Reply