Page 355 of 364 FirstFirst ... 255305345353354355356357 ... LastLast
Results 3,541 to 3,550 of 3631
  1. #3541
    Join Date
    Jul 2012
    Posts
    16,771
    Plugin Contributions
    17

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by gemohler View Post
    And then this happens.

    Saved from open office, no changes other than a few 100k things added to the spreadsheet.

    In this example, row 1 works.
    Row 2 does not work.

    They are functionally identical.
    Is there a mistake in the above writing? The image suggests that the first does not work and the second does. As far as the csv file, I usually ensure each field's content is surrounded by double quotes when saving the csv file from the workbook. While I was able to open that CSV file in a workbook to have the data in what looks like the appropriate fields, nothing specifically stands out visually as a problem.

    When I get an opportunity I'll try running that file, but may be a bit.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  2. #3542
    Join Date
    Jul 2005
    Location
    CA
    Posts
    240
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by mc12345678 View Post
    Is there a mistake in the above writing? The image suggests that the first does not work and the second does. As far as the csv file, I usually ensure each field's content is surrounded by double quotes when saving the csv file from the workbook. While I was able to open that CSV file in a workbook to have the data in what looks like the appropriate fields, nothing specifically stands out visually as a problem.

    When I get an opportunity I'll try running that file, but may be a bit.
    I may have got the text backwards, but the excel file is in the order of the import results.

  3. #3543
    Join Date
    Jul 2012
    Posts
    16,771
    Plugin Contributions
    17

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by gemohler View Post
    On the lookout for things I need to know as I relearn the ZC environment.

    Im doing EP4 imports, and I have a log file getting _hammered_ with this (attached)
    Gotcha, before suggesting what I just came up with, need to look to see if I have an existing solution on my development server. Mind me asking your specs? PHP version for example?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  4. #3544
    Join Date
    Jul 2012
    Posts
    16,771
    Plugin Contributions
    17

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by gemohler View Post
    I may have got the text backwards, but the excel file is in the order of the import results.
    Was the issue always discovered on the first line of any import or was the issue random throughout the import of the file?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  5. #3545
    Join Date
    Jul 2005
    Location
    CA
    Posts
    240
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by mc12345678 View Post
    Gotcha, before suggesting what I just came up with, need to look to see if I have an existing solution on my development server. Mind me asking your specs? PHP version for example?
    Right on..
    Attached Images Attached Images  

  6. #3546
    Join Date
    Jul 2005
    Location
    CA
    Posts
    240
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by mc12345678 View Post
    Was the issue always discovered on the first line of any import or was the issue random throughout the import of the file?
    THIS file had this issue. Everything after it failed.

    I took the data from THIS spreadsheet (except the header row), and put it in another one that did work (under it's header row)...and everything was fine.

  7. #3547
    Join Date
    Jul 2005
    Location
    CA
    Posts
    240
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    I have this defined in the config:

    User Defined Products Fields v_products_qty_box_status. (I have also tried this without v_)

    I have this in my CSV:
    v_products_qty_box_status
    0

    The one product I test this one, continues to show a qty available, which I want to set to hidden.

    It seems as if I've done the right things as I've seen in a few good threads.

  8. #3548
    Join Date
    Jul 2012
    Posts
    16,771
    Plugin Contributions
    17

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by gemohler View Post
    On the lookout for things I need to know as I relearn the ZC environment.

    Im doing EP4 imports, and I have a log file getting _hammered_ with this (attached)
    Looks like my solution was to change the various instances of:

    $categories_name_exists = false;
    To an empty array:
    Code:
    $categories_name_exists = array(); // used for backwards compatibility
    $categories_name_exists = []; // accomplishes the same as above via shortened code
    Worked in PHP 8.2.9 for me. I had just come up with another idea, but it required writing more code.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  9. #3549
    Join Date
    Jul 2005
    Location
    CA
    Posts
    240
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by mc12345678 View Post
    Looks like my solution was to change the various instances of:

    $categories_name_exists = false;
    To an empty array:
    Code:
    $categories_name_exists = array(); // used for backwards compatibility
    $categories_name_exists = []; // accomplishes the same as above via shortened code
    Worked in PHP 8.2.9 for me. I had just come up with another idea, but it required writing more code.
    Just change those two instances in easypopulate_4_import.php?

    Simple enough. Was this having any impact other than a massive error log file?

  10. #3550
    Join Date
    Jul 2012
    Posts
    16,771
    Plugin Contributions
    17

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by gemohler View Post
    Just change those two instances in easypopulate_4_import.php?

    Simple enough. Was this having any impact other than a massive error log file?
    That was in part my question to you. Looking over changes I have made to push to github, that appears to be all that I needed to do to support complete import of the records that were formatted correctly. Haven't heard if the above resolved the earlier issue of the two records where the first was bypassed but the second imported. Further, didn't see a response to the question about any sort of consistency of report saying not imported because the category name was missing.

    Look forward to hearing results so that I can maybe prioritize some of the patches/changes that have been made.

    CORRECTION: Apparently there are responses above that I did not see/fully read. Maybe more to follow from me?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 

Similar Threads

  1. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 19
    Last Post: 23 Jan 2023, 08:04 AM
  2. BackUp ZC [Support Thread]
    By skipwater in forum All Other Contributions/Addons
    Replies: 285
    Last Post: 23 Dec 2020, 10:40 AM
  3. Wordpress On ZC [Support Thread]
    By hira in forum All Other Contributions/Addons
    Replies: 1858
    Last Post: 17 Jan 2014, 01:24 AM
  4. ZJ Black 2 support thread
    By Liamv in forum Addon Templates
    Replies: 1
    Last Post: 15 Feb 2010, 02:53 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR