I would like the files uploaded to the server to be deleted immediately after sending the form.
This code also works for chronoforms v6?
Thank you
This code also works for chronoforms v6?
<?php
// change the next line to match your upload folder
// Use this version for Joomla! 2.5 or earlier
$files = glob(JPATH_SITE.DS.'components'.DS.'com_chronoforms'.DS.'uploads'.DS.'*');
// use this version for Joomla! 3 or later
//$files = glob(JPATH_SITE.'/components/com_chronoforms/uploads/*');
// set 'keep' period to 7 days
$checktime = time() - 7 * 24 * 60 * 60;
foreach ( $files as $v ) {
if ( is_file($v) && filemtime($v) < $checktime ) {
unlink($v);
}
}
?>
Thank you
foreach($this->get("upload#.[n].path") as $file)
unlink($file);
If the original code posted works fine on v5 then it should work with v6, but the com_chronoforms should be changed to com_chronoforms6
Best regards
Best regards
Yes in fact I have adapted it and it works perfectly.
Thank you
Thank you
This topic is locked and no more replies can be posted.