Page 1 of 1
where to get php 5.2.6 compatible extension files
Posted: Tue Sep 30, 2008 12:43 am
by sss000_007
Can anybody tell me where to get php 5.2.6 compatible extension files
Re: where to get php 5.2.6 compatible extension files
Posted: Tue Sep 30, 2008 1:10 pm
by RobertGonzalez
From the downloads page on php.net.
Re: where to get php 5.2.6 compatible extension files
Posted: Wed Oct 01, 2008 1:31 am
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.