When I try to login It gives this error message
Software error:
Can't exec:
Table './admin_xfs/Sessions' is marked as crashed and should be repaired at Modules/DataBase.pm line 55.
How to fix it.Please help me.Thanks
XFileSharing Pro - Table './admin_xfs/Sessions' is marked as crashed how to fix
If jesse202 command doesnt work , change it like this:
mysqlcheck -u(xfs db user) -p(xfs db password) --all-databases -r
Do not put space between -u and the user or -p and the password .
The final command should look like this:
mysqlcheck -uuser -ppassword --all-databases -r
or
mysqlcheck -uuser -ppassword -r --all-databases
Not sure on the correct syntax . But one of both should work perfectly .
mysqlcheck -u(xfs db user) -p(xfs db password) --all-databases -r
Do not put space between -u and the user or -p and the password .
The final command should look like this:
mysqlcheck -uuser -ppassword --all-databases -r
or
mysqlcheck -uuser -ppassword -r --all-databases
Not sure on the correct syntax . But one of both should work perfectly .
You have to put a space between -u and user but not between -p and passwordStefanzm wrote:If jesse202 command doesnt work , change it like this:
mysqlcheck -u(xfs db user) -p(xfs db password) --all-databases -r
Do not put space between -u and the user or -p and the password .
The final command should look like this:
mysqlcheck -uuser -ppassword --all-databases -r
or
mysqlcheck -uuser -ppassword -r --all-databases
Not sure on the correct syntax . But one of both should work perfectly .

So it'll be : mysqlcheck -u user -ppassword -r --all-databases
cf : http://dev.mysql.com/doc/refman/5.0/fr/ ... check.html