Page 190 of 367 FirstFirst ... 90140180188189190191192200240290 ... LastLast
Results 1,891 to 1,900 of 3663
  1. #1891
    Join Date
    Mar 2015
    Location
    Queensland, Australia
    Posts
    11
    Plugin Contributions
    0

    Default Re: Using EP4 to update existing products

    also further to this

    I have just noticed that when doing an attribute export, changing the price (v_options_values_price) and importing again
    it does not change the price of the options, even tho it says it completes and shows the new price in IMPORT RESULTS of EP4

    Regards

  2. #1892
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: Using EP4 to update existing products

    Quote Originally Posted by HugoStiglitz View Post
    also further to this

    I have just noticed that when doing an attribute export, changing the price (v_options_values_price) and importing again
    it does not change the price of the options, even tho it says it completes and shows the new price in IMPORT RESULTS of EP4

    Regards
    Are you sure that you font have two entries for the same model # and that the first one was changed, but the second was not and therefore overwrote the original?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  3. #1893
    Join Date
    Mar 2015
    Location
    Queensland, Australia
    Posts
    11
    Plugin Contributions
    0

    Default Re: Using EP4 to update existing products

    yeah pretty sure
    I also noticed it does not seem to work adding new items into the CSV, the don't show up in options name or value manager, or in the attribute controller

    a pic of my import file is attached

    Name:  ImportOptions.jpg
Views: 141
Size:  77.3 KB

  4. #1894
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: Using EP4 to update existing products

    What is the filename?

    Better way to ask is how is the filename different from when it was downloaded?
    Last edited by mc12345678; 18 Mar 2015 at 06:09 AM.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  5. #1895
    Join Date
    Mar 2015
    Location
    Queensland, Australia
    Posts
    11
    Plugin Contributions
    0

    Default Re: Using EP4 to update existing products

    the export file is Attrib-Detailed-EP2015Mar18-100702.csv
    I then modified this file and resaved it as WebsiteImportOptions.csv, uploaded and imported

  6. #1896
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: Using EP4 to update existing products

    Quote Originally Posted by HugoStiglitz View Post
    the export file is Attrib-Detailed-EP2015Mar18-100702.csv
    I then modified this file and resaved it as WebsiteImportOptions.csv, uploaded and imported
    Therein lies the. Rub...

    There are prefixes to some filenames that must remain intact when renaming the file for EP4 to know how to properly process the file. This is one of those filetypes. Rename the file so that it begins with at least: Attrib-Detailed-EP and try again...

    Although the provided instructions do not go in great detail, this is one of those things that is discussed.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  7. #1897
    Join Date
    Mar 2015
    Location
    Queensland, Australia
    Posts
    11
    Plugin Contributions
    0

    Default Re: Using EP4 to update existing products

    MC thanks a lot,
    that's fixed it. sorry about that.

    any news on the v_options_values_price_w issue?

  8. #1898
    Join Date
    Feb 2015
    Posts
    23
    Plugin Contributions
    0

    Default Re: Using EP4 to update existing products

    Hello, I have a question regarding updating quantities.

    If I have 10,000 products in my catalog, it would be painstaking to search for every single item and update the quantity one-by-one. I exported a Model/Price/Quantity and tried to update the easiest way possible. I entered, at the bottom, the model and new quantity for an existing item. When I imported it, the quantity updated in my catalog, but the item name got deleted.

    Why would the item name get deleted?? That isn't even one of the editable fields when doing Model/Price/Qty. I can understand if I left the required field blank, but the field isn't even there.

    Is there a simple way to update mass product quantities? Shouldn't new data overwrite old, and same data remain untouched?

  9. #1899
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: Using EP4 to update existing products

    Quote Originally Posted by Jenovee View Post
    Hello, I have a question regarding updating quantities.

    If I have 10,000 products in my catalog, it would be painstaking to search for every single item and update the quantity one-by-one. I exported a Model/Price/Quantity and tried to update the easiest way possible. I entered, at the bottom, the model and new quantity for an existing item. When I imported it, the quantity updated in my catalog, but the item name got deleted.

    Why would the item name get deleted?? That isn't even one of the editable fields when doing Model/Price/Qty. I can understand if I left the required field blank, but the field isn't even there.

    Is there a simple way to update mass product quantities? Shouldn't new data overwrite old, and same data remain untouched?
    Looks like you found an error... Hmm.. Now to call the correction a new version or just fix it... Been working on a few changes/additions... How about this, I provide the correction location and soon should have an update (especially since trying to get the v_options_values_price_w field addressed in addition to some of the other things...

    line 589 of admin/easypopulate_4_import.php of version 4.0.28 currently reads:

    Code:
     $row2 = ($ep_uses_mysqli ? mysqli_fetch_array($result) : mysql_fetch_array($result2));
    and should read:

    Code:
    $row2 = ($ep_uses_mysqli ? mysqli_fetch_array($result2) : mysql_fetch_array($result2));
    That will resolve your issue, and may resolve some of the issues identified recently by others...
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  10. #1900
    Join Date
    Feb 2015
    Posts
    23
    Plugin Contributions
    0

    Default Re: Using EP4 to update existing products

    Hello. Thanks for the reply, mc. I changed the code as you stated (just the number "2") and tried it again. No, it's still doing the exact same thing. It imports everything fine, but still deletes the product name.

    I logged out and back in also, just in case it needed to "refresh" in some way. But same thing over and over.

    Quote Originally Posted by mc12345678 View Post
    Looks like you found an error... Hmm.. Now to call the correction a new version or just fix it... Been working on a few changes/additions... How about this, I provide the correction location and soon should have an update (especially since trying to get the v_options_values_price_w field addressed in addition to some of the other things...

    line 589 of admin/easypopulate_4_import.php of version 4.0.28 currently reads:

    Code:
     $row2 = ($ep_uses_mysqli ? mysqli_fetch_array($result) : mysql_fetch_array($result2));
    and should read:

    Code:
    $row2 = ($ep_uses_mysqli ? mysqli_fetch_array($result2) : mysql_fetch_array($result2));
    That will resolve your issue, and may resolve some of the issues identified recently by others...

 

 

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