Re: File Upload 403 error
Reply #11 –
The problem was in my head:) Solution: File list is Custom type field: a comma separated list.
<span>
<?php
if (strlen($data['field'])>0) {
$urls = explode(',', $data['field']);
$i = 0;
foreach($urls as $url) {
$i++;
echo $i.'.) <a href="'.SITE_ADDR.$url.'">'.basename($url).'</a><br/>';
}
} else {
echo '-';
}
?>
</span>