Fix error management
This commit is contained in:
parent
dbefb93e0f
commit
6f3c839d65
@ -771,6 +771,12 @@ class Website extends CommonObject
|
|||||||
$website = $this;
|
$website = $this;
|
||||||
|
|
||||||
dol_mkdir($conf->website->dir_temp);
|
dol_mkdir($conf->website->dir_temp);
|
||||||
|
if (! is_writable($conf->website->dir_temp))
|
||||||
|
{
|
||||||
|
setEventMessages("Temporary dir ".$conf->website->dir_temp." is not writable", null, 'errors');
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
$srcdir = $conf->website->dir_output.'/'.$website->ref;
|
$srcdir = $conf->website->dir_output.'/'.$website->ref;
|
||||||
$destdir = $conf->website->dir_temp.'/'.$website->ref;
|
$destdir = $conf->website->dir_temp.'/'.$website->ref;
|
||||||
|
|
||||||
@ -790,7 +796,7 @@ class Website extends CommonObject
|
|||||||
$fp = fopen($filesql,"w");
|
$fp = fopen($filesql,"w");
|
||||||
if (empty($fp))
|
if (empty($fp))
|
||||||
{
|
{
|
||||||
setEventMessage("Failed to create file ".$filesql, null, 'errors');
|
setEventMessages("Failed to create file ".$filesql, null, 'errors');
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user