Page 1 of 3 123 LastLast
Results 1 to 10 of 25
  1. #1
    Join Date
    Apr 2009
    Posts
    155
    Plugin Contributions
    1

    Default Disappearing Download Attributes

    Hello!

    My store carries virtual products. Every so often, Zen gets hungry and eats our download attributes. Meaning, they literally disappear. One minute products will have a green dot, the file name is there; the next it's completely empty (no file name, no red or green dot), though the file is still on the server.

    This is a rather large problem for me. I have more than 20 manufacturers and 3,000+ products in inventory. It's a burden to ask everyone to drop everything and reset their downloads every time, let alone do it all myself. Restoring a prior database backup doesn't always work because it's hard to pinpoint when exactly it happens. I usually receive my first clue when a customer writes in to say they can't download their product. By that time, a newer database copy has often overwritten the last 'whole" one.

    I've come across various posts on this topic. Some of the posts are even from other stores in the same line of work, with a similar setup to mine. We subdivide the download folder in order for each manufacturer to have their own "private" FTP directory. A normal file path would look like something this:

    toni/ProductABC.zip

    I've tried to analyze the pattern, but there doesn't seem to be one. The missing category of choice seems to be random, usually a product category that all manufacturers can copy to. It's never usually the same category twice. Though some have made repeat performances. ;)

    On the flip side, I've also noticed extra, empty download attributes are sometimes added to random products. A product will have six file attributes, for example, then there will be three more "empty" ones below, with green dots, but no file name.

    Any help on this would be greatly appreciated! It's driving us absolutely crazy! And, with a very large inventory that grows on a daily basis, not a problem I want to keep dealing with. Can you spell "m-u-t-i-n-y?" LOL!

    Thank you again! :)

  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Disappearing Download Attributes

    Are you using the Copy Products or Copy Attributes features?

    Or something like Copy Attributes to another Product or a Category of Products?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  3. #3
    Join Date
    Apr 2009
    Posts
    155
    Plugin Contributions
    1

    Default Re: Disappearing Download Attributes

    Hi, Linda!

    Thanks for your post!

    We rarely do a "straight copy." If we do, then it's a linked product, not duplicated. 99% of the time, we use the MCLM, where we don't have that option.

    Does that assist the assistance? LOL! Happy to provide anything you may need! I've just upgraded to 1.3.9e from 1.3.9d. I've done them all faithfully. Also modded to the hilt if that helps to know.

    Thank you again for your help with this!

  4. #4
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Disappearing Download Attributes

    So far, the only times that I have been able to find the disappearing Downloads has related to copying Attributes from one Product to another or to a Category of Products where the Attributes overwrite the exiting Attributes and the Download is lost as the Download files are not copied in this manner ...

    I have not pinpointed any other cause, at this time ...

    Perhaps keeping current backups and checking the products_attributes_download count of records can help pinpoint when this happens based on a sudden change in the number of records in that table ...

    One idea is if the Downloads remain the same for the Products but new ones get added, a backup of the products_attributes table and the products_attributes_download table can restore the attributes/downloads or help identify the lost ones ...

    So far, I have not been able to reproduce anything like this ...

    Do you have any add ons for the attributes?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  5. #5
    Join Date
    Apr 2009
    Posts
    155
    Plugin Contributions
    1

    Default Re: Disappearing Download Attributes

    No, we don't use any attribute add-ons. We don't add additional downloads to existing products, either. Products are loaded once, downloads set, then they're copied to the additional categories where they need to go, either through "Linked Product" or the MCLM.


    I'm not sure how I'm supposed to "watch" the table you've referenced. That table currently has over 5,300 records. Some are probably for extra "empty" downloads, and some are probably missing. So I would have to fix over 3,300 products to ascertain what the "true" number should be, then take a daily count from all the new products added to inventory, check those downloads and keep a running total, at the same time running several backups and trying to figure out when the problem happens?

    When would I have time for anything else? I appreciate the suggestion, but it's a bit impractical for the size of my store. There's obviously a big problem here. This happens too many times to be random. Not only to me, but to many others, as evidenced by the the threads I've found relating to it.

    Happy to provide my tables, screen shots, and/or anything else you might need to duplicate the issue and see it for yourself. This issue very much exists, and it's going to become a deal-breaker on continuing to use Zen cart. I simply can't keep going through this every few weeks with the amount of inventory we have.

  6. #6
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Disappearing Download Attributes

    You could run, in phpMyAdmin, the following SQL to find any missing download filenames in the products_attributes_download table:

    Code:
    SELECT * FROM products_attributes_download where products_attributes_filename = '';
    This will find all records that do not have a download name set ...

    Do ALL of your Attributes have downloads on them?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  7. #7
    Join Date
    Apr 2009
    Posts
    155
    Plugin Contributions
    1

    Default Re: Disappearing Download Attributes

    I will try that code and see what happens. LOL! Thank you!

    All of our attributes are radio-button downloads, except one, which is value, specifically related to gift certificates.

  8. #8
    Join Date
    Apr 2009
    Posts
    155
    Plugin Contributions
    1

    Default Re: Disappearing Download Attributes

    SELECT * FROM zen_products_attributes_download where products_attributes_filename = '';

    Ran that, received this:

    MySQL returned an empty result set (i.e. zero rows). ( Query took 0.0001 sec )

    Yet, here's this and this:
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	extra-downloads.jpg 
Views:	69 
Size:	47.1 KB 
ID:	7886   Click image for larger version. 

Name:	missing-download.jpg 
Views:	73 
Size:	32.6 KB 
ID:	7887  

  9. #9
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Disappearing Download Attributes

    That makes it appear that the downloads are not missing from the products_attributes_download record, but rather the record itself is missing that should be associated with the Attribute ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  10. #10
    Join Date
    Apr 2009
    Posts
    155
    Plugin Contributions
    1

    Default Re: Disappearing Download Attributes

    Quote Originally Posted by Ajeh View Post
    That makes it appear that the downloads are not missing from the products_attributes_download record, but rather the record itself is missing that should be associated with the Attribute ...
    I'm so sorry, but I have no idea what that means. Unless it's what I've been trying to tell you? Downloads mysteriously go missing?

    We also have the problem of empty attributes being added. Not sure if this is one problem or two problems, or what I'm supposed to do next.

    Please advise. Thank you! :)

 

 
Page 1 of 3 123 LastLast

Similar Threads

  1. Strange behavior.. Disappearing attributes...
    By DivaVocals in forum Setting Up Categories, Products, Attributes
    Replies: 4
    Last Post: 19 Jun 2013, 11:17 PM
  2. Download and attributes?
    By tx_Rustler in forum Setting Up Categories, Products, Attributes
    Replies: 4
    Last Post: 24 May 2010, 11:27 PM
  3. Attributes filepaths keep disappearing
    By honrheart in forum Setting Up Categories, Products, Attributes
    Replies: 35
    Last Post: 3 Sep 2009, 03:11 PM
  4. Dropped download attributes
    By HinterWelt2 in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 30 Aug 2009, 05:21 PM
  5. Disappearing Attributes Order Designations
    By clifford in forum Setting Up Categories, Products, Attributes
    Replies: 2
    Last Post: 9 Aug 2007, 04:52 AM

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