Results 1 to 10 of 3673

Hybrid View

  1. #1
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by mc12345678 View Post
    If I had my guess based on the flexibility that has been incorporated thus far into EP4, is that if the import programming cuts off data, it would be to the limit of the current database setting and not some arbitrary value, and would be such that each cat^subcat would be such, not the entire string length or it "waits" for the receiving database to perform the chop. Chadd probably can provide that type of info off the top of his head, while I'd have to look into the code to confirm or deny that, though in writing import functionality I don't recall coming across any such limiter.
    Btw, I apologize that my response may seem curt or rude, I absolutely had no intention in it being so. I was rereading and thinking about it and could see how it might be interpreted as such.

    Btw, congrats on getting the formatting to support the import formatting. That much closer to a totally zen experience. :)

  2. #2
    Join Date
    Nov 2004
    Location
    U.K. South Wales
    Posts
    501
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    chadd and other !
    I am exporting from litecommerce cart, get the csv category string with / instead of ^.
    I've successfully modified the code around lines 685 of easypopulate_4_import.php
    as
    $categories_delimiter = "/"; // add this to configuration variables
    // get all defined categories
    foreach ($langcode as $key => $lang) {
    // iso-8859-1
    // $categories_names_array[$lang['id']] = explode($categories_delimiter,$items[$filelayout['v_categories_name_'.$lang['id']]]);
    // utf-8 ^
    //jph mod separator x2f is / in hex asc
    $categories_names_array[$lang['id']] = mb_split('\x2f',$items[$filelayout['v_categories_name_'.$lang['id']]]);

    This imports fine now, categories work, now can have the zencart experience with Litecommerce v2.1 data. Hope this helps someone else with an old litecommerce setup, because import into X-cart [their modern version] is a limited option. btw haven't imported more than one product at a time yet into zencart, but I don't foresee any probs. THansk so much for this EP4 version!

  3. #3
    Join Date
    Apr 2006
    Location
    Dark Side of the Moon
    Posts
    987
    Plugin Contributions
    1

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by hareslade View Post
    chadd and other !
    I am exporting from litecommerce cart, get the csv category string with / instead of ^.
    I've successfully modified the code around lines 685 of easypopulate_4_import.php
    as
    $categories_delimiter = "/"; // add this to configuration variables
    // get all defined categories
    foreach ($langcode as $key => $lang) {
    // iso-8859-1
    // $categories_names_array[$lang['id']] = explode($categories_delimiter,$items[$filelayout['v_categories_name_'.$lang['id']]]);
    // utf-8 ^
    //jph mod separator x2f is / in hex asc
    $categories_names_array[$lang['id']] = mb_split('\x2f',$items[$filelayout['v_categories_name_'.$lang['id']]]);

    This imports fine now, categories work, now can have the zencart experience with Litecommerce v2.1 data. Hope this helps someone else with an old litecommerce setup, because import into X-cart [their modern version] is a limited option. btw haven't imported more than one product at a time yet into zencart, but I don't foresee any probs. THansk so much for this EP4 version!
    I see you looked at this closely enough to use the hex code for "/" ... as you can see in the code, I had/have plans to make this configurable,
    but not easy to ask "new" users for the hex code

  4. #4
    Join Date
    Apr 2013
    Location
    Bangkok, Thailand
    Posts
    35
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    Hi, please tell me why I have no option to install EP in my admin!!

    I don't even know which version of EP I have uploaded. It was at the top of http://www.zen-cart.com/downloads.php?do=file&id=868 page and it says "This is an update to Langers version". I put the tempEP folder in the public html folder and maintained directory structure for the admin files. I also ran the install_sql script in admin. Why do I not see anything in admin please - neither in Tools nor Configuration. Therefore, I have no option to install EP.

    help please!

  5. #5
    Join Date
    Apr 2013
    Location
    Bangkok, Thailand
    Posts
    35
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    i forgot to say that my zencart version is 1.5

 

 

Similar Threads

  1. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 22
    Last Post: 26 Jan 2026, 06:47 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

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