Forum Moderators: nerd Forum Coordinators: nerd
Poser 12 F.A.Q (Last Updated: 2024 Oct 22 2:54 pm)
Welcome to the Poser Forums! Need help with these versions, advice on upgrading? Etc...you've arrived at the right place!
Looking for Poser Tutorials? Find those HERE
That is peculiar. I only share my Poser 11 content runtime with P12, not the main runtime. I've had such crosstalk problems in the past with runtime folders from older Poser versions. However, the runtimes were associated with the main folders which contained the troublesome scripts, ergo those scripts had to be either moved or deleted.
Someone told me that the "bad magic number" error message means the version of Python is wrong.
So I don't think Poser is confused. I think the errors are because Poser 11 uses an older version of Python than Poser 12.
For the moment, I am just putting up with the error messages, because it's less annoying than opening my old Poser scenes and getting a ton of "missing whatever" error messages.
I've got the feeling that to use dson, one must stay with P11 just the time to make the import, and then to use it within P12. Dson is written with python2.7 max in mind, a version of python that has been kept really longer than originally planned. Can't even decompile it, since it's a weird extension and Easy Decompiler can't handle it.
๐ซ๐ฝ๐๐
(ใฃโโกโ)ใฃ
๐ฟย Win11 on i9-13900K@5GHz, 64GB, RoG Strix B760F Gamng, Asus Tuf Gaming RTX 4070 OC Edition, 1 TB SSD, 6+4+8TB HD
๐ฟย Mac Mini M2, Sonoma 14.6.1, 16GB, 500GB SSD
๐ฟย Nas 10TB
๐ฟย Poser 13 and soon 14ย โค๏ธ
Dson is a Poser 'addon', a special kind of script that is automatically loaded if it is present in any linked runtime. Reality is another. Addons are found in this folder (of any runtime): Runtime Python addons
If it is a compiled file (*.pyc), then it needs to have been compiled with the same version of Python under which you are now trying to run it.
If you don't want an addon to run when you load Poser, then remove its folder from the 'addons' folder of the linked runtime. If you want, you can put all the addons in a separate runtime which contains nothing but the addons. That way you can link Poser 11 to that runtime, but not Poser 12.
Free stuff @ย https://poser.cobrablade.net/
Snarlygribbly posted at 1:56PM Sun, 15 November 2020 - #4404739
Dson is a Poser 'addon', a special kind of script that is automatically loaded if it is present in any linked runtime. Reality is another. Addons are found in this folder (of any runtime): Runtime Python addons
If it is a compiled file (*.pyc), then it needs to have been compiled with the same version of Python under which you are now trying to run it.
If you don't want an addon to run when you load Poser, then remove its folder from the 'addons' folder of the linked runtime. If you want, you can put all the addons in a separate runtime which contains nothing but the addons. That way you can link Poser 11 to that runtime, but not Poser 12.
In my case, the python file is a *.pyd"
๐ซ๐ฝ๐๐
(ใฃโโกโ)ใฃ
๐ฟย Win11 on i9-13900K@5GHz, 64GB, RoG Strix B760F Gamng, Asus Tuf Gaming RTX 4070 OC Edition, 1 TB SSD, 6+4+8TB HD
๐ฟย Mac Mini M2, Sonoma 14.6.1, 16GB, 500GB SSD
๐ฟย Nas 10TB
๐ฟย Poser 13 and soon 14ย โค๏ธ
If you edit the poser_12 poser addon file - you should be able to stop Dson from being loaded.
you should find these lines in your poseraddon.py
for runtimePath in poser.Libraries():
_loadAddons(runtimePath)
try something like this:
for runtimePath in poser.Libraries():
if not runtimePath == "path to runtime containing Dson":
_loadAddons(runtimePath)
Locked Out
This site uses cookies to deliver the best experience. Our own cookies make user accounts and other features possible. Third-party cookies are used to display relevant ads and to analyze how Renderosity is used. By using our site, you acknowledge that you have read and understood our Terms of Service, including our Cookie Policy and our Privacy Policy.
Every time now when I launch Poser 12 i Get this error message "An errror occurred importing addon dson : ERROR: DLL load failed: The specified module could not be found.
An errror occurred importing addon Reality : ERROR: bad magic number in 'Reality': b'x03xf3rn'
An errror occurred importing addon Reality : ERROR: bad magic number in 'Reality': b'x03xf3rn'"
Those Script are installed in Poser Pro 11 and not in Poser 12. Does it mean I have to uninstall Pro 11? Thanks