nel mio caso
/gallery/install/steps/SystemChecksStep.class
il codice incriminato dovrebbe essere [righe 174-195]
l'ultimo comando nell'array del foreach è proprio lui, CHMOD !!!
Codice PHP:
/* Make sure filesystem operations are allowed */
$missingFilesystemFunctions = array();
foreach (array('fopen', 'fclose', 'fread', 'fwrite', 'file', 'copy', 'rename', 'readfile',
'file_get_contents', 'copy', 'move_uploaded_file', 'file_exists', 'tempnam', 'glob',
'closedir', 'stat', 'unlink', 'rmdir', 'mkdir', 'getcwd', 'chdir', 'opendir',
'readdir', 'chmod') as $function) {
if (!function_exists($function)) {
$missingFilesystemFunctions[] = $function;
}
}
if (!empty($missingFilesystemFunctions)) {
$templateData['check'][] =
array('title' => _('Filesystem Operations'),
'error' => true,
'notice' => sprintf(
_('Error: Essential filesystem operations are disabled in your PHP by ' .
'the <b>disabled_functions</b> parameter in php.ini. You must allow ' .
'these functions before Gallery will run. These functions are ' .
'missing: %s.'),
implode(', ', $missingFilesystemFunctions)));
$failCount++;
} /* skip showing 'success' for this one */
grazie ciao
EDIT:
ho provato a togliere il check su chmod
ed ho installato gallery !!!!
però (com'era prevedibile) non funziona
Error
Error (ERROR_PLATFORM_FAILURE) :
http://moanin.altervista.org/gallery/main.php
il mio obbiettivo è l'embedding (è inglese ? ) con wordpress, se riuscissi a farlo interfacciare sarei a posto ...