Re: Add Customers from admin addon

Originally Posted by
epickz
I have installed everything and it works, with the exception of the csv upload. I get the following message "There were errors * Could not move file", any ideas. Please help

It's possible that your server is configured to not allow or include the server variable $_SERVER['DOCUMENT_ROOT']
try replacing this line of code at line 26 of admin/add_customers_backend.php:
PHP Code:
$path = $_SERVER['DOCUMENT_ROOT'] . '/' . $files['name'];
with this:
PHP Code:
$path = DIR_FS_ADMIN . '/backups/' . $files['name'];
Neville
An assumption is what you arrive at when you get tired of thinking...