Forum Moderators: coopster

Message Too Old, No Replies

mySQL database administration scripts?

         

sun818

7:25 pm on Dec 4, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Hi, I am using a popular web host that only allows shell access to mySQL. Can anyone recommend a free db admin script that will let me do basic functions that will at least let me select, update, delete, truncate, and drop?

jatar_k

7:30 pm on Dec 4, 2002 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



aren't phpmyadmin and mysqlfront free?

lorax

7:34 pm on Dec 4, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



... only allows shell access to mySQL

Really? Would they allow you to use PHPMyAdmin?

sun818

7:37 pm on Dec 4, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



I should clarify - I don't the webhost objects to my using a script -- they don't provide one by default. I'm not familiar with mySQL so I appreciate the suggestions for phpmyadmin and mysqlfront.

lorax

7:41 pm on Dec 4, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



I would highly recommend PHPMyAdmin. It's a very handy and easy to use script. Robust and offers things like table & data dumps, imports, SQL queries and table/data optimization.

jatar_k

7:45 pm on Dec 4, 2002 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



I agree, I think PHPMyAdmin is the better one but I know some members prefer mysql front.

amue1977

7:48 pm on Dec 4, 2002 (gmt 0)

10+ Year Member



They should allow you to phpmyadmin.
After all you have to acces mysql on your pages, and imho the easiest way is php.
phpmyadmin is just that . a bunch of php scripts to handle your db.

Using it really is easy: just copy to your server and edit the mysql server part in config.inc.php. It has a lot of comments that should get you there.

Easy Testing: put a php file on your server like
<?php
phpinfo();
?>

name it test.php or whatever and call it from your browser. It will give you all the environment data on Php and includes MYSQL info. If that's there, then myadmin should work.

sun818

8:51 pm on Dec 23, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Finally had my webhost install phpMyAdmin. Very cool. I have to admit, its a lot easier using a GUI to delete a row rather than having to type out the SQL. Thank you everyone for your recommendation!