Hi,
I'd like to import a file located on the server to accounts. Therefore I modified the templates of the Import module and added the following into ImportStep3.php:
PHP Code:
$myhandler=fopen("log.txt","w+"); fwrite($myhandler,$fileonserver.' a: '.$_REQUEST['fileonserver'].' b '.$_POST['fileonserver'].' c '.$_GET['fileonserver']); fclose($myhandler);     if ($_REQUEST['fileonserver']!='null') {         unlink($tmp_file_name);         $tmp_file_name $_REQUEST['fileonserver'];     } 
Unfortunately it seems as this file is never executed.

What to do?
Andreas