Array of standard Mime document

See all posts See thread Reply

Re: Array of standard Mime document new!
by Cedric, 13 years, 11 months ago
if ($lang = 'fra') $locale = 'fr_FR';
if ($lang = 'eng') $locale = 'en_EN';
if ($lang = 'deu') $locale = 'de_DE';
$doc = $_FILES['userfile']['name'];
$path = "modules/Samples/files/$folder/";
$handle = new upload($_FILES['userfile'],$locale);
if ($handle->uploaded) {                      
  $handle->mime_check = true;
  $handle->file_safe_name = true;
  $handle->file_overwrite = true;
  $handle->process($path);
  if ($handle->processed) {
    echo 'file uploaded';
    $handle->clean();
  } else {
    echo 'error : ' . $handle->error;
  }
}


nothing in the log...

Tried to purchase your software, is it the same as giving money.
You send the invoice after?Reply
Re: Array of standard Mime document new!
by colin, 13 years, 11 months ago
For the log, output $handle->log at the end

I can send an invoice after the purchase, no problems. Send me your company name and address after the payment, and I will issue the invoice.Reply