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

EasyPopulate 4.0 Support Thread

Sticky

Views: 733,151

Results 3,561 to 3,580 of 3,671
26 Oct 2023, 3:41 AM
#3561
mc12345678 avatar

mc12345678

Totally Zenned

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

EasyPopulate 4.0 Support Thread

Well, unfortunately when I posted my previous message with a code block, all of the code got squished into a single line instead of broken out to rows and then when I went to edit the post all I have is a blank text box to "edit".
The first code block should look like:

            } else { // otherwise add new category
              // get next available categoies_id (though could replace the last deleted category id..
//              $sql = "SHOW TABLE STATUS LIKE '" . TABLE_CATEGORIES . "'";
              $sql = "SELECT MAX(categories_id) + 1 max FROM " . TABLE_CATEGORIES;
              $result = ep_4_query($sql);
              unset($sql);
              $row = $ep_4_fetch_array($result);
              unset($result);
//              $max_category_id = $row['Auto_increment'];
              $max_category_id = $row['max'];
              // if database is empty, start at 1
              if (!isset($max_category_id) || !is_numeric($max_category_id) || $max_category_id == 0) {
                $max_category_id = 1;
              }
              // TABLE_CATEGORIES has 1 entry per categories_id
              $sql = "INSERT INTO " . TABLE_CATEGORIES . "(categories_id, categories_image, parent_id, sort_order, date_added, last_modified
2 Dec 2023, 6:42 PM
#3562
mc12345678 avatar

mc12345678

Totally Zenned

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

Re: EasyPopulate 4.0 Support Thread

Just putting it out there. I've posted on github an update to this module. I haven't made it the master code yet as I would appreciate some feedback on its use before committing it as the next release.

Generally, the software has been put together to work with the zc_plugins directory, though some limitations of Zen Cart's implementation of that process have required a usual some tricks to be incorporated into installation.

I haven't yet seen what I might consider good instruction for this possibility, but the code can be installed in the same places as it usually is or it can be placed in a version folder.

There are some limitations and issues that might occur if both are done on the one site. May not be an issue now, but may be in the future.

Anyways, I may still add a little to the github branch, but in my testing, neither of the previous main two issues exist.

Branch link to version 4.0.39.ZC: https://github.com/mc12345678/EasyPopulate-4.0/tree/v4.0.39.ZC

Tested on zencart 1.5.8a with latest github updates applied and php 8.3.

17 Jan 2024, 9:46 PM
#3563
project_jayden avatar

project_jayden

New Zenner

Join Date:
Jan 2019
Location:
Lake Elsinore, CA
Posts:
19
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

I just wanted to reach out as I saw that you had some updates on the easy populate plug-in. Initially we had fixed this issue by downgrading our MySQL to I believe my SQL to 5.7 which fixed all the issues with the creation of new categories and data input but now our server got automatically updated to the new version of MySQL again which I believe was a forced update as no one on our end made any changes.

Unfortunately I am back to square one on this. The link you provided for the newest version does it fix these issues?

Thank you for your time.

mc12345678:

Just putting it out there. I've posted on github an update to this module. I haven't made it the master code yet as I would appreciate some feedback on its use before committing it as the next release.

Generally, the software has been put together to work with the zc_plugins directory, though some limitations of Zen Cart's implementation of that process have required a usual some tricks to be incorporated into installation.

I haven't yet seen what I might consider good instruction for this possibility, but the code can be installed in the same places as it usually is or it can be placed in a version folder.

There are some limitations and issues that might occur if both are done on the one site. May not be an issue now, but may be in the future.

Anyways, I may still add a little to the github branch, but in my testing, neither of the previous main two issues exist.

Branch link to version 4.0.39.ZC: https://github.com/mc12345678/EasyPopulate-4.0/tree/v4.0.39.ZC

Tested on zencart 1.5.8a with latest github updates applied and php 8.3.

19 Jan 2024, 12:02 AM
#3564
mc12345678 avatar

mc12345678

Totally Zenned

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

Re: EasyPopulate 4.0 Support Thread

project jayden:

I just wanted to reach out as I saw that you had some updates on the easy populate plug-in. Initially we had fixed this issue by downgrading our MySQL to I believe my SQL to 5.7 which fixed all the issues with the creation of new categories and data input but now our server got automatically updated to the new version of MySQL again which I believe was a forced update as no one on our end made any changes.

Unfortunately I am back to square one on this. The link you provided for the newest version does it fix these issues?

Thank you for your time.

Sorry for the delay in responding. Yes, that issue is expected to be resolved with the root of the problem further discussed here: Duplicate entry when trying to add product with two level category neither existing · Issue #67 · mc12345678/EasyPopulate-4.0 (github.com)

Ok, so root of the problem may be how I had modified the code; however, that was based on conversations from several years ago. Thought was that the database record of what the next record was supposed to be would remain up-to-date. True if that value isn't cached... Newer versions of mySql cache the value making it unreliable during a database access. On the next query it gets updated.

20 Jan 2024, 12:48 AM
#3565
chens19 avatar

chens19

New Zenner

Join Date:
Dec 2023
Location:
hongkong
Posts:
6
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

dear EP4, I met some problem when i populate our product.

EP4+ZC1.5.8a

firstly, I exported CVS via "Filterable Exports" function.
then I edited my new product in this CVS file.
leave the same value on column "v_categories_name_1", it's not blank
then I got the error:No category provided for this new product.

attachment is my EP4 setting and circumstance, cvs file.
Attachment 20456
Attachment 20457
Attachment 20458

who can help me ?

In fact, I'm having trouble understanding the operating logic of ep4:

When I upload a new product, but its v_products_model already exists, after performing the upload, it is treated as an old product, and the upload action is regarded as a modification to the old product.
If you change the record's v_categories_name_1, it will generate a copy of the old product under the new category.

I think there should be a column to mark that this record is for uploading a new product, rather than modifying an old product.

Or is it possible that the CSV I'm using to upload new products is incorrect in the first place? I got it from the Filterable Exports of ep4.
Thank you, I would greatly appreciate it if someone could help me solve this problem with uploading new products.

20 Jan 2024, 1:35 AM
#3566
mc12345678 avatar

mc12345678

Totally Zenned

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

Re: EasyPopulate 4.0 Support Thread

chens19:

dear EP4, I met some problem when i populate our product.

EP4+ZC1.5.8a

firstly, I exported CVS via "Filterable Exports" function.
then I edited my new product in this CVS file.
leave the same value on column "v_categories_name_1", it's not blank
then I got the error:No category provided for this new product.

attachment is my EP4 setting and circumstance, cvs file.
Attachment 20456
Attachment 20457
Attachment 20458

who can help me ?

In fact, I'm having trouble understanding the operating logic of ep4:

When I upload a new product, but its v_products_model already exists, after performing the upload, it is treated as an old product, and the upload action is regarded as a modification to the old product.
If you change the record's v_categories_name_1, it will generate a copy of the old product under the new category.

I think there should be a column to mark that this record is for uploading a new product, rather than modifying an old product.

Or is it possible that the CSV I'm using to upload new products is incorrect in the first place? I got it from the Filterable Exports of ep4.
Thank you, I would greatly appreciate it if someone could help me solve this problem with uploading new products.

If using the version downloaded from the zen cart site, then please read back over any of the recent pages of this thread about how to resolve the missing category issue.

Regarding the linking of product described for using a single product model to describe two or more different product, may I suggest reading the instructions about using the products id instead of the products model as the primary key.

If you have downloaded the version referenced about two posts ago, then please identify the history of versions on the server. The version recently posted about should not initially have the problem described about a missing category. Unfortunately, as the version on the zen cart site appears to have been installed, upgrading to the above version will still have it. To correct one the new above version is installed, remove or uninstall the database settings and then reinstall the plugin to apply the correct default settings. Otherwise follow the guidance discussed on nearly every page of this thread for several, several pages back.

20 Jan 2024, 3:36 AM
#3567
chens19 avatar

chens19

New Zenner

Join Date:
Dec 2023
Location:
hongkong
Posts:
6
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

mc12345678:

If using the version downloaded from the zen cart site, then please read back over any of the recent pages of this thread about how to resolve the missing category issue.

Regarding the linking of product described for using a single product model to describe two or more different product, may I suggest reading the instructions about using the products id instead of the products model as the primary key.

If you have downloaded the version referenced about two posts ago, then please identify the history of versions on the server. The version recently posted about should not initially have the problem described about a missing category. Unfortunately, as the version on the zen cart site appears to have been installed, upgrading to the above version will still have it. To correct one the new above version is installed, remove or uninstall the database settings and then reinstall the plugin to apply the correct default settings. Otherwise follow the guidance discussed on nearly every page of this thread for several, several pages back.

thank you for your reply.

in this thread , there are more than 350 pages, I have read first 80 pages, and didn't find solution.
it's really too long thread.

20 Jan 2024, 4:13 AM
#3568
chens19 avatar

chens19

New Zenner

Join Date:
Dec 2023
Location:
hongkong
Posts:
6
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

mc12345678:

If using the version downloaded from the zen cart site, then please read back over any of the recent pages of this thread about how to resolve the missing category issue.

Regarding the linking of product described for using a single product model to describe two or more different product, may I suggest reading the instructions about using the products id instead of the products model as the primary key.

If you have downloaded the version referenced about two posts ago, then please identify the history of versions on the server. The version recently posted about should not initially have the problem described about a missing category. Unfortunately, as the version on the zen cart site appears to have been installed, upgrading to the above version will still have it. To correct one the new above version is installed, remove or uninstall the database settings and then reinstall the plugin to apply the correct default settings. Otherwise follow the guidance discussed on nearly every page of this thread for several, several pages back.

thank you so much.
I found the solution.

7 Feb 2024, 3:53 PM
#3569
jeffg23 avatar

jeffg23

New Zenner

Join Date:
Mar 2014
Location:
Jamestown, TN
Posts:
36
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

EP4+ZC1.5.8a
EasyPopulate-4.0-4.0.37.13

When I go to Tools and click on Easy Populate 4, all I get is a blank screen. Have used this program on 4 or 5 other sites and never had any problems.

7 Feb 2024, 4:55 PM
#3570
mc12345678 avatar

mc12345678

Totally Zenned

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

Re: EasyPopulate 4.0 Support Thread

Jeffg23:

EP4+ZC1.5.8a
EasyPopulate-4.0-4.0.37.13

When I go to Tools and click on Easy Populate 4, all I get is a blank screen. Have used this program on 4 or 5 other sites and never had any problems.

There are two known issues with that arrangement with a potential third depending on the mySql configuration. The two problems are addressed by review of almost any of the recent pages of this thread. An updated version not having those problems is referenced a few posts ago, available from github.

For clarity, I expect when stating that have a blank page that mean entirely blank, not just blank below the menu bar?

8 Feb 2024, 8:17 PM
#3571
jeffg23 avatar

jeffg23

New Zenner

Join Date:
Mar 2014
Location:
Jamestown, TN
Posts:
36
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

I tried both versions, the one in ZC Plugins, and the one from github.
Page is completely blank. Even tried to look at the page source, shows nothing.

The url listed in the browser for the blank page is: index.php?cmd=easypopulate_4

9 Feb 2024, 12:38 AM
#3572
mc12345678 avatar

mc12345678

Totally Zenned

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

Re: EasyPopulate 4.0 Support Thread

Jeffg23:

I tried both versions, the one in ZC Plugins, and the one from github.
Page is completely blank. Even tried to look at the page source, shows nothing.

The url listed in the browser for the blank page is: index.php?cmd=easypopulate_4

What was the attempted file placement for the one on github? If solely placed in the zc_plugins directory, then the previous version located in the admin directory must be removed. Also with it in the zc_plugins directory, it would need to be installed using the plugin manager.

If all of the admin files were placed in the admin (overwriting the older version) then that's something to work out because I have tried installing both ways with success on php 8.3.

Side note, generally speaking I would expect some sort of admin side debug log to be generated in the logs directory because of the blank screen. The contents of that (minus specific identification of the admin directory) would be helpful to us both. :)

