Quote:
Originally Posted by wally
Does anyone know the command line for this ?? (i dont have a phpadmin)
|
What type of shell access do you have and is this a dedicated/vps/vhost server?
If you have a dedicated/vps server, you can do the following:
1. cd to database folder or type the entire path into the command
typical install of mysql: cd /var/lib/mysql/dbnamehere
myisamchk -r *
myisamchk -o *
myisamchk -r /path/to/db/folder/ *
myisamchk -o /path/to/db/folder/ *
myisamchk --help (will list the switches and their meanings)
2. on a vhost server with improper permissions, you wont be able to run those commands, so i will not get into that.