Zen Cart Logo
Forums / Addon Admin Tools / EasyPopulate 4.0 Support Thread

EasyPopulate 4.0 Support Thread

Sticky

Views: 733,118

Results 1,281 to 1,300 of 3,671
10 Dec 2013, 17:48
#1281
linuxguy2 avatar

linuxguy2

Zen Follower

Join Date:
Sep 2013
Location:
Texas
Posts:
315
Plugin Contributions:
0

EasyPopulate 4.0 Support Thread

After more testing I discovered easypopulate-4.0-master (configuration part) cannot be installed AFTER fec.
Something to do with the database fields not matching (Haven't narrowed it down)
My work around was to install ep-4 first and then css_js_loader & fec.
This seems to work on a fresh install (classic template).

I am loading 4 other modules so I'll report back if I have success (or failure) on my full blown site.

10 Dec 2013, 19:30
#1282
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: EasyPopulate 4.0 Support Thread

linuxguy2:

After more testing I discovered easypopulate-4.0-master (configuration part) cannot be installed AFTER fec.
Something to do with the database fields not matching (Haven't narrowed it down)
My work around was to install ep-4 first and then css_js_loader & fec.
This seems to work on a fresh install (classic template).

I am loading 4 other modules so I'll report back if I have success (or failure) on my full blown site.

What tables does Fast Easy Checkout (fec) modify? The configuration script for EP4 appears to only use the default number of columns for table insertion, without directly assigning a field to a value. If EP4 fails after fec, what else will fail after fec installation? I am assuming that the failure occurs when clicking the link at the top of the screen upon first time upload. Otherwise, where in the process does it stop (error log?). What version of ZC did you try this on? EP4 should not be affected by nor affect either of those two plugins, unless one of those two changes the tables in a way that is unrecognizable...

12 Dec 2013, 22:50
#1283
linuxguy2 avatar

linuxguy2

Zen Follower

Join Date:
Sep 2013
Location:
Texas
Posts:
315
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

I had a working installation of ep-4. (Installed ep-4 first then css_js_loader & fec) uninstalled ep-4 from the admin menu "Tools - EP - Uninstall" and then tried to reinstall it from the same screen (see graphic) and below is the error I got. Where would I look for a more detailed error report?

WARNING: An Error occurred, please refresh the page and try again.

[Attachment no longer available]

12 Dec 2013, 23:41
#1284
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: EasyPopulate 4.0 Support Thread

linuxguy2:

I had a working installation of ep-4. (Installed ep-4 first then css_js_loader & fec) uninstalled ep-4 from the admin menu "Tools - EP - Uninstall" and then tried to reinstall it from the same screen (see graphic) and below is the error I got. Where would I look for a more detailed error report?

WARNING: An Error occurred, please refresh the page and try again.

[Attachment no longer available]

Look in your logs or cache directory, depending on which version of ZC you are using. My guess is more than likely it is a SQL error that an option has already been loaded into the database. Not sure how you "uninstalled" the plug-in. Removing the files would not remove the SQL settings.

13 Dec 2013, 05:32
#1285
linuxguy2 avatar

linuxguy2

Zen Follower

Join Date:
Sep 2013
Location:
Texas
Posts:
315
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

I reloaded my test site so I'll have to reinstall (tomorrow) and see if I can get more specific error codes.

Un-Install here in EasyPopulate-4.0-master.

[Attachment no longer available]

14 Dec 2013, 18:23
#1286
lindeeg avatar

lindeeg

New Zenner

Join Date:
Aug 2010
Posts:
46
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

How do I uninstall Easy Populate 4.0?

I had developer upgrade my site from 1.3.9 to 1.5.1 recently (I was not able to get the upgrade to see my db) and he installed Easy Populate 4.0 over the old csv version previously installed. The older version was configured to connect the attributes for downloadable products (most of my products). After a problem with the attributes not working after the upgrade, he "corrected" the problem by replacing the new 1.5.1 admin folder with the old 1.3.9 one, which had the old EP files.

I figured out how to fix the old EP for uploading and altho all the EP 4 files are removed, EP 4 still shows up on Admin > Config. How do I remove it? I'm trying to clean up the site as much as possible after a sloppy upgrade.

Lindee

14 Dec 2013, 21:56
#1287
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: EasyPopulate 4.0 Support Thread

LindeeG:

How do I uninstall Easy Populate 4.0?

I had developer upgrade my site from 1.3.9 to 1.5.1 recently (I was not able to get the upgrade to see my db) and he installed Easy Populate 4.0 over the old csv version previously installed. The older version was configured to connect the attributes for downloadable products (most of my products). After a problem with the attributes not working after the upgrade, he "corrected" the problem by replacing the new 1.5.1 admin folder with the old 1.3.9 one, which had the old EP files.

I figured out how to fix the old EP for uploading and altho all the EP 4 files are removed, EP 4 still shows up on Admin > Config. How do I remove it? I'm trying to clean up the site as much as possible after a sloppy upgrade.

Lindee

Might be easier to reinstall and the have it remove EP4, but: The below is the SQL that is run from within it that will address your database (including the menu option). I might suggest running all five statements, as it does seem unclear what version of ZC you are really working to... :/ Not cool...

    SELECT @ep_group_id := configuration_group_id FROM CONFIGURATION_GROUP WHERE configuration_group_title = 'Easy Populate 4' LIMIT 1;
        DELETE FROM CONFIGURATION WHERE configuration_group_id = @ep_group_id;
        DELETE FROM CONFIGURATION_GROUP WHERE configuration_group_id = @ep_group_id;
        DELETE FROM ADMIN_PAGES WHERE page_key = 'easypopulate_4';
        DELETE FROM ADMIN_PAGES WHERE page_key = 'easypopulate_4_config';

So, the above 5 statements cover version 1.5.x on, and may provide an error if run on a pre 1.5.x database... The errors (if they are to occur) would be in the last two statements.

It would be easiest to tell by looking at the database, because there is potentially an issue with the first statement... If the select statement returns a zero then, this could affect the other databases. And actually, if you are okay with keeping information in your database, but just want to make the menu option(s) go away, then perhaps the last two queries should be run to remove the menu options. But that wouldn't fully cleanup your existing condition (possibly if other EP4 data was still present).

I'm a little confused about what the issue is with using EP4 as it too allows download/upload/export/import of attributes as well... But, the above will accomplish what you asked for. It is my understanding as well, that there may be benefit to running more than one EP product, depending on the task at hand, and I believe this version (EP4) can co-exist with another/others.

12 Jan 2014, 06:37
#1288
brian70809 avatar

brian70809

New Zenner

Join Date:
Jun 2011
Posts:
85
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

I am posting this here because this is the only module that I am having this problem with...

Whenever I try and Import a file it is making me relog into the Admin as if the session ID has reset. So I click import It will then import..... am forced to relogin and it imports.. and done.. I had a different Easypopulate and it did the same thing. So whatever the POST function is doing, it's resetting my Session ID to a new one..

Is there a fix for this? Is there a place to look?

I have done a bunch of Google searches and this problem pops up from time to time, but no one ever has a solution.. I think it has to do with a PHP config. setting or a Sessions setting in Zen Cart.. I have had to change things with those in the past in order to get Facebook to pull images off the website to post...

Thanks for any help or direction that you may have!

Brian

22 Jan 2014, 16:16
#1289
webmiss avatar

webmiss

Zen Follower

Join Date:
Feb 2006
Posts:
147
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

Hi,

I installed EP on zencart 1.5.1. When I try to download an ep file, I get this error: Firefox can't find the server at epuploads.

I made sure the folder is writable, and put in the folder name in the ep configuration as follows foldername/

The file does exist in the folder and I could download via ftp, but this should be available when in the tools section of the admin

Any help would be appreciated.

22 Jan 2014, 21:44
#1290
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: EasyPopulate 4.0 Support Thread

webmiss:

Hi,

I installed EP on zencart 1.5.1. When I try to download an ep file, I get this error: Firefox can't find the server at epuploads.

I made sure the folder is writable, and put in the folder name in the ep configuration as follows foldername/

The file does exist in the folder and I could download via ftp, but this should be available when in the tools section of the admin

Any help would be appreciated.

At this time, there appears to be more questions to ask than answers to provide:

  1. Are you sure that you have this version of EP installed. Asked for the following reasons: epuploads is not found in the coding of the program, no other text in the message indicates why epuploads would be referenced, the config description does not include the value 4 which is related to the version number identified for this plugin
  2. It is not clear if foldername/ is the actual content of the folder listing or if it is meant as an example/template and that the contents were actually epuploads/
  3. Making the folder (and file) writable is half of it, also readable yes?
23 Jan 2014, 18:20
#1291
webmiss avatar

webmiss

Zen Follower

Join Date:
Feb 2006
Posts:
147
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

Sorry I wasn't more specific. I installed easy populate 4. I created a folder called epuploads and set permissions at chmod 777. In the configuration section in the admin it asks for the uploads directory. I have it set at epuploads/

Is there something else I am missing?

24 Jan 2014, 01:13
#1292
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: EasyPopulate 4.0 Support Thread

webmiss:

Sorry I wasn't more specific. I installed easy populate 4. I created a folder called epuploads and set permissions at chmod 777. In the configuration section in the admin it asks for the uploads directory. I have it set at epuploads/

Is there something else I am missing?

If you "right" click on one of the download links and copy the link, could you paste it here? (because of the location identified, you're welcome to substitute what you need to, but the important part is to try to identify if the link is "incorrectly created")

Is there a difference in URI between a secure connection and a standard connection? (ie. have a dedicated SSL versus a shared one? If shared, what is the format of it and how is that integrated into your configure.php files?)

Do you have any URI rewriter? htaccess redirects/rewrite rules? It may be that the folder is "hidden" from standard web browsing, even though the permissions are set. May need a new .htaccess file for the upload directory... Sorry I didn't respond earlier, wanted to look at the code a little and see how the system is expected to operate...

25 Jan 2014, 12:48
#1293
webmiss avatar

webmiss

Zen Follower

Join Date:
Feb 2006
Posts:
147
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

Hi,

I figured out the issue. If you just click on the download link, it gives that error, if you right click as you suggested, it will download the file. Not sure what the difference is, but as long as the file can be downloaded, that's the important thing. Now, I haven't tried to import anything yet. Still waiting on client to send a file for the updates.

25 Jan 2014, 13:07
#1294
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: EasyPopulate 4.0 Support Thread

webmiss:

Hi,

I figured out the issue. If you just click on the download link, it gives that error, if you right click as you suggested, it will download the file. Not sure what the difference is, but as long as the file can be downloaded, that's the important thing. Now, I haven't tried to import anything yet. Still waiting on client to send a file for the updates.

Left clicking attempts to open the file on screen. I believe if there are restrictions in the htaccess file ie, allow .jpg|.gif, etc... That don't include .csv, then you won't be able to "view" the file, but you can download it. I haven't tried altering the functionality in a while to see if that aspect is true, it may be that there is a setup in firefox that needs to know where to find the file to open for the data type... Generally speaking it is still better to right click and save the file, but if properly setup to "view" it on screen, that too can be helpful, but also can be confusing if there is a lot of information and depending on the needle for which your looking. :)

Good job, glad I didn't lead you too far away, though still may want to make some changes.

31 Jan 2014, 23:06
#1295
silverhd avatar

silverhd

Totally Zenned

Join Date:
Mar 2008
Location:
USA
Posts:
563
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

Hello:

Does anyone know of any step-by-step instruction manual available for EP4? Especially when it comes to converting a wholesalers .csv file to EP's version? I found some instructions on Youtube but that video is so small, it just as well not be there!! A youtube video converter would be nice. If there is a video available for this, it would be great, again, as long as you can see it.

Thanks for your help,

Silver

03 Feb 2014, 01:04
#1296
fairestcape avatar

fairestcape

Totally Zenned

Join Date:
Mar 2008
Location:
Cape Town & London (depends on the season)
Posts:
2,957
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

Whatever the original source of your data, it must be arranged to meet the structure of the zencart database.

If you open one of the SAMPLE FILES from easypopulate v4, you will see the names of the column headers. These names cannot change.

So what you need to do is arrange the data from your supplier's spreadsheet, so that the content can be listed under relevant Easypopulate column headers.

Your supplier may have a column called PRODUCT INFORMATION. Now there is no column called "PRODUCT INFORMATION" in Easy Populate - but there is a column called "v_products_description_1".

So it is probable that all you need do is get the product information from your supplier, an make sure the column header is v_products_description_1, and not PRODUCT INFORMATION.

The same principle applies to all the data and column headings.

However, sometimes a supplier may have product information is SEVERAL DIFFERENT COLUMNS - in which case you may need to use spreadsheet FORUMLAS to merge the content of one column with the content of others.

In MS EXCEL for example, the =CONCATENATE(parameters here) formula will join the contents of specified cells. A knowledge of how your spreadsheet operates is very valuable, as this can save you huge amounts of time and effort.

03 Feb 2014, 05:01
#1297
silverhd avatar

silverhd

Totally Zenned

Join Date:
Mar 2008
Location:
USA
Posts:
563
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

fairescape;

Thank you for the information. I will look into it. Everything you said seems relatively simple except for the last part on product information. Couil you tell me how you place attributes, such as sizes, colors, etc? BTW, I'm guessing by your byline that you must know Schoolboy?

Silver

03 Feb 2014, 09:01
#1298
fairestcape avatar

fairestcape

Totally Zenned

Join Date:
Mar 2008
Location:
Cape Town & London (depends on the season)
Posts:
2,957
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

SilverHD:

fairescape;

Thank you for the information. I will look into it. Everything you said seems relatively simple except for the last part on product information. Couil you tell me how you place attributes, such as sizes, colors, etc? BTW, I'm guessing by your byline that you must know Schoolboy?

Silver

Yes, I am based in Cape Town, South Africa - but spend about half the year in the UK doing presentations on online trading. Schoolboy and I work on joint projects. I have been assisting with the latest venture in engraving services.

Easypopulate does not handle attributes (yet) but if you send a PM to chadderuski (the module's author) he may have updates on this.

We have found that APSONA SHOPADMIN is a more intuitive interface for importing data - including attributes.

03 Feb 2014, 09:45
#1299
silverhd avatar

silverhd

Totally Zenned

Join Date:
Mar 2008
Location:
USA
Posts:
563
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

Thanks for the tip. I will PM him. Schoolboy helped me quite a bit when I didn't know very much about Zen. He is very knowledgeable. Looks like he has a tiger by the tail now!

Take care,

Silver

03 Feb 2014, 10:15
#1300
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: EasyPopulate 4.0 Support Thread

fairestcape:

Yes, I am based in Cape Town, South Africa - but spend about half the year in the UK doing presentations on online trading. Schoolboy and I work on joint projects. I have been assisting with the latest venture in engraving services.

Easypopulate does not handle attributes (yet) but if you send a PM to chadderuski (the module's author) he may have updates on this.

We have found that APSONA SHOPADMIN is a more intuitive interface for importing data - including attributes.

While I haven't used apsona shopadmin, I would like to offer a correction to the above post, EP4 does handle attributes, in fact I had added partial functionality for stock by attributes available through github off of chadderuski's version.

As for other instructions on use, there have been posts in the last several pages about general usage of this plugin including sequencing of imports and exports and building the database for a product.