Hi people,

I'm trying to get a script to create a few directories on a webserver, and unzip a file or two.

my script works fine locally, when accessed via shell.

When accessd via apache, it fails :(

What to do?

Here's my code:

mkdir($School, 0755);
chdir($School) || die( "Cannot chdir (1)" );

the $School directory does not exist!...