in reply to [error] panic: memory wrap

Ok, after fighting with this for 2 weeks i finally found a workaround.
Seems like the AutoLoader in this setup is the source of the problem.
Using selfloader instead avoids the problem.
Hence you will need to remove the following 2 lines from Storable.pm:
#use AutoLoader; #*AUTOLOAD = \&AutoLoader::AUTOLOAD;
and insert:
use SelfLoader;

Replies are listed 'Best First'.
Re^2: [error] panic: memory wrap
by Anonymous Monk on Oct 02, 2010 at 00:51 UTC
    ignore previous..

    the problem lies in the way osx ties up other resources.
    a simple sleep will give the os time to close and open.
    restart or graceful will go in conflict.

    apachectl stop
    sleep 2
    apachectl start

      Wow - same workaround solved it for me. You must have just saved me days of troubleshooting. Thankyou!!