Post

Install phpMyAdmin on Linux Slackware 14.1

night all :D i share how install phpMyadmin on Slackware Linux :) i started using Slackware, and i’m not installed phpMyAdmin on my Slackware Linux i think it necessary because to create a database and website :)
okay check it out :D

1. you can download phpMyAdmin on SlackBuild and then you install.

2. you can download manually if you want new phpMyAdmin on phpMyAdmin

  • for manually download [ after download, extract phpMyAdmin file to /home/ and then move phpMyAdmin-XXX to /var/www/htdocs/phpMyAdmin and then you need configuration this file on httpd that phpMyAdmin to work.

first step :
you must create script to /etc/httpd/

1
# touch /etc/httpd/phpMyAdmin.conf

and edit

1
# nano /etc/httpd/phpMyAdmin.conf

Then fill this value:

1
2
3
4
5
6
7
8
9
#  
# phpMyAdmin - MySQL Database Administration Tool  
#  
Alias /phpMyAdmin /var/www/phpMyAdmin  

# AllowOverride None  
# Options None  
Order allow,deny  
Allow from all  

edit file on /etc/httpd/httpd.conf and add script file

1
Include /etc/httpd/phpMyAdmin.conf

and restart httpd again :

1
# /etc/rc.d/rc.httpd restart

for testing you can access on your web browser :
http://localhost/phpMyAdmin

Thanks

This post is licensed under CC BY 4.0 by the author.