XMBC and MySQL
|
8th Sep, 2013, 09:44 AM
Post: #7
|
|||
|
|||
RE: XMBC and MySQL
I suppose the problem will be in the defaults of mysql accepting connections only from localhost for you user xbmc. You can check that by using the "mysql" tool.
Code: mysql -h localhost -u XXXX -p if there is no "%" in the "Host" column for a specific user (% means any host), you can update the table with Code: update user set Host='%' where User='youruser'; check some guides or install Windows client to manage mysql DBs - http://dev.mysql.com/downloads/tools/workbench/ Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
XMBC and MySQL - rbthompsonv - 3rd Sep, 2013, 11:34 PM
RE: XMBC and MySQL - mk01 - 3rd Sep, 2013, 11:58 PM
RE: XMBC and MySQL - rbthompsonv - 4th Sep, 2013, 10:00 PM
RE: XMBC and MySQL - rbthompsonv - 5th Sep, 2013, 07:39 AM
RE: XMBC and MySQL - rikardo1979 - 4th Sep, 2013, 12:15 AM
Re: XMBC and MySQL - rbthompsonv - 4th Sep, 2013, 12:29 PM
RE: XMBC and MySQL - mk01 - 8th Sep, 2013 09:44 AM
|