I have videos on a NAS drive. MP seems unable to detect that it is connected sometimes - possibly due to the drive being in low power mode. It appears that MP times out too quickly when trying to access the external drive.
This did not happen in RC1 and may be related to the issue you have here.
That is a windows issue to some extent, I'm assuming you are also using a wireless connection as, for wireless, the network cannot be brought up before the user has logged in which causes drives to appear as disconnected and Mp not to recognise them.
Use this cmd file to get around the issue replacing <nas address> and <Gateway address> to your ip addresses just place in startup and set MP not to automatically start
@echo off
:waitloop
echo Waiting for wireless....
Ping 127.0.0.1 -n 2 > nul
ipconfig | find /i "<Gateway address>" >nul
if errorlevel 1 goto waitloop
:waitloop2
echo Waiting for nas....
ping <nas address> | find /i "TTL" >nul
if errorlevel 1 goto waitloop2
:connected
net use z: \\<nas address>\hdd_1_1_1 /persistent:no
net use y: \\<nas address>\hdd2 /persistent:no
echo starting....
"C:\Program Files\Team MediaPortal\MediaPortal\MediaPortal.exe"
The only configuration that is certain to work is when the MP client and MP server are from the same release.
It is sometimes possible to use MP clients from a release that is different to the MP server, but whether it works depends on the specific changes that were made between the two releases.
-- from CyberSimian in the UK
The only configuration that is certain to work is when the MP client and MP server are from the same release.
It is sometimes...
Before you create this bug report:
Make sure that your system (Windows, codecs and drivers) is up to date, matching the...