in reply to XSLoader can't load Storable.dll

You don't show the permissions of the two top-level directories themselves. I would suspect that there are bad permissions on the Storable/ direcory. What does this show:
ls -ld Data/ Storable/

Dave.

Replies are listed 'Best First'.
Re^2: XSLoader can't load Storable.dll
by louhevly (Novice) on Feb 07, 2017 at 05:51 UTC

    Here you go:

    user:/usr/home/louhevly/lib/perl5/5.22/x86_64-cygwin-threads/auto $ ls -ld Data/ Storable/ drwxr-xr-x 1 user Ninguno 0 Jan 25 08:03 Data// drwxr-xr-x 1 user Ninguno 0 Jan 25 08:03 Storable//
      Well those permissions look fine. Have you tried running the script directly from the command line, or is it being invoked by apache?

      Dave.

        Yes, it runs fine from the command line. According to Windows task manager the username it's running under is "user", which is me. ps seems to tell a different story:

        $ ps -Wa | grep Apache PID PPID PGID WINPID TTY UID STIME COMMAND 3748 0 0 3748 ? 0 07:22:19 C:\usr\local\apache\Apache\ +Apache.exe

        Thanks again for your help