Jump to content
  • 0

help install phpmyadmin.


kangfredy

Question


  • Group:  Members
  • Topic Count:  112
  • Topics Per Day:  0.03
  • Content Count:  388
  • Reputation:   4
  • Joined:  05/01/12
  • Last Seen:  

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.

 

post-4328-0-76696900-1370791853_thumb.jpg

 

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)

Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  188
  • Reputation:   16
  • Joined:  06/12/12
  • Last Seen:  

use yum install httpd

then move ur phpmyadmin folder to var/www/html

service httpd restart

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  112
  • Topics Per Day:  0.03
  • Content Count:  388
  • Reputation:   4
  • Joined:  05/01/12
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  112
  • Topics Per Day:  0.03
  • Content Count:  388
  • Reputation:   4
  • Joined:  05/01/12
  • Last Seen:  

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???

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  707
  • Reputation:   168
  • Joined:  01/26/12
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  268
  • Reputation:   27
  • Joined:  12/06/11
  • Last Seen:  

Try to chown the phpmyadmin folder to "root"

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  66
  • Reputation:   6
  • Joined:  11/13/12
  • Last Seen:  

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 by ccjosh
  • Upvote 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...