i would like to import .tsv file with phpexcel from a website. With locale file is working, but if i change file location on "http://...", don't working.
$inputFileType = 'CSV';
$data = 'http://www.domain.com/file.tsv';
$objReader = PHPExcel_IOFactory::createReader($inputFileType);
$objReader->setDelimiter("\t");
$objPHPExcel = $objReader->load($data);