Re: mkdir() and safe_mode
- From: gosha bine <stereofrog@xxxxxxxxx>
- Date: Sat, 30 Jun 2007 13:10:47 +0200
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
.
- Prev by Date: Re: Array_merge() Question
- Next by Date: Re: To allow access only from the designated site.
- Previous by thread: The structure of PHP/Web Application coding.
- Next by thread: $_GET variable got empty when running PHP as CGI
- Index(es):
Relevant Pages
|