kangfredy Posted June 9, 2013 Share Posted June 9, 2013 guys i need help why i cann't open setup my phpmyadmin?? im using tutorial from brian http://rathena.org/board/topic/63688-how-to-install-phpadmindatabase-to-centos-5-32bit-os/#entry102183 but i will open setup like this. what's should i do this? and how to install Phpmyadmin?im using yum --enablerepo=<repository name> install phpmyadmin and yum install and after this i can't acess my phpadmin.(not forbidden) but no avaible. im using chmod 777.for phpmyadmin but it's still not forbidden...somebody can help me?im using centos 5.9 -apache -mysql 5 php 5.5(with all module) Quote Link to comment Share on other sites More sharing options...
Rayan Posted June 9, 2013 Share Posted June 9, 2013 use yum install httpd then move ur phpmyadmin folder to var/www/html service httpd restart Quote Link to comment Share on other sites More sharing options...
kangfredy Posted June 9, 2013 Author Share Posted June 9, 2013 use yum install httpd then move ur phpmyadmin folder to var/www/html service httpd restart httpd same as apache?yep not affected after service httpd restart Quote Link to comment Share on other sites More sharing options...
Rayan Posted June 9, 2013 Share Posted June 9, 2013 refer this : http://forums.freebsd.org/showthread.php?t=11322 Quote Link to comment Share on other sites More sharing options...
kangfredy Posted June 9, 2013 Author Share Posted June 9, 2013 i has been edit in httpd/conf.d/phpmyadmin.conf but..i found my mysql cannot conect to phpmyadmin?how to make this connect?(im using new username) but still cannot conect tu phpmyadmin..maybe this is crash with mysql 5.0 with php 5.5??? Quote Link to comment Share on other sites More sharing options...
Asura Posted June 20, 2013 Share Posted June 20, 2013 Hi kangfredy, Why do you have a configuration file for phpMyAdmin in the httpd config folder? I don't think this is correct. phpMyAdmin is simply a PHP script for you to put on your website directory, and can be used to help manage your MySQL server. So you just go to the phpMyAdmin website, and then download the files to put into your Apache web directory. http://www.phpmyadmin.net/home_page/downloads.php Quote Link to comment Share on other sites More sharing options...
KaitoKid Posted August 19, 2013 Share Posted August 19, 2013 Try to chown the phpmyadmin folder to "root" Quote Link to comment Share on other sites More sharing options...
ccjosh Posted August 21, 2013 Share Posted August 21, 2013 (edited) It's just a matter of permissions. Change the folder permission to 744. chmod -R 744 /path/to/folder You might need to find phpmyadmin.conf to change <Directory "/path/to/phpmyadmin"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Allow from all </Directory> to this: <Directory "/path/to/phpmyadmin"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Deny from all Allow from 127.0.0.1 </Directory> Restart apache to apply changes. Side note: Never use root as an owner for web pages, specially dynamic ones. You might as well set your password to welcome123 Edited August 21, 2013 by ccjosh 1 Quote Link to comment Share on other sites More sharing options...
guys i need help why i cann't open setup my phpmyadmin??
im using tutorial from brian
http://rathena.org/board/topic/63688-how-to-install-phpadmindatabase-to-centos-5-32bit-os/#entry102183
but i will open setup like this.
what's should i do this?
and how to install Phpmyadmin?im using
and
yum install
and after this i can't acess my phpadmin.(not forbidden) but no avaible.
im using chmod 777.for phpmyadmin but it's still not forbidden...somebody can help me?
im using centos 5.9
-apache
-mysql 5
php 5.5(with all module)
Link to comment
Share on other sites