Issues With phpmyadmin on Linux Single Core VDS - Again

Ask questions about dedicated servers here and we and other users will do our best to answer them. Please also refer to the self-help section for tutorials and answers to the most commonly asked questions.
Post Reply
Oneleg
Staff
Staff
Posts: 225
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Sat Apr 05, 2014 10:48 pm

Issues With phpmyadmin on Linux Single Core VDS - Again

Post by Oneleg »

I made a thread awhile back asking for answers with an issue I was having. But forgot to ever check it because I got busy with work.

So I tried a fresh reinstall of the OS on the machine and just went through the process of installing MySQL, phpmyadmin, and php5 on Ubuntu through Putty. After going through the install, following each step word for word. I logged into phpmyadmin and got this notification on the bottom.

Image

I know I installed php5 as well as mcrypt because I put this in the console when the step came and it said the installation was successful.

Code: Select all

sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt
Either way, I can upload the logs from Putty if it'd be useful for debugging. Is the guide for the installation out of date? Is there something else I need to do still?
User avatar
rymax99
This is my homepage
This is my homepage
Posts: 143
Joined: Sun Feb 02, 2014 2:08 pm
Location: Florida
Contact:

Re: Issues With phpmyadmin on Linux Single Core VDS - Again

Post by rymax99 »

Try restarting Apache - 'service apache2 restart'.
User avatar
Edge100x
Founder
Founder
Posts: 12948
Joined: Thu Apr 18, 2002 11:04 pm
Location: Seattle
Contact:

Re: Issues With phpmyadmin on Linux Single Core VDS - Again

Post by Edge100x »

Try:

Code: Select all

apt-get install php5-mcrypt
mv -i /etc/php5/conf.d/mcrypt.ini /etc/php5/mods-available/
php5enmod mcrypt
service apache2 restart
Oneleg
Staff
Staff
Posts: 225
Joined: Sat Apr 05, 2014 10:48 pm

Re: Issues With phpmyadmin on Linux Single Core VDS - Again

Post by Oneleg »

Edge100x wrote:Try:

Code: Select all

apt-get install php5-mcrypt
mv -i /etc/php5/conf.d/mcrypt.ini /etc/php5/mods-available/
php5enmod mcrypt
service apache2 restart
Alright I got to the mv -i option and got this

Code: Select all

mv: invalid option -- '/'
Try 'mv --help' for more information.
User avatar
Edge100x
Founder
Founder
Posts: 12948
Joined: Thu Apr 18, 2002 11:04 pm
Location: Seattle
Contact:

Re: Issues With phpmyadmin on Linux Single Core VDS - Again

Post by Edge100x »

This means you made a typo :). I recommend copying-and-pasting it. You can copy it in Windows by selecting it and hitting control-C, and paste it into a PuTTY window by right-clicking inside the window.
Oneleg
Staff
Staff
Posts: 225
Joined: Sat Apr 05, 2014 10:48 pm

Re: Issues With phpmyadmin on Linux Single Core VDS - Again

Post by Oneleg »

Edge100x wrote:This means you made a typo :). I recommend copying-and-pasting it. You can copy it in Windows by selecting it and hitting control-C, and paste it into a PuTTY window by right-clicking inside the window.
Alright, so I did that. And this time I got this

Code: Select all

mv: cannot stat ‘/etc/php5/conf.d/mcrypt.ini’: No such file or directory
User avatar
Edge100x
Founder
Founder
Posts: 12948
Joined: Thu Apr 18, 2002 11:04 pm
Location: Seattle
Contact:

Re: Issues With phpmyadmin on Linux Single Core VDS - Again

Post by Edge100x »

Ok. You can proceed to the next step.
Oneleg
Staff
Staff
Posts: 225
Joined: Sat Apr 05, 2014 10:48 pm

Re: Issues With phpmyadmin on Linux Single Core VDS - Again

Post by Oneleg »

Edge100x wrote:Ok. You can proceed to the next step.
Alright the error message showing that mcrypt is missing is gone now. However a connection can't seem to be established with the Gmod server I'm trying to link this too.

I have Mysqloo and libmysql installed, and I created a new user and table for the server with the host of that user as the server's IP.
Post Reply