Enable Exif

PaulE

New member
Joined
Mar 29, 2009
Messages
2
Hey,

A friend gave me an VPS server, which I'm configuring right now. I've succesfully installed DirectAdmin via the "setup.sh" file, and installed zend via the custombuild.
The following thing I want to do now is installing "exif" for PHP. But right now I'm getting stuck since I don't know how to do this. I think it has something to do with the "configure command" which you can get out of the PHPinfo. Do I just have to add something like "--with-exif" and then compile it?

Thanks in advance,
Paul
 
Enter /usr/local/directadmin/custombuild ("cd /usr/local/directadmin/custombuild").

If you use PHP5 CLI, create the directory custom/ap2 ("mkdir -p custom/ap2"), then copy configure/ap2/configure.php5 to custom/ap2/configure.php5.

If you use PHP5 CGI, create the directory custom/suphp ("mkdir -p custom/suphp"), then copy configure/suphp/configure.php5 to custom/suphp/configure.php5.

Open the copied file and add "--enable-exif" to the list. Remember that there must be a "\" at the very end of every line but the last one.

Reinstall php ("./build php n").
 
Enter /usr/local/directadmin/custombuild ("cd /usr/local/directadmin/custombuild").

If you use PHP5 CLI, create the directory custom/ap2 ("mkdir -p custom/ap2"), then copy configure/ap2/configure.php5 to custom/ap2/configure.php5.

If you use PHP5 CGI, create the directory custom/suphp ("mkdir -p custom/suphp"), then copy configure/suphp/configure.php5 to custom/suphp/configure.php5.

Open the copied file and add "--enable-exif" to the list. Remember that there must be a "\" at the very end of every line but the last one.

Reinstall php ("./build php n").
Thanks for your help, that did the trick! Now I now this for the next time when I need to enable or install an plugin :) Thanks again!
 
Back
Top