Page 6 of 7 FirstFirst ... 4567 LastLast
Results 51 to 60 of 70
  1. #51
    Join Date
    Sep 2009
    Posts
    254
    Plugin Contributions
    0

    Default Re: Need help with attributes please

    Well, let me just go over everything I have done to make sure I have not missed a step or instruction.

    I copied the .htaccess from the root directory to the downloads folder and rewrote it to include what you included in post #40.

    I then deleted the .htaccess from the root directory.

    Then I changed both of the configure.php files to say define('DIR_FS_DOWNLOAD', '/home/username/downloads/');

    Once I did that it told me that directory did not exist and gave me this error message:
    Code:
    Warning: The downloadable products directory does not exist: /home/username/download/. Downloadable products will not work until this directory is valid.
    Am I missing anything? Did I do something wrong?

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

    Default Re: Need help with attributes please

    remove the .htaccess from the directory:
    /home/username/downloads/

    Use this as the .htaccess for the directory:
    /home/username/downloads/

    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
    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. #53
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Need help with attributes please

    Why does the warning say /download without the S if the configure.php files are using that with the S ...
    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!

  4. #54
    Join Date
    Sep 2009
    Posts
    254
    Plugin Contributions
    0

    Default Re: Need help with attributes please

    Sorry, another typo. I include the S. That was copied from when I was not including the s. Sorry.

    I did this change you have listed above and I am still getting the error message.

    So as I have it now, I have the original .htaccess file in the home/username/ location and the rewritten .htaccess file in the home/username/downloads/ location.
    Last edited by lauriesscraps; 20 Jul 2011 at 03:51 AM.

  5. #55
    Join Date
    Jul 2011
    Posts
    45
    Plugin Contributions
    0

    Default Re: Need help with attributes please

    Any other thoughts or anything anyone can help with to get this working? We are supposed to have our grand opening on August 1st and still can't get attributes linked up.

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

    Default Re: Need help with attributes please

    Did you check with your hosting provider to see if there might be something preventing this from working?

    I cannot repeat the problem ...

    I have in my two configure.php files:
    define('DIR_FS_DOWNLOAD', '/home/username/downloads/');
    I have my Zip files in:
    /home/username/downloads/
    I have on the Attributes the Zip files as:
    filename.zip

    where filename.zip is in:
    /home/username/downloads/filename.zip

    Or, for subdirectories:
    I have on the Attributes the Zip files as:
    mysubdirectory/filename.zip

    where filename.zip is in:
    /home/username/downloads/mysubdirectory/filename.zip


    I have in my shop:
    /shop/pub

    set to 777 ...

    and my downloads work anf have the green light in the Admin on the Downloads Manager and on the Attributes Controller ...
    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. #57
    Join Date
    Jul 2011
    Posts
    45
    Plugin Contributions
    0

    Default Re: Need help with attributes please

    Yes I checked with them and they said there were no problems with permissions. Is that what I was supposed to ask them?

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

    Default Re: Need help with attributes please

    I was hoping that they would find either a permissions issue or ownership issue or something preventing the access to the root directory that might be causing this ...

    I have tried numerous combinations on your site and have not come up with an reason why this does not work on your site ...
    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!

  9. #59
    Join Date
    Jul 2011
    Posts
    45
    Plugin Contributions
    0

    Default Re: Need help with attributes please

    So, is there another specific question I should ask them? Laurie said her version of Zencart is different than my newer version, would that have caused a problem?

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

    Default Re: Need help with attributes please

    What version does she think she is using? I see version 1.3.9h ...
    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 6 of 7 FirstFirst ... 4567 LastLast

Similar Threads

  1. Easy Populate 1.2.5.5 with Stock With Attributes Help please
    By shahram in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 4 Oct 2012, 07:56 PM
  2. Attributes Display problem...need some help please.
    By Zadris in forum Setting Up Categories, Products, Attributes
    Replies: 17
    Last Post: 23 Oct 2011, 05:20 AM
  3. Need help with attributes Please
    By bromleysid in forum Setting Up Categories, Products, Attributes
    Replies: 2
    Last Post: 16 Aug 2009, 05:03 PM
  4. Add to Cart Not Appearing with Products with Attributes. Please help me!?!?
    By alegria in forum Setting Up Categories, Products, Attributes
    Replies: 9
    Last Post: 26 Jun 2008, 11:46 PM
  5. Help with attributes please
    By duquecigars in forum General Questions
    Replies: 25
    Last Post: 14 Apr 2008, 10:41 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