As I wrote in comments, readfile() is disabled by including it in disable_functions php.ini directive. It has nothing to do with safe mode. Try checking which functions are disabled and see if you can use any other filesystem function(-s) to do what readfile() does.
To see the list of disabled functions, use:
var_dump(ini_get('disable_functions'));
You might use:
// for any file
$file = fopen($filename, 'rb');
if ( $file !== false ) {
fpassthru($file);
fclose($file);
}
// for any file, if fpassthru() is disabled
$file = fopen($filename, 'rb');
if ( $file !== false ) {
while ( !feof($file) ) {
echo fread($file, 4096);
}
fclose($file);
}
// for small files;
// this should not be used for large files, as it loads whole file into memory
$data = file_get_contents($filename);
if ( $data !== false ) {
echo $data;
}
// if and only if everything else fails, there is a *very dirty* alternative;
// this is *dirty* mainly because it "explodes" data into "lines" as if it was
// textual data
$data = file($filename);
if ( $data !== false ) {
echo implode('', $data);
}
file_get_contents()? – Teneff Jun 13 '11 at 10:32readfile()is not really affected by safe mode. Docs say that file and dir must belong to the same user that executes script, that's what is checked in safe mode. In this case,readfile()is completely disabled, which is rather being done bydisable_functions. – binaryLV Jun 13 '11 at 12:16