![]() |
|
HOW-TO synchronize your XBMC Media Center between every room in the house: Lifehacker - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Announcements, Info, and General Discussion (/forumdisplay.php?fid=85) +--- Forum: Tips, tricks, and step by step guides (/forumdisplay.php?fid=110) +--- Thread: HOW-TO synchronize your XBMC Media Center between every room in the house: Lifehacker (/showthread.php?tid=80829) |
RE: HOW-TO synchronize your XBMC Media Center between every room in the house: Lifehacker - narcosleepy - 2012-03-26 06:21 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? RE: HOW-TO synchronize your XBMC Media Center between every room in the house: Lifehacker - thrak76 - 2012-03-26 07:15 (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. RE: HOW-TO synchronize your XBMC Media Center between every room in the house: Lifehacker - TheSource - 2012-03-27 17:14 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? RE: HOW-TO synchronize your XBMC Media Center between every room in the house: Lifehacker - macdo03 - 2012-03-30 12:51 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 RE: HOW-TO synchronize your XBMC Media Center between every room in the house: Lifehacker - thothom - 2012-04-03 17:04 I can't get this working either. Everything is correct in xbmc but it's just not populating mysql databases. Help needed. RE: HOW-TO synchronize your XBMC Media Center between every room in the house: Lifehacker - Finchy - 2012-04-03 19:31 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. RE: HOW-TO synchronize your XBMC Media Center between every room in the house: Lifehacker - kri kri - 2012-04-04 04:04 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. RE: HOW-TO synchronize your XBMC Media Center between every room in the house: Lifehacker - thothom - 2012-04-04 15:48 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. RE: HOW-TO synchronize your XBMC Media Center between every room in the house: Lifehacker - noner - 2012-04-04 20:55 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 | % | RE: HOW-TO synchronize your XBMC Media Center between every room in the house: Lifehacker - noner - 2012-04-04 21:07 (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'; |