kangfredy Posted June 9, 2013 Group: Members Topic Count: 112 Topics Per Day: 0.02 Content Count: 388 Reputation: 4 Joined: 05/01/12 Last Seen: October 25, 2022 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 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 188 Reputation: 16 Joined: 06/12/12 Last Seen: September 1, 2016 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 Group: Members Topic Count: 112 Topics Per Day: 0.02 Content Count: 388 Reputation: 4 Joined: 05/01/12 Last Seen: October 25, 2022 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 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 188 Reputation: 16 Joined: 06/12/12 Last Seen: September 1, 2016 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 Group: Members Topic Count: 112 Topics Per Day: 0.02 Content Count: 388 Reputation: 4 Joined: 05/01/12 Last Seen: October 25, 2022 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 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 707 Reputation: 168 Joined: 01/26/12 Last Seen: February 7, 2014 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 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 268 Reputation: 27 Joined: 12/06/11 Last Seen: March 13, 2015 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 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 66 Reputation: 6 Joined: 11/13/12 Last Seen: November 17, 2014 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...
Question
kangfredy
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
7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.