Jump to content
  • 0

Question

Posted

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)

7 answers to this question

Recommended Posts

Posted

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

Posted

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

Posted (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 by ccjosh
  • Upvote 1

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...