2013-02-25, 22:27
click here -> MySQL (wiki)
(2013-02-28, 03:26)SandmanCL Wrote: This guide does not cover the synchronization of thumbnails. Currently I am using rsync to make sure the Thumbnails directory is in sync between my XBMC master and my ATV2 clients. This worked perfectly on Eden, but with Frodo I need to additionally sync Textures13.db, but even after doing this I need to restart XBMC on the ATV clients in order for the Thumbnails to show up.
I feel this is a step in the wrong direction and I'm hoping I'm missing some crucial point that would make it easier.
(2013-03-05, 01:30)mccarneychris Wrote: Hi Eddie,
How are you sharing the files to the other xbmc's? You will need to set up SMB or similar and have the sources added to all XBMC's in the same way, even on the local machine.
Once you have done this you can then scan the library again and it will bring up the 'TV SHOWS' and 'MOVIES' on all of the XBMC installs.
hope this helps.
(2013-02-28, 03:26)SandmanCL Wrote: This guide does not cover the synchronization of thumbnails. Currently I am using rsync to make sure the Thumbnails directory is in sync between my XBMC master and my ATV2 clients. This worked perfectly on Eden, but with Frodo I need to additionally sync Textures13.db, but even after doing this I need to restart XBMC on the ATV clients in order for the Thumbnails to show up.
I feel this is a step in the wrong direction and I'm hoping I'm missing some crucial point that would make it easier.
(2013-03-07, 19:20)rflores2323 Wrote: I am wanting to do this via Mysql option on ubuntu 12.04 however I am on an atv1 for my main home theater with eden and my 3 x atv2 are on frodo (bedrooms). It shows on the wiki that all the boxes have to be on the same build.
any work around? Has anyone tried to sync a box on eden and frodo?
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| master usermusic32 |
| master uservideo75 |
| mysql |
| performance_schema |
| test |
+--------------------+
6 rows in set (0.08 sec)
mysql> select count(*) from master uservideo75.movie;
ERROR 1046 (3D000): No database selected
mysql> select count(*) from master uservideo75.tvshow;
ERROR 1046 (3D000): No database selected
mysql> select count(*) from master usermusic32;
ERROR 1046 (3D000): No database selected
mysql>
(2013-03-19, 23:39)Tyler Durden Wrote: What am I doing wrong !?
Code:mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| master usermusic32 |
| master uservideo75 |
| mysql |
| performance_schema |
| test |
+--------------------+
6 rows in set (0.08 sec)
mysql> select count(*) from master uservideo75.movie;
ERROR 1046 (3D000): No database selected
mysql> select count(*) from master uservideo75.tvshow;
ERROR 1046 (3D000): No database selected
mysql> select count(*) from master usermusic32;
ERROR 1046 (3D000): No database selected
mysql>
The databases appear to have been made, but I cannot get a count from them.
Help!
(2013-03-20, 21:24)SchattenMann Wrote: i was wondering: why does the wiki guide doesn't say the user can simply export the SQLite database and import it on MySQL...
I mean it took me 15 min to do it after i got tired of fussing around with Import/Export database...