J
Jesper Olsen
From a mod_ruby cgi_script I try to use
Dir.mkdir("mydir")
to create a new directory via a web application.
For some reason this fails - this is at $SAFE=1
I tried untaint on the mkdir argument, but it makes
no difference.
How can I create directories in this situation?
Cheers
Jesper
Dir.mkdir("mydir")
to create a new directory via a web application.
For some reason this fails - this is at $SAFE=1
I tried untaint on the mkdir argument, but it makes
no difference.
How can I create directories in this situation?
Cheers
Jesper