nigelduc wrote:
I had to import 12,000 names in a 5MB file. I tried the suggestions found in the forum, increasing the memory_limit in php.ini and a limit set in /admin/import1.php and neither worked, I still got the "file too big" error. I searched for that text and found it in /admin/commonlib/pages/importcsv.php line 95 where there is a limit set on the tmp file:
if (filesize($_FILES["import_file"]['tmp_name']) > 1000000) { /* Change 1000000 */
****************************************

Can you tell me where to access /admin/commonlib/pages/importcsv.php ? Thank you.