Quantcast
Channel: FedoraForum.org
Viewing all articles
Browse latest Browse all 35975

phpMyAdmin with php-fpm

$
0
0
Hi everyone,

since I want to host a magento website I wish to run a LAMP server with php-fpm.

The install works using this tutorial: http://www.howtoforge.com/using-php5...e-on-fedora-18

First off I made a clean install (virtuebox) and disables SELINUX and firewall for now to make sure they are not blocking things.

Then the compressed verion of the tutorial:
Code:

yum -y install mysql mysql-server
systemctl enable mysqld.service
systemctl start mysqld.service
mysql_secure_installation

yum -y install httpd
systemctl enable httpd.service
systemctl start httpd.service

yum -y install php-fpm
vi /etc/php.ini
date.timezone = "Europe/Amsterdam"

systemctl enable php-fpm.service
systemctl start php-fpm.service

vi /etc/httpd/conf/httpd.conf
<IfModule proxy_module>
  ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://127.0.0.1:9000/var/www/html/$1
</IfModule>

systemctl restart httpd.service

yum -y install php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-magickwand php-mbstring php-mcrypt php-mssql php-shout php-snmp php-soap php-tidy

yum -y install php-pecl-apc
systemctl reload php-fpm.service

Created a phpinfo() file and all is happy.

Now when I install phpmyadmin it also wants to install php and all goes south...

Any help is appreciated

---------- Post added at 09:09 PM ---------- Previous post was at 08:50 PM ----------

Is there more trouble ahead when trying to install other things that require php?

My main setup will include:
-multiple websites
-magento store
-zarafa email server
-rutorrent

Viewing all articles
Browse latest Browse all 35975

Trending Articles