mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 09:13:02 +02:00
check for availability of local/combined (and try to create it if not available)
git-svn-id: http://piwigo.org/svn/trunk@9594 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -79,6 +79,27 @@ class Template {
|
||||
}
|
||||
}
|
||||
|
||||
if (!isset($conf['combined_dir_checked']))
|
||||
{
|
||||
mkgetdir(PWG_COMBINED_DIR, MKGETDIR_DEFAULT&~MKGETDIR_DIE_ON_ERROR);
|
||||
if (!is_writable(PWG_COMBINED_DIR))
|
||||
{
|
||||
load_language('admin.lang');
|
||||
fatal_error(
|
||||
sprintf(
|
||||
l10n('Give write access (chmod 777) to "%s" directory at the root of your Piwigo installation'),
|
||||
PWG_COMBINED_DIR
|
||||
),
|
||||
l10n('an error happened'),
|
||||
false // show trace
|
||||
);
|
||||
}
|
||||
if (function_exists('pwg_query')) {
|
||||
conf_update_param('combined_dir_checked', 'true');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$compile_dir = $conf['local_data_dir'].'/templates_c';
|
||||
mkgetdir( $compile_dir );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user