私のページでこのエラーが発生します:
警告:2036行目の/home/a2297145/public_html/android/index.phpで、セキュリティ上の理由からexec()が無効になっています
コードは次のとおりです。
//
// Determine the size of a file
//
public static function getFileSize($file)
{
$sizeInBytes = filesize($file);
// If filesize() fails (with larger files), try to get the size from unix command line.
if (EncodeExplorer::getConfig("large_files") == true || !$sizeInBytes || $sizeInBytes < 0) {
$sizeInBytes=exec("ls -l '$file' | awk '{print $5}'");
}
return $sizeInBytes;
}
これを解決するのを手伝ってもらえますか?