9 Feb 2024, 3:44 PM
#3573
jeffg23 avatar

jeffg23

New Zenner

Join Date:
Mar 2014
Location:
Jamestown, TN
Posts:
36
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

here is the admin log file:

[09-Feb-2024 09:37:11 America/Chicago] Request URI: /store/xxxxxxxxxxxxxx/index.php?cmd=easypopulate_4, IP address: 135.129.209.218, Language id 1
#1 fopen() called at [/home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php:166]
#2 require(/home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php) called at [/home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/index.php:11]
--> PHP Warning: fopen(/home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/EASYPOPULATE_4_CONFIG_TEMP_DIR/ep_debug_log.txt): Failed to open stream: No such file or directory in /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php on line 166.

[09-Feb-2024 09:37:11 America/Chicago] PHP Fatal error: Uncaught TypeError: fclose(): Argument #1 ($stream) must be of type resource, bool given in /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php:167
Stack trace:
#0 /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php(167): fclose(false)
#1 /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/index.php(11): require('/home1/alternb0...')
#2 {main}
thrown in /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php on line 167

[09-Feb-2024 09:37:11 America/Chicago] Request URI: /store/xxxxxxxxxxxxxx/index.php?cmd=easypopulate_4, IP address: 135.129.209.218
--> PHP Fatal error: Uncaught TypeError: fclose(): Argument #1 ($stream) must be of type resource, bool given in /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php:167
Stack trace:
#0 /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php(167): fclose(false)
#1 /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/index.php(11): require('/home1/alternb0...')
#2 {main}
thrown in /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php on line 167.

