Page 1 of 2 12 LastLast
Results 1 to 10 of 15
  1. #1
    Join Date
    Mar 2012
    Posts
    8
    Plugin Contributions
    0

    help question Major Issues with downloadable products

    Ok this is really irritating me now lol I'm not much of a newb when it comes to this stuff, but I'm really stuck now and I have no idea WHY. When I first installed my Zencart for the 2nd time (didn't use it for over a year and just did a wipe and fresh install), I followed the directions for the template I used and basically I just remembered how to setup downloadable products as from before, plus I currently sell in 3 other stores as well. Well now, after installing, I obviously setup a test account and what not and tested items that both cost money and are free. They worked, just fine, and were downloadable too. Now all of sudden, my downloads don't work. Why??! I wish I knew the answer to that. I didn't change any settings with downloads. I don't know what's going on. I have included a few screenshots.

    The first image is to show what it looks like in my cart and I know its supposed to say something like "Download #1 - Download #1" underneath the title of the product. The rest are from the admin panel of my option name, option value, and attributes, showing that everything IS setup correctly (unless I'm really dense) and yet I still can't download anything.

    Click image for larger version. 

Name:	checkout.jpg 
Views:	60 
Size:	22.2 KB 
ID:	12027Click image for larger version. 

Name:	option name.jpg 
Views:	57 
Size:	19.2 KB 
ID:	12028Click image for larger version. 

Name:	option value.jpg 
Views:	62 
Size:	19.1 KB 
ID:	12029Click image for larger version. 

Name:	attributes.jpg 
Views:	57 
Size:	19.0 KB 
ID:	12030

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

    Default Re: Major Issues with downloadable products

    What is the name of the file? The image is too tiny for me to read it ...
    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
    Mar 2012
    Posts
    8
    Plugin Contributions
    0

    Default Re: Major Issues with downloadable products

    Oh sorry hehe. The file name is PRD_tiamo.zip. A few other things I may have forgot to mention...I tried the disabling re-direct, checked all ftp permissions, etc.

    The file is green and is correct.

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

    Default Re: Major Issues with downloadable products

    What do the .htaccess files read in the directories:
    /pub
    /download

    what are the read/write settings for the directories:
    /pub
    /download
    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
    Mar 2012
    Posts
    8
    Plugin Contributions
    0

    Default Re: Major Issues with downloadable products

    RW settings are: (defaults)
    pub - 777
    download -755

    As for the htaccess files, this one is for /pub

    Code:
    #
    # @copyright Copyright 2003-2011 Zen Cart Development Team
    # @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    # @version $Id: .htaccess 18695 2011-05-04 05:24:19Z drbyte $
    #
    
    ## the following line is needed to allow Download-By-Redirect to work
      Options +FollowSymLinks
    
    #
    # This is used with Apache WebServers
    #
    # The following blocks direct HTTP requests to all filetypes in this directory recursively, except certain approved exceptions
    # It also prevents the ability of any scripts to run. No type of script, be it PHP, PERL or whatever, can normally be executed if ExecCGI is disabled.
    # Will also prevent people from seeing what is in the dir. and any sub-directories
    #
    # For this to work, you must include either 'All' or at least: 'Limit' and 'Indexes' parameters to the AllowOverride configuration in your apache/conf/httpd.conf file.
    # Additionally, if you want the added protection offered by the OPTIONS directive below, you'll need to add 'Options' to the AllowOverride list, if 'All' is not specified. 
    # Example:
    #<Directory "/usr/local/apache/htdocs">
    #  AllowOverride Limit Options Indexes
    #</Directory>
    ###############################
    
    # deny *everything*
    <FilesMatch ".*">
      Order Allow,Deny
      Deny from all
    </FilesMatch>
    
    # but now allow just *certain* necessary files:
    <FilesMatch ".*\.(zip|ZIP|gzip|pdf|PDF|mp3|MP3|swf|SWF|wma|WMA|wmv|WMV|wav|epub)$">
      Order Allow,Deny
      Allow from all
    </FilesMatch>
    
    <IfModule mod_headers.c>
      <FilesMatch ".*\.(zip|ZIP|gzip|pdf|PDF|mp3|MP3|swf|SWF|wma|WMA|wmv|WMV|wav|epub)$">
        # tell all downloads to automatically be treated as "save as" instead of launching in an application directly
        # ALERT: ForceType requires Apache2 or later. If using older version of Apache, it will need mod_mime installed. Or just comment out the ForceType line below
        # (to disable, just comment the next 2 lines by adding a '#' at the beginning of each):
        ForceType application/octet-stream
        Header set Content-Disposition attachment
      </FilesMatch>
    </IfModule>
    
    IndexIgnore */*
    
    
    ## NOTE: If you want even greater security to prevent hackers from running scripts in this folder, uncomment the following line (if your hosting company will allow you to use OPTIONS):
    # OPTIONS -Indexes -ExecCGI
    And this is for /download

    Code:
    #
    # @copyright Copyright 2003-2011 Zen Cart Development Team
    # @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    # @version $Id: .htaccess 18695 2011-05-04 05:24:19Z drbyte $
    #
    
    AuthType Basic
    AuthName "No access"
    AuthUserFile .htnopasswd
    AuthGroupFile /dev/null
    #Require valid-user
    
    
    ###############################
    #
    # This is used with Apache WebServers
    #
    # The following blocks direct HTTP requests to all filetypes in this directory recursively, except certain approved exceptions
    # It also prevents the ability of any scripts to run. No type of script, be it PHP, PERL or whatever, can normally be executed if ExecCGI is disabled.
    # Will also prevent people from seeing what is in the dir. and any sub-directories
    #
    # For this to work, you must include either 'All' or at least: 'Limit' and 'Indexes' parameters to the AllowOverride configuration in your apache/conf/httpd.conf file.
    # Additionally, if you want the added protection offered by the OPTIONS directive below, you'll need to add 'Options' to the AllowOverride list, if 'All' is not specified. 
    # Example:
    #<Directory "/usr/local/apache/htdocs">
    #  AllowOverride Limit Options Indexes
    #</Directory>
    ###############################
    
    # deny *everything*
    <FilesMatch ".*">
      Order Allow,Deny
      Deny from all
    </FilesMatch>
    
    # but now allow just *certain* necessary files:
    <FilesMatch ".*\.(zip|ZIP|gzip|pdf|PDF|mp3|MP3|swf|SWF|wma|WMA|wmv|WMV|wav|epub)$">
      Order Allow,Deny
      Allow from all
    </FilesMatch>
    
    <IfModule mod_headers.c>
      <FilesMatch ".*\.(zip|ZIP|pdf|PDF|mp3|MP3|swf|SWF|wma|WMA|wmv|WMV|wav|epub)$">
        # tell all downloads to automatically be treated as "save as" instead of launching in an application directly
        # ALERT: ForceType requires Apache2 or later. If using older version of Apache, it will need mod_mime installed. Or just comment out the ForceType line below
        # (to disable, just comment the next 2 lines by adding a '#' at the beginning of each):
        ForceType application/octet-stream
        Header set Content-Disposition attachment
      </FilesMatch>
    </IfModule>
    
    IndexIgnore */*
    
    
    ## NOTE: If you want even greater security to prevent hackers from running scripts in this folder, uncomment the following line (if your hosting company will allow you to use OPTIONS):
    # OPTIONS -Indexes -ExecCGI

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

    Default Re: Major Issues with downloadable products

    Do any of your downloads work or is it just this one that fails?
    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
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Major Issues with downloadable products

    Looking at the picture of the Attributes Controller ... there looks to be something in front of the filename ... are you using a subdirectory or is the download file in the /download directory?

    More or less, if you hit Edit on this Attribute for the Download, do you just see the filename itself in the input box, or is there something more?
    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!

  8. #8
    Join Date
    Mar 2012
    Posts
    8
    Plugin Contributions
    0

    Default Re: Major Issues with downloadable products

    None of them work, even when I add new products, but they were working before. =\

    As for the files, yes I created sub folders inside the download folder for each designer. I even did this the last time too and never had this problem.

    So for this file the full url is

    prd/kits/PRD_tiamo.zip

  9. #9
    Join Date
    Mar 2012
    Posts
    8
    Plugin Contributions
    0

    Default Re: Major Issues with downloadable products

    I was looking up more solutions and saw your posts with another person. My store url is http://ts-ds.com. There are freebies you can test if you wish. And if you need or want my login for the admin, I can do that as well. Anything to help because this is driving me insane!!! ;) Thanks lol

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

    Default Re: Major Issues with downloadable products

    I made an Order ... can you check if you see in your Zen Cart Admin under the Orders, a download on my order?

    If so, can you set that Order to Delivered?

    NOTE: Should be Order #9 ...
    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!

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Major attributes issues!
    By rainbow_pixie_star in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 21 Mar 2012, 12:34 PM
  2. Major Speed Issues
    By beejay2020 in forum General Questions
    Replies: 3
    Last Post: 23 Mar 2009, 11:26 PM
  3. Major Email Issues
    By larojiblanca in forum General Questions
    Replies: 1
    Last Post: 5 Mar 2009, 06:17 AM
  4. Major Issues with template
    By Walltalkonline in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 21 Feb 2009, 06:26 PM
  5. Major issues with Column Layout / Grid Layout for Products Listing
    By kinget in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 27 Jul 2007, 10:11 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