Posted by gosha bine on 06/30/07 11:10
Markus wrote:
> Hello
>
> I ran into the commonly known problem that under safe_mode it is
> possible to create a directory with mkdir(), but impossible to create a
> subdirectory inside the first one:
>
> 1 $path = $_SERVER['DOCUMENT_ROOT'].'/cache';
> 2 mkdir($path, 0755);
> 3 chmod($path, 0777);
> 4 mkdir($path.'/subdir', 0755);
> [snip]
The classic way to work around a "safe mode" is to create your php files
dynamically instead of uploading them. I.e. you upload one single
"unroll" script that generates all worker scripts and saves them to
files. Since those generated scripts are owned by apache, they won't
have any trouble accessing files that they create.
--
gosha bine
extended php parser ~ http://code.google.com/p/pihipi
blok ~ http://www.tagarga.com/blok
[Back to original message]
|