9 Feb 2024, 4:28 PM
#3574
jeffg23 avatar

jeffg23

New Zenner

Join Date:
Mar 2014
Location:
Jamestown, TN
Posts:
36
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

Jeffg23:

here is the admin log file:

[09-Feb-2024 09:37:11 America/Chicago] Request URI: /store/xxxxxxxxxxxxxx/index.php?cmd=easypopulate_4, IP address: 135.129.209.218, Language id 1
#1 fopen() called at [/home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php:166]
#2 require(/home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php) called at [/home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/index.php:11]
--> PHP Warning: fopen(/home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/EASYPOPULATE_4_CONFIG_TEMP_DIR/ep_debug_log.txt): Failed to open stream: No such file or directory in /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php on line 166.

[09-Feb-2024 09:37:11 America/Chicago] PHP Fatal error: Uncaught TypeError: fclose(): Argument #1 ($stream) must be of type resource, bool given in /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php:167
Stack trace:
#0 /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php(167): fclose(false)
#1 /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/index.php(11): require('/home1/alternb0...')
#2 {main}
thrown in /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php on line 167

[09-Feb-2024 09:37:11 America/Chicago] Request URI: /store/xxxxxxxxxxxxxx/index.php?cmd=easypopulate_4, IP address: 135.129.209.218
--> PHP Fatal error: Uncaught TypeError: fclose(): Argument #1 ($stream) must be of type resource, bool given in /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php:167
Stack trace:
#0 /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php(167): fclose(false)
#1 /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/index.php(11): require('/home1/alternb0...')
#2 {main}
thrown in /home1/alternb0/public_html/rcgstore.com/store/xxxxxxxxxxxxxx/easypopulate_4.php on line 167.

