I have a, rather annoying, problem.
My series files are on NAS, which needs about one - two minutes after system start (htpc system), to be available. By this time, the plugin has already decided that the drive is not available and the plugin is "empty" (well, not really empty, but the files are not displayed), so I have to make a local scan. Everytime. Takes about 10 minutes.
This was first introduced in 0.6 (I guess....). Maybe there is a possibility to make a short delay before scanning for files - maybe even configurable ? Otherwise this is really nasty... ;-)
mcbelly
I haven't yet started using this plugin but I ran into the same problem with MediaPortal in general. I decided that I needed to delay MediaPortal from starting until I had a chance to map the network drive on each boot (this solves the problem of MediaPortal not seeing the files on the server). I also needed to delay the mapping of the network drive until my computer finished establishing a wireless connection to my network. My solution is the following.
1. Disconnect network drive (so Windows will not auto connect the drive on every boot.)
2. Create a batch file named Startup.bat. I saved my file in "My Documents" and then created a shortcut to it in the Startup folder located in the Start Menu. You could also just save the file in the Startup folder in the Start Menu.
3. Tell MediaPortal to not start automatically on Windows bootup.
4. Populate the batch file with the following:
@ECHO OFF
cls
Echo PLEASE WAIT....STARTING MEDIAPORTAL
rem The following line causes an approx 60 second delay
ping 127.0.0.1 -n 60 >NUL
net use <driveletter>: \\<servername>\<sharename> /PERSISTENT:NO
start "" "C:\Documents and Settings\All Users\Start Menu\Programs\MediaPortal\MediaPortal.lnk"
5. The last line (beginning with "start") contains the full path the the MediaPortal shortcut located in the Start Menu. If your shortcut is located somewhere else, the edit the line to point to your shortcut file.
Hopefully this helps.
Thanks a lot, that really solved it - I really could have gotten that solution myself....
Germany