where to get php 5.2.6 compatible extension files
Moderator: General Moderators
-
sss000_007
- Forum Newbie
- Posts: 4
- Joined: Tue Sep 23, 2008 12:03 am
where to get php 5.2.6 compatible extension files
Can anybody tell me where to get php 5.2.6 compatible extension files
- 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
From the downloads page on php.net.
Re: where to get php 5.2.6 compatible extension files
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.
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.