=================================

It was the missing: EASYPOPULATE_4_CONFIG_TEMP_DIR. I created it and refreshed the admin page and now it works. From the install.txt file, I thought if the directory was not there it would give me an error. Still learning ZC at 78 !! :wacko:

9 Feb 2024, 8:43 PM
#3575
mc12345678 avatar

mc12345678

Totally Zenned

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

Re: EasyPopulate 4.0 Support Thread

Jeffg23:

=================================

It was the missing: EASYPOPULATE_4_CONFIG_TEMP_DIR. I created it and refreshed the admin page and now it works. From the install.txt file, I thought if the directory was not there it would give me an error. Still learning ZC at 78 !! :wacko:

So, I might have expected the same and in my testing I didn't come across that hard stop error. I see what can be changed to prevent that response. It is to change the if statement in line 165 to first check if logging should happen and then validate the folder exists before entering that area. I'll also look further downstream for similar issue...

Thank you for your reporting!!!

17 Mar 2024, 1:39 AM
#3576
fenomenal7 avatar

fenomenal7

New Zenner

Join Date:
Mar 2024
Location:
Lufkin, Tx
Posts:
41
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

Greetings!

I am having a small problem installing easy pop

All files have been installed and I created a "temp" folder in my admin where I put the .htaccess file. Easy populate 4 shows up in my tools but when I click on it I get an http error 500 so I'm unable to install ep4 configuration data

