On Fri, 2005-01-28 at 15:59 -0500, John Deighan wrote: > We are receiving the following error message, and have no idea what is > going wrong. Our script uses the Storable module, but the error occurs only > when our script attempts to use the freeze() function in that module. I > assume that the problem occurs when the AutoLoader tries to load that > function or a function/dll that it uses. Can anyone give us a clue what's > going wrong?
I had the same problem with the Storable module. But only when I was running the code under PerlEx. It worked nicely under perl.exe. Found out that it worked in PerlEx if I removed the AutoLoader functionality, but that was just too much of a hack to use in a production environment. Luckily I found out that I could use the FreezeThaw module with minimal changes to the code, since FreezeThaw also exports the thaw and freeze methods that I used from Storable. (Yeah, I had to make a script that converted old data from Storable format to FreezeThaw, but that worked since again, luckily, Storable worked with perl.exe). Regards Tore Busch -- Tore Busch mailto:tore(at)busch.priv.no In the Beginning there was nothing, which exploded. Key fingerprint = 13CF 752E D5F3 A95A 6A8D 5F62 9A94 2387 C3FC AFC1 _______________________________________________ Perl-Win32-Users mailing list [email protected] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
