'; echo '
'; echo '
'; echo '

'. $extension . '

'; echo '
'; echo '
'; echo 'Installed'; echo '
'; }else{ echo '
'; echo '
'; echo '
'; echo '

'. $extension . '

'; echo '
'; echo '
'; echo 'Missing'; echo '
'; } } function checkFunction($function) { if (function_exists($function)) { echo '
'; echo '
'; echo '
'; echo '

'. $function . '

'; echo '
'; echo '
'; echo 'Installed'; echo '
'; }else{ echo '
'; echo '
'; echo '
'; echo '

'. $function . '

'; echo '
'; echo '
'; echo 'Missing'; echo '
'; } } function getFilePermission($file) { if (file_exists($file)) { $length = strlen(decoct(fileperms($file)))-3; if($file{strlen($file)-1}=='/') { $name = "Folder"; }else{ $name = "File"; } if (is_writable($file)) { echo '
'; echo '
'; echo '
'; echo '

'. $file . 'Permissions: ' . substr(decoct(fileperms($file)),$length) . '

'; echo '
'; echo '
'; echo $file . ' is writable!'; echo '
'; }else{ echo '
'; echo '
'; echo '
'; echo '

'. $file . '

'; echo '
'; echo '
'; echo $file . ' is NOT writable! Please change the permissions to make it writtable by the PHP User.'; echo '
'; } } } ?> Requirement Checker

Check Requirements & Permissions

'; //PHPINFO echo '
'; echo '
'; echo '

PHP Info

'; echo '
'; echo '
'; echo phpinfo(); echo '
'; ?>