help to install phpmyadmin

Status
Not open for further replies.
16 comments
Complete the update first and then go with the installation

Should work

---------- Post added at 10:25 PM ---------- Previous post was at 10:25 PM ----------

Complete the update first and then go with the installation

Should work
 
Vi edit
:wq to exit it does not work

---------- Post added at 04:45 PM ---------- Previous post was at 04:41 PM ----------

Do. I need this.for wordprees?
Just sql on My vps
I install.it with sql and its running
new post publish not working and Categories
Not working
Thanks for the help
 
actually I don't know but yum install phpmyadmin is not the right way to install phpmyadmin since its a pure php script just download it and upload it to you /public_html/ folder.

access it via browser. use your mysql username and password.
 
Who newbe here

---------- Post added at 04:59 PM ---------- Previous post was at 04:50 PM ----------

Haveing problems install Wordpress on My vps
Its sql and Nothing working new post Categories and publish not working
 
So if its an issue with the db, have you tried setting another db to test?

Was your wordpress working before? Or is it on a fresh install?

Cheers,
Ryan
 
First make sure your server has the needed modules for phpmyadmin.

If your already using script with mysql then the mysql extension is fine..

Do the following in case
Code:
yum -y install php-mcrypt

Then all you do next is upload your phpmyadmin script from http://www.phpmyadmin.net/home_page/index.php

And once uploaded run the setup (yourdomain/phpmyadminfolder/setup/) and just create the config and load it to your phpmyadmin folder.

Once done (you can read docs for above) login to root account and you are good to go.
 
How you are trying to install wordpress(any automated script or manual installation)? Also whats the error you have got while trying to install wordpress?
 
If you install phpmyadmin via Yum you need to edit the config file so you can access it

edit
PHP:
/etc/httpd/conf.d/phpmyadmin.conf

PHP:
<Directory "/usr/share/phpmyadmin">
  Order Deny,Allow
  Deny from all
  Allow from all
</Directory>
 
after unzip phpmyadmin into /var/www/html folder
then follow those steps hope your problem will be solved
1. mkdir -p /var/lib/php/session
chmod 777 /var/lib/php/session

2. edit /etc/php.ini and set:
session.save_path = /tmp

and install
yum -y install php-mbstring php-mcrypt
 
Status
Not open for further replies.
Back
Top