@Hell_Angel if not a VirtualBox network adapter then some other kind. VMWare, VPN client or server, RAS dialup feature enabled - do you have anything like that?So what is the network adaptor with the 91.158.65.78 address then?
@Hell_Angel if not a VirtualBox network adapter then some other kind. VMWare, VPN client or server, RAS dialup feature enabled - do you have anything like that?So what is the network adaptor with the 91.158.65.78 address then?
If you're connecting to the external IP and it's not static maybe your ISP is changing the IP address issued to you? That would explain why a fresh install picks up the correct IP but after a week that IP starts to point to an entirely different endpoint.After I installed everything from the scratch, it worked for a week, but now started again
If you're using a modified version of MediaPortal or TV Server then you need to get support in the thread that you got the modified version from. The people that hang out in that thread are the only people who are going to be familiar enough with the modification to know what is affected, how it should work etc. etc. etc.I am not sure this is the right place for this...
Well done for finding this.In the output window of Visual Studio it says that the TVService.exe exited with Code 1 (0x1).
Not right now. I'll have to do some googling to see if VS can be configured to break on exit, so we can find out where that call is coming from.Any ideas how I could find out where the error happenes and/or how to get it in Visual Studio?
private bool CleanTimeShiftFiles()
{
try
{
Log.Write(@"card: delete timeshift files {0}\{1}", _folder, _fileName);
string[] files = Directory.GetFiles(_folder);
for (int i = 0; i < files.Length; ++i)
{
if (files[i].IndexOf(_fileName) >= 0)
{
Log.Write("card: trying to delete {0}", files[i]);
File.Delete(files[i]);
Log.Write("card: deleted file {0}", files[i]);
}
}
}
catch (Exception ex)
{
Log.Write(ex.ToString());
}
catch
{
return false;
}
return true;
}