Hey all, I was just wondering if anyone has seen PlexConnect fail at cfg = Settings.CSettings() in the PlexConnect.py file.
I found through the use of print statements and sleep that the crash occurs at the line of cfg= Settings.Settings(). Below is excerpt of the file I modified for troubleshooting.
def startup():
global procs
global pipes
global param
global running
dprint('PlexConnect', 0, "I made it here!")
time.sleep(3)
# Settings
cfg = Settings.CSettings()
dprint('PlexConnect', 0, "but i did not make here :( ")
time.sleep(3)
param['CSettings'] = cfg

I am running on windows server 2012 r2 and python 2.7.
I hope i didn't miss anything silly in the instructions but i have read them a few times and done many google searches with no issues that matched exactly mine. I have a feeling it is going to be something where windows server 2012 is blocking the code execution to "protect me" but I am not sure where to disable that. I did find that when going to properties of the file, it said that the file is from another computer and is being blocked but I removed the block on that file but still crashes in the same place.
If anyone has any ideas and possibly log location, please let me know!
Thanks!