Here is a complete howto on installing php-ming in Fedora. (I installed it on Fedora 7 and with php5, but howto is supposed to work with other versions as well.) Though there are rpms available for earlier versions of ming, but I wanted the latest, so installed from source.
Resources:
libming : http://www.libming.net/
PHP : http://php.net/
First of all make sure that you have php-devel package, otherwise you will not be able to install ming at all. Do the following as root.
[root@bordeaux root]# rpm -q php-devel [Enter]
If the above command says php-devel is not installed, then fetch php-devel for your php version from here and install as given below, else proceed to step 2.
[root@bordeaux root]# rpm -hiv php-devel-5.2.2-3.i386.rpm [Enter]
Download latest version of ming from here.
Untar the downloaded package.
[saini@bordeaux saini]# tar -xvzf ming-0.4.0.beta5.tar.gz [Enter]
Change directory to ‘./ming-0.4.0.beta5’ and issue ./configure and make as given below
[saini@bordeaux saini]# cd ming-0.4.0.beta5 [Enter]
[saini@bordeaux ming-0.4.0.beta5]# ./configure --enable-cXX --enable-php [Enter]
[saini@bordeaux ming-0.4.0.beta5]# make [Enter]
[root@bordeaux ming-0.4.0.beta5]# make install [Enter] (as root)
Go to ‘./php_ext’ directory and issue ‘make’ and ‘make install’.
[saini@bordeaux ming-0.4.0.beta5]# cd php_ext [Enter]
[saini@bordeaux php_ext]# make [Enter]
[root@bordeaux php_ext]# make install [Enter] (as root)
Open make_modules.sh in your favorite editor and uncomment the line ‘make install’ and run make_modules.sh.
[root@bordeaux php_ext]# bash make_modules.sh [Enter] (as root)
Go to ‘./tmp/modules/’ directory and copy ming.so to ‘/usr/lib/php/modules/’
[root@bordeaux php_ext]# cd tmp/modules/ [Enter]
[root@bordeaux modules]# cp ming.so /usr/lib/php/modules/ [Enter] (as root)
If ming.so is not found in ‘php_ext/tmp/modules/, then update your db using ‘updatedb’ and locate ming.so and if found on locate, then copy it to ‘/usr/lib/php/modules/’. If not found at all, try recompiling or issue some random commands related to make.
Go to ‘/usr/local/lib/’ and check if libming.so, libming.so.0 etc. are present there. If yes proceed else I don’t know what to do
Go to ‘/usr/lib/php/modules/’ and issue these commands.
[root@bordeaux modules]# ln -s /usr/local/lib/libming.so libming.so (as root)
[root@bordeaux modules]# ln -s /usr/local/lib/libming.so.0 libming.so.0 (as root)
[root@bordeaux modules]# ln -s /usr/local/lib/libming.so.0.3.0 libming.so.0.3.0 (as root)
[root@bordeaux modules]# ln -s /usr/local/lib/libming.so.0.4.0 libming.so.0.4.0 (as root)
Go to ‘/usr/lib/’ and issue these commands.
[root@bordeaux lib]# ln -s /usr/local/lib/libming.so libming.so (as root)
[root@bordeaux lib]# ln -s /usr/local/lib/libming.so.0 libming.so.0 (as root)
[root@bordeaux lib]# ln -s /usr/local/lib/libming.so.0.3.0 libming.so.0.3.0 (as root)
[root@bordeaux lib]# ln -s /usr/local/lib/libming.so.0.4.0 libming.so.0.4.0 (as root)
Restart the httpd service by issuing the command below
[root@bordeaux root]# service httpd restart [Enter] (as root)
Write a file ‘/var/www/html/info.php’ with following contents
phpinfo();
and point your web browser to http://localhost/info.php . Now search for ‘ming’ and check whether its enabled or not.
If enabled, yes you have successfully installed php-ming Hope this helps.