Jump to content
  • 0
Petey Pablo

how to install phpadmin(database) to Centos 5 32bit / OS?

Question

6 answers to this question

Recommended Posts

you have to get them from different repositories. and then do something like this

yum --enablerepo=<repository name> install phpmyadmin

Link to comment
Share on other sites

I also prefer manually installing.

Install Apache, PHP, and some other stuff:

yum -y install httpd php php-mysql wget zip unzip

Download phpMyAdmin (get URL from their downloads page) and extract:

cd /var/www/html/
wget http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/3.5.1/phpMyAdmin-3.5.1-english.zip
unzip phpMyAdmin-3.5.1-english.zip
rm phpMyAdmin-3.5.1-english.zip

optional: rename the folder

mv phpMyAdmin-3.5.1-english/ secret_folder_name/

Point your browser to:

http://<YOUR_SERVER_IP_OR_HOSTNAME>/phpMyAdmin-3.5.1-english/setup/

and follow the configuration instructions.

Link to comment
Share on other sites

I also prefer manually installing.

Install Apache, PHP, and some other stuff:

yum -y install httpd php php-mysql wget zip unzip

Download phpMyAdmin (get URL from their downloads page) and extract:

cd /var/www/html/
wget http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/3.5.1/phpMyAdmin-3.5.1-english.zip
unzip phpMyAdmin-3.5.1-english.zip
rm phpMyAdmin-3.5.1-english.zip

optional: rename the folder

mv phpMyAdmin-3.5.1-english/ secret_folder_name/

Point your browser to:

http://<YOUR_SERVER_IP_OR_HOSTNAME>/phpMyAdmin-3.5.1-english/setup/

and follow the configuration instructions.

i need some help here D: i try all that steps. except

mv phpMyAdmin-3.5.1-english/ secret_folder_name/ and when i do http://<YOUR_SERVER_IP_OR_HOSTNAME>/phpMyAdmin-3.5.1-english/setup/ its not open.. i dunno whats wrong :S

Link to comment
Share on other sites

Hi onizame,

If you actually named the folder 'secret_folder_name'; then it would probably be like this...

http://<YOUR_SERVER_IP_OR_HOSTNAME>/secret_folder_name/setup/

  • 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...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.