how install php_exif without using easyapache?

arabgenius

Member
Jun 25, 2011
22
0
51
Hello

How can I install those extensions without the use of easyapache ?
extension = "php_mbstring.so"
extension = "php_exif.so"

by the way ... my PHP version is 5.2.17 and my OS is CentOS 64

thanks
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,260
463
Hello :)

Is there a specific reason that you prefer not to use EasyApache? It's the recommended method to install those PHP modules.

Thank you.
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,260
463
What types of modifications did you make? Most modifications are preservable with EasyApache if made correctly.

Thank you.
 

Shavaun

Well-Known Member
Aug 15, 2013
106
0
91
cPanel Access Level
Root Administrator
Can you elaborate on how long EasyApache is taking to complete? I understand that it isn't going to be as quick as adding a module or extension individually, but we certainly want the EasyApache process to be quick and convenient.

If you would like to suggest certain things be moved out of EasyApache, you can post a feature request. Please make sure to be as specific as you can about what items you would like to be separate. If you have any other things that prevent you from using EasyApache, we would like to hear about those as well.
 

HostingH

Well-Known Member
Jan 13, 2008
125
17
68
cPanel Access Level
Root Administrator
Hi,

To install any php module without easyapache just perform following steps.

1. Login to server as root
2. cd /home/cpeasyapache/src/php-5.3.27/ext/
3. fire ls : there you will see all the php modules for example: exif
4. cd exif
5. fire: phpize
6. ./configure ; make ; make install
7. now edit php.ini : /usr/local/lib/php.ini
add extension as : extension=exif.so
8. Restart httpd
9. check the module using : php -m |grep exif

Try it :)