Page 38 of 367 FirstFirst ... 2836373839404888138 ... LastLast
Results 371 to 380 of 3663
  1. #371
    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 oj226 View Post
    it says it was imported fine (green highlight on top of admin)
    but when i look in phpMyAdmin or the zen cart store, its not updated :/

    any reasons for this?
    Please either attach or PM me your data file, or a portion there of.
    You are clicking on Import after Uploading the file?

    -chadd

  2. #372
    Join Date
    Feb 2009
    Posts
    22
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    Width
    24
    24
    25...
    Length
    30
    31
    32.......
    Quote Originally Posted by chadderuski View Post
    It would help to see an example on your site. But if you can create the Options Name/Options Values in Zencart, you can also with EP4.
    Sure. A relevant page is:

    http://www.sofabed-mattress dot com/sleeper-sofa-bed-mattresses/premium-sofabedmattress.htm

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

    Default Re: EasyPopulate 4.0 Support Thread

    Announcment: New version 4.0.21 posted to github

    https://github.com/chaddro/EasyPopulate-4.0

    Fixes in this version:
    - products_type on import bug
    - admin security error when using admin profiles in v1.5
    - new way of checking database collation... to fix mult-byte issues when UTF8 is not used.

    Getting close to submitting to zencart team! Thanks again to everyone for testing and your feedback!

    -chadd

  4. #374
    Join Date
    Oct 2011
    Posts
    168
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    Hi Chadderuski

    Thanks for the great work. I installed the version 4.0.21 and compared with the Easy Populate CSV 1.2.5.7 that I am using. The "custom field", a function in the Easy Populate CSV 1.2.5.7, are very useful. If possible, hope you can add this function to the EP4.

    SU35

  5. #375
    Join Date
    Jan 2012
    Location
    California
    Posts
    36
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by su35 View Post
    Hi Chadderuski

    Thanks for the great work. I installed the version 4.0.21 and compared with the Easy Populate CSV 1.2.5.7 that I am using. The "custom field", a function in the Easy Populate CSV 1.2.5.7, are very useful. If possible, hope you can add this function to the EP4.

    SU35
    I agree I need to add "custom fields" , "Cost" (my cost) and "Warehouse" (where I get the item from) to my spreadsheets in a hidden field but not sure how to do it.

    sorry again for so many questions and THANK YOU for the quick responses.
    "THANK YOU" to all the contributors for the help.
    Current site we are working on is
    SFM Auto Parts

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

    Default Re: EasyPopulate 4.0 Support Thread

    Hi Shopsfm and su35,

    I will look into it. However, my version makes adding your own custom fields rather easy. A good "how-to" was posted earlier in this thread. You can add your own fields for the products database in something like 15 minutes work.

    I'll see where I am at in my list of to-do's. If 4.0.21 goes well, I'll want to submit to the zencart team and exit beta.
    That takes priority. I also need to flesh out the docs... something along the lines of what Schoolboy did for 1.2.5.4.

    I appreciate the feed back. Keep it coming!

    -chadd

  7. #377
    Join Date
    Jan 2012
    Location
    California
    Posts
    36
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    I think I found how to add database custom fields
    http://www.zen-cart.com/showthread.p...t-Thread/page5
    http://www.zen-cart.com/showthread.p...-Thread/page21
    hopefully this works.
    "THANK YOU" to all the contributors for the help.
    Current site we are working on is
    SFM Auto Parts

  8. #378
    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 shopsfm View Post
    I think I found how to add database custom fields
    http://www.zen-cart.com/showthread.p...t-Thread/page5
    http://www.zen-cart.com/showthread.p...-Thread/page21
    hopefully this works.
    Yep, Igi2011 did a great job laying it all out in post 205. Just note that the line numbers have changed.
    Also, if you follow the formula and add your fields as a "mod", you will be able to easily patch them into newer releases.

    I will look into the custom fields of Easy Populate CSV 1.2.5.7 when time permits. A lot of the current work I've done may actually make that easy to do... we'll see.

    -chadd

  9. #379
    Join Date
    Jan 2012
    Location
    California
    Posts
    36
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread


    did not work
    followed post 205
    Here is what I did.. Trying to impout a hidded field "Cost"

    easypopulate_4.php

    line 102
    $ep_supported_mods['Cost'] = ep_4_check_table_column(TABLE_PRODUCTS,'products_Cost');

    *********************

    easypopulate_4_import.php

    line 30
    if ($ep_supported_mods['Cost'] == true) { // Cost - chadd
    $default_these[] = 'v_products_Cost';
    line 322
    if ($ep_supported_mods['Cost'] == true) { // Cost- chadd
    $sql .= 'p.products_cost as v_products_Cost,';
    line 936
    if ($ep_supported_mods['Cost'] == true) { // Cost
    $query .= "products_Cost = '".addslashes($v_products_Cost)."',";

    line 1025
    if ($ep_supported_mods['Cost'] == true) { // Cost
    $query .= "products_Cost = '".addslashes($v_products_Cost)."',";
    *************************

    easypopulate_4_functions.php


    line 79
    if ($ep_supported_mods['Cost'] == true) { // Cost
    $filelayout[] = 'v_products_Cost';

    line 160
    if ($ep_supported_mods['Cost'] == true) { // Cost
    $filelayout_sql .= 'p.products_Cost as v_products_Cost,';

    any help or link to a tutorial would be greatly appriciated.
    "THANK YOU" to all the contributors for the help.
    Current site we are working on is
    SFM Auto Parts

  10. #380
    Join Date
    Jan 2006
    Posts
    1,542
    Plugin Contributions
    0

    Default Re: EasyPopulate 4.0 Support Thread

    Quote Originally Posted by chadderuski View Post
    One this that is important to remember!

    The BASIC import can be used to CREATE and MODIFY the options names and options values names attached to a specific product.

    But the DETAILED is ONLY used to UPDATE a specific products model, option name, options values name combo. This is why those first columns must remain untouched. The _id's are used to find and update that specific combo. Although not very flexible, this works well and is quick.

    I am waiting for feedback on what COMMON additional columns would be useful for the BASIC import, but have not received any feedback on that yet.

    I hope this clears things up.
    Chadd,

    ZC 1.5, this product:
    http://www.webdivision.prommart.com/...roducts_id=191

    We think we know how your Basic Attributes work.

    But we probably really need the Detailed Attributes sheet to do our V-Lookup thing off of the column headings I mentioned some months ago.

    I guess my question is: Can I use the Detailed Attributes sheet to ADD another color to this product? If so, how.

    I tried and think that I am stuck on column A...v_products_attributes_id

    I tried adding what should be the next number in order, but didn't work.

    Thanks.

    Steve
    Steve
    prommart.com

 

 

Similar Threads

  1. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 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