Attachment 20521
Attachment 20522

Can anyone help?

17 Mar 2024, 2:58 AM
#3577
mc12345678 avatar

mc12345678

Totally Zenned

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

Re: EasyPopulate 4.0 Support Thread

Fenomenal7:

Greetings!

I am having a small problem installing easy pop

All files have been installed and I created a "temp" folder in my admin where I put the .htaccess file. Easy populate 4 shows up in my tools but when I click on it I get an http error 500 so I'm unable to install ep4 configuration data

Attachment 20521
Attachment 20522

Can anyone help?
There should be a log generated. I personally would expect it to be in your ZC logs folder, but it may be in your temp directory where EP4 files are accessed.

Is this a new install, an upgrade, something else?

17 Mar 2024, 4:52 PM
#3578
fenomenal7 avatar

fenomenal7

New Zenner

Join Date:
Mar 2024
Location:
Lufkin, Tx
Posts:
41
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

mc12345678:

There should be a log generated. I personally would expect it to be in your ZC logs folder, but it may be in your temp directory where EP4 files are accessed.

Is this a new install, an upgrade, something else?

It's a new install. Yes, there was a generated log:

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EP4_DB_FILTER_KEY - assumed 'EP4_DB_FILTER_KEY' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 23.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_TEMP_DIR - assumed 'EASYPOPULATE_4_CONFIG_TEMP_DIR' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 41.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_FILE_DATE_FORMAT - assumed 'EASYPOPULATE_4_CONFIG_FILE_DATE_FORMAT' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 42.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_DEFAULT_RAW_TIME - assumed 'EASYPOPULATE_4_CONFIG_DEFAULT_RAW_TIME' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 43.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_DEBUG_LOGGING - assumed 'EASYPOPULATE_4_CONFIG_DEBUG_LOGGING' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 44.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_SPLIT_RECORDS - assumed 'EASYPOPULATE_4_CONFIG_SPLIT_RECORDS' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 45.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_PRICE_INC_TAX - assumed 'EASYPOPULATE_4_CONFIG_PRICE_INC_TAX' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 46.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_SMART_TAGS - assumed 'EASYPOPULATE_4_CONFIG_SMART_TAGS' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 47.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_MAX_QTY_DISCOUNTS - assumed 'EASYPOPULATE_4_CONFIG_MAX_QTY_DISCOUNTS' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 48.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_VERBOSE - assumed 'EASYPOPULATE_4_CONFIG_VERBOSE' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 49.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_EXECUTION_TIME - assumed 'EASYPOPULATE_4_CONFIG_EXECUTION_TIME' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 50.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_CURLY_QUOTES - assumed 'EASYPOPULATE_4_CONFIG_CURLY_QUOTES' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 51.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_CHAR_92 - assumed 'EASYPOPULATE_4_CONFIG_CHAR_92' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 52.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_META_DATA - assumed 'EASYPOPULATE_4_CONFIG_META_DATA' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 53.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_MUSIC_DATA - assumed 'EASYPOPULATE_4_CONFIG_MUSIC_DATA' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 54.

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
#1 require(/home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php) called at [/home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php:11]
--> PHP Warning: Use of undefined constant EASYPOPULATE_4_CONFIG_TEMP_DIR - assumed 'EASYPOPULATE_4_CONFIG_TEMP_DIR' (this will throw an Error in a future version of PHP) in /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php on line 156.

[17-Mar-2024 10:48:29 America/Boise] PHP Fatal error: Uncaught Error: Cannot access private property queryFactory::$link in /home2/cedargr4/public_html/new/franK-jLN-Sunny/includes/functions/extra_functions/easypopulate_4_functions.php:625
Stack trace:
#0 /home2/cedargr4/public_html/new/franK-jLN-Sunny/includes/functions/extra_functions/easypopulate_4_functions.php(469): ep_4_query('SHOW COLUMNS FR...')
#1 /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php(173): ep_4_check_table_column('products_descri...', 'products_short_...')
#2 /home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php(11): require('/home2/cedargr4...')
#3 {main}
thrown in /home2/cedargr4/public_html/new/franK-jLN-Sunny/includes/functions/extra_functions/easypopulate_4_functions.php on line 625

[17-Mar-2024 10:48:29 America/Boise] Request URI: /new/franK-jLN-Sunny/index.php?cmd=easypopulate_4, IP address: 47.219.208.101
--> PHP Fatal error: Uncaught Error: Cannot access private property queryFactory::$link in /home2/cedargr4/public_html/new/franK-jLN-Sunny/includes/functions/extra_functions/easypopulate_4_functions.php:625
Stack trace:
#0 /home2/cedargr4/public_html/new/franK-jLN-Sunny/includes/functions/extra_functions/easypopulate_4_functions.php(469): ep_4_query('SHOW COLUMNS FR...')
#1 /home2/cedargr4/public_html/new/franK-jLN-Sunny/easypopulate_4.php(173): ep_4_check_table_column('products_descri...', 'products_short_...')
#2 /home2/cedargr4/public_html/new/franK-jLN-Sunny/index.php(11): require('/home2/cedargr4...')
#3 {main}
thrown in /home2/cedargr4/public_html/new/franK-jLN-Sunny/includes/functions/extra_functions/easypopulate_4_functions.php on line 625.

17 Mar 2024, 7:51 PM
#3579
fenomenal7 avatar

fenomenal7

New Zenner

Join Date:
Mar 2024
Location:
Lufkin, Tx
Posts:
41
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

mc12345678:

There should be a log generated. I personally would expect it to be in your ZC logs folder, but it may be in your temp directory where EP4 files are accessed.

Is this a new install, an upgrade, something else?

Its a new install. Yes, I found the log. Should I send it to you in a private message?

18 Mar 2024, 9:15 AM
#3580
simon1066 avatar

simon1066

Totally Zenned

Join Date:
Feb 2009
Location:
UK
Posts:
1,326
Plugin Contributions:
0

Re: EasyPopulate 4.0 Support Thread

Fenomenal7:

Its a new install. Yes, I found the log. Should I send it to you in a private message?

It's generally better to post it on the forum as others may also be able to assist. When posting any file contents don't forget to remove or change any sensitive information from the log file such as name of the admin folder/passwords/etc.