I followed the wiki guide (not the lifehacker one) and it all seemed go fine. However, now it says I have 87 TV shows (correct) but 0 episodes. It only sees 2 of about 150 movies. The art is still all there seemingly because the screensaver shows them all (not sure if that means anything). I went in to each source and edited it to tell it what is there (movies, tv shows, etc.) and everything LOOKS right.
I have stripped and reloaded MySQL and done the set up twice. What have I missed? What further information could I provide you to assist in helping me?
HOW-TO synchronize your XBMC Media Center between every room in the house: Lifehacker
narcosleepy
Junior Member Posts: 1 Joined: Mar 2012 Reputation: 0 |
2012-03-26 06:21
Post: #361
|
| find |
thrak76
Moderator Joined: Mar 2011 Reputation: 21 Location: Lake Michigan Shoreline |
2012-03-26 07:15
Post: #362
(2012-03-26 06:21)narcosleepy Wrote: I followed the wiki guide (not the lifehacker one) and it all seemed go fine. However, now it says I have 87 TV shows (correct) but 0 episodes. It only sees 2 of about 150 movies. The art is still all there seemingly because the screensaver shows them all (not sure if that means anything). I went in to each source and edited it to tell it what is there (movies, tv shows, etc.) and everything LOOKS right. This sounds similar to the problem i was having. I have a small thread about this here. Basically, the fix for me was to make sure the sources were set as smb:\\ shares, and not to local win32 paths (like \\your computer\Users\blahblah\movies). Showing the art for the "screensaver" is unrelated, because your skin probably points to a specific folder. Quick Links: [Debug Log] [userdata] [advancedsettings.xml] [Add videos to the Library] [Import/Export] |
| find |
TheSource
Junior Member Posts: 1 Joined: Mar 2012 Reputation: 0 |
2012-03-27 17:14
Post: #363
Installed v11 + MySQL on my server (atom via remote desktop) and installed v11 on my desktop linking to my server (movies, info & fan art/thumbnails).
Now I notice 2 problems after I run XMBC on my desktop - The set content settings are not remembered for both my series and movies, both show NONE, after saving the setting over and over again.This issues also causes that the library is not scanned on start-up (on my DT). - Most likely related; after I rightclick on a movie I cannot rescan it (or manual) to make sure the right fanart is linked to it. To be 100% clear; XBMC on my server is not running (I suppose this is not needed). Does anybody have a solution? |
| find |
macdo03
Junior Member Posts: 5 Joined: Mar 2012 Reputation: 0 |
2012-03-30 12:51
Post: #364
Ok, very easy to follow instructions thanks!
My concern is that my server isn't on all the time, I use the Advanced WOL plugin to wake my server when I start XBMC. How does the syncing work if the server isn't on or if the server isn't immediatly available. Will XBMC freeze or will it just wait until the MySQL database is available and then sync. In otherwords, is all the info stored locally and synced via MySQL or is it only stored on MySQL. Thanks |
| find |
thothom
Junior Member Posts: 17 Joined: Apr 2012 Reputation: 0 |
2012-04-03 17:04
Post: #365
I can't get this working either. Everything is correct in xbmc but it's just not populating mysql databases. Help needed.
| Windows 7 Professional x86_64 | Ubuntu 13.04 x86_64 | | Gateway DX4710-UB301A | Intel Core2 Quad Q6700@2.66Ghz w/6 Gb's of ram | | OCZ-Vertex3 120 Gb SSD | Western Digital 160 Gb HDD | Western Digital 640 Gb HDD | | Nvidia GeForce GTX 550 Ti | |
| find |
Finchy
Senior Member Posts: 154 Joined: Dec 2010 Reputation: 0 |
2012-04-03 19:31
Post: #366
Nah, I couldn't get it working either. Spent ages following the guides to the letter. It just won't work. I've tried it with MySQL on both Windows Home Server and a Qnap NAS drive but neither work. I got close; one of my PCs connected at one stage but the ATV never did, and as soon as I upgraded from XBMC 10 it wouldn't work again.
|
| find |
kri kri
Senior Member Posts: 194 Joined: Sep 2008 Reputation: 0 |
2012-04-04 04:04
Post: #367
Did you guys follow the Mysql wiki? This lifehacker guide is out of date. If it doesn't work disable your firewalls and check again.
|
| find |
thothom
Junior Member Posts: 17 Joined: Apr 2012 Reputation: 0 |
2012-04-04 15:48
Post: #368
I got it working w/o xbmc_video and xbmc_music schema, then I added the schema and the same thing happenes, the database does not get populated so I am unable to ad indexes. And when I try to bind my address to my local ip address I get a access denied, permissons error.
| Windows 7 Professional x86_64 | Ubuntu 13.04 x86_64 | | Gateway DX4710-UB301A | Intel Core2 Quad Q6700@2.66Ghz w/6 Gb's of ram | | OCZ-Vertex3 120 Gb SSD | Western Digital 160 Gb HDD | Western Digital 640 Gb HDD | | Nvidia GeForce GTX 550 Ti |
(This post was last modified: 2012-04-04 15:52 by thothom.)
|
| find |
noner
Senior Member Posts: 115 Joined: May 2011 Reputation: 0 |
2012-04-04 20:55
Post: #369
Aside from firewall, MySQL user also needs permission to connect FROM the host XBMC is running on. If the user only has permission to connect from PC1, you cant use the same settings to connect from PC2
select user, host from mysql.user will confirm for you if the user has permission to connect from a specific host In my setup notice the "%" in the host column, which means that the user xbmc is allowed to connect from any host. If I wanted xbmc only to be able to connect from my internal network, the host value would show '192.168.0.%' which would mean any ip address that begins with 192.168.0 +------+-----------+ | user | host | +------+-----------+ | xbmc | % |
(This post was last modified: 2012-04-05 01:40 by noner.)
|
| find |
noner
Senior Member Posts: 115 Joined: May 2011 Reputation: 0 |
2012-04-04 21:07
Post: #370
(2012-04-04 15:48)thothom Wrote: I got it working w/o xbmc_video and xbmc_music schema, then I added the schema and the same thing happenes, the database does not get populated so I am unable to ad indexes. And when I try to bind my address to my local ip address I get a access denied, permissons error. Unless you are using multiple profiles, you dont need to specify the schema. Make sure the xbmc user has permission to create databases in mysql, and when XBMC starts it will create everything for you For permissions, see my earlier post, the user needs permissions to connect FROM hosts as well as permissions on what they are able to do once connected Easiest way grant all on *.* to 'xbmc'@'%' identified by 'YOURPASSWORD';
(This post was last modified: 2012-04-05 01:41 by noner.)
|
| find |

![[Image: all-fanart.jpg]](http://trakt.tv/user/evan/widgets/watched/all-fanart.jpg)
Search
Help