unfortunately I’m having issues deploying Max 2013 on my farm. Deadline seems to be complaining about:
3dsmax startup: Error getting connection from 3dsmax: Deadline 3dsmax startup error: lightningMax.dlx does not appear to have loaded on 3dsmax startup, check that it is the right version and installed to the right place.
Is there anything I can do about this or what else to check so that Deadline does indeed load the plugin up?
Ok, so I just installed the Product Update 5 and it still fails:
I’m not using User Profiles (though I switched to them when trying to “fix” this bug).
I don’t think I’m on the 5.2 beta, but I could be wrong. The version is: Deadline Version: 5.2.0.47700, FranticX Version: 2.0.0.47694
See this snippet from the other week, when I encountered the same issue and Ryan showed a quick fix for the issue. Autodesk, got to love them
Good news! It seems like Autodesk has finally fixed the bug where passing an absolute plugin ini file via the command line was broken (it’s been broken since 2010). This is the reason we’ve been copying dl.ini to the Max root folder. I just tested with 2013 (user profiles on and off) with absolute paths, and it worked! So we’ll be including this fix in the upcoming 5.2 maintenance release.
For now, it’s a quick tweak in your 3dsmax.py plugin file. Look for these lines:
This is a workaround for 3dsmax 2010 where the ini file passed to the command line needs to be in the 3dsmax install root folder.
if self.Version >= 2010:
Just update the “if” statement to exclude 2013 and later, like this:
This is a workaround for 3dsmax 2010 where the ini file passed to the command line needs to be in the 3dsmax install root folder.
if self.Version >= 2010 and self.Version < 2013:
Save the file, and you should be good to go! Let me know if this works for you.