Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]
Hey, I'm having a similar problems as JimmyV.
When importing a CSV, even the sample that came with the mod.
I get:
There were errors:
Could not move file, check folder permissions.
Any ideas?
Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]
Quote:
Originally Posted by
Dave_mck
Hey, I'm having a similar problems as JimmyV.
When importing a CSV, even the sample that came with the mod.
I get:
There were errors:
Could not move file, check folder permissions.
Any ideas?
Try changing /YOUR_ADMIN/add_customers_backend.php (starting at line 35 in v2.0.5) from:
Code:
} else {
if (!defined('DIR_FS_UPLOADS')) define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_IMAGES . 'uploads/'); /*v2.0.5a*/
$path = DIR_FS_UPLOADS . $files['name'];
if (!move_uploaded_file($files['tmp_name'], $path)) {
$errors[] = ERROR_CANT_MOVE_FILE;
to
Code:
} else {
// if (!defined('DIR_FS_UPLOADS')) define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_IMAGES . 'uploads/'); /*v2.0.5a*/
$path = DIR_FS_BACKUP . $files['name'];
if (!move_uploaded_file($files['tmp_name'], $path)) {
$errors[] = ERROR_CANT_MOVE_FILE;
... and let me know if that corrects the problem.
Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]
Yup, that did it.
You are the Guru!
Thanks, Dave.
Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]
Thanks, Dave.:blush: I'll incorporate that correction into the plugin's distribution zip-file and get that uploaded "soon".
Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]
Since this plugin performs no core-file overwrites and has no template-related changes, it's Zen Cart v1.5.2-ready!
Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]
Hi thank you for this plug in.
Is there a way to manually set passwords at all? My mail servers not set up and won't be for a little while so kind of stuck.
Thanks
Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]
Hate to double post but I can't edit my first post.
I've installed the plugin and its working but how do I or the added customer find out the password? I have set up a gmail smtp for now and did a test add and the welcome email had no pass information so the customer would only have their email address.
Thank You
Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]
The added customer can go to your login screen and click the "Forgotten Password" link to have a new password sent to them. There's also a (relatively new) "Admin Change Password" plugin (I haven't used it).
Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]
I entered 100 customers today with no problem. Decided to take a break before entering more. When I went back to put more in I got an error that says Access Denied. Any ideas?
Re: Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]
figured it out...somehow the permissions on that file got changed to write only. go figure....no idea how that happened though.