osCmax v2.5 User Manual
Page 1 of 2 12 LastLast
Results 1 to 10 of 19

Can't get downloads to work

This is a discussion on Can't get downloads to work within the osCMax v2 Features Discussion forums, part of the osCmax v2.0 Forums category; I just can't seem to get digital products to show a dowload availability. Can anyone help? http://www.irebuildmarantz.com:82/catalog happy to give ...

      
  1. #1
    New Member
    Join Date
    Jul 2009
    Posts
    16
    Rep Power
    0


    Default Can't get downloads to work

    I just can't seem to get digital products to show a dowload availability. Can anyone help?
    http://www.irebuildmarantz.com:82/catalog

    happy to give admin credentials if that helps.
    gladly give company credit to anyone willing to take this one on!
    Thanks,
    Rob

  2. #2
    New Member
    Join Date
    Jul 2009
    Posts
    16
    Rep Power
    0


    Default Re: Can't get downloads to work

    Please, someone? I've gone through the code as best i can, i'm versed with poking around in MySQL enough to check suggestions... I really want to get this going. Maybe someone could point me in the right area to look. Here is what i have:

    i never get the download controller ever. i never see a download now button or anything like it. I can't find where download.php is even ever called.

    Aren't you supposed to be able to go to your order history and pull up the item that is downloadable that you purchased? I can't get this ever. I checked that the files are available and they are. There are green checks alowing download for every option, still nothing... The DL section shows them in the drop down menu. I have the date at 7 days and the max downloads at 100. Nada...

    PLEASE HELP!!!

  3. #3
    New Member
    Join Date
    Jul 2009
    Posts
    16
    Rep Power
    0


    Default Re: Can't get downloads to work

    Well, thanks for all the help </sarcasm> but i found the problem by looking at configurethat.com's test site

    Turns out you must have at least one option created in products atributes or no downloads!! The dl doesn't even come up otherwise.

    I've included a screen shot of what i did to get the downloads to work:
    www.irebuildmarantz.com/SP32-20090712-120719.jpg

    Hope this helps others... Cheers! Rob

  4. #4
    jpf
    jpf is offline
    osCMax Testing Team
    jpf's Avatar
    Join Date
    Sep 2003
    Location
    Manitoba, Canada
    Posts
    2,699
    Rep Power
    22


    Default Re: Can't get downloads to work

    <sarcasm>Sending you the support billing in the mail!</sarcasm>

    Thanks for posting back that you found the solution and what is was.

    Free PEER to PEER support only work if other user actually help. Micheal and myself are only two people of the may excellent people here that provide FREE help. I can only HELP and answer so many. Yes I saw your help request - I created a DOWNLOAD item in the DEMO site because of your posting.... But time slipped and did not get around to answering everyone.


    Feel free to answer any other recent request/questions that you may be able to help with.
    JPF - osCMax Fourm Moderator - To contact, post on the forum or click here
    Try out our osCMax at: Live Catalog Demo
    Limited access Admin: Live Admin Demo
    Feel free to add products they way you want and then purchase them -=+=- Sorry nothing will be billed or shipped!

  5. #5
    New Member
    Join Date
    Jul 2009
    Posts
    16
    Rep Power
    0


    Default Re: Can't get downloads to work

    Quote Originally Posted by jpf View Post
    <sarcasm>Sending you the support billing in the mail!</sarcasm>

    Thanks for posting back that you found the solution and what is was.

    Free PEER to PEER support only work if other user actually help. Micheal and myself are only two people of the may excellent people here that provide FREE help. I can only HELP and answer so many. Yes I saw your help request - I created a DOWNLOAD item in the DEMO site because of your posting.... But time slipped and did not get around to answering everyone.


    Feel free to answer any other recent request/questions that you may be able to help with.
    looks like it's stuck in the system...

  6. #6
    osCMax Development Team
    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    2,678
    Rep Power
    49


    Default Re: Can't get downloads to work

    I too have tried to test this through my demo store.

    Oddly I am now getting this sql error when I try to add the Product Attribute ...

    1136 - Column count doesn't match value count at row 1

    insert into products_attributes values (null, '112', '2', '10', '0', '+')

    [TEP STOP]
    ... although I don't get this using the excellent AJAX bit in the product page. (probably me fiddling with something - ooops!)

    I also get a problem if the price of the item is set to zero as it keeps looping me back to the payment information page to select the payment method. (Goes through fine at £0.01)

    I have tried this in jpfs demo store but the payment page is blank - html source stops staight after the <!-- Content --> flag ...

    So, unfortunately I am unable to help too much with your problem - but we do try - it just takes a while!

    regards,
    pgmarshall
    _______________________________

  7. #7
    osCMax Development Team
    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    2,678
    Rep Power
    49


    Smile Re: Can't get downloads to work

    Right! After a bit of googling the TEP error can be fixed like this ...

    Find in admin/products_attributes

    Code:
    
    tep_db_query("insert into " . TABLE_PRODUCTS_ATTRIBUTES . " values (null, '" . (int)$products_id . "', '" . (int)$options_id . "', '" . (int)$values_id . "', '" . (float)tep_db_input($value_price) . "', '" . tep_db_input($price_prefix) . "')");
    
    and replace with

    Code:
    tep_db_query("insert into " . TABLE_PRODUCTS_ATTRIBUTES . "(products_id, options_id, options_values_id, options_values_price, price_prefix)values ('" . (int)$products_id . "', '" . (int)$options_id . "', '" . (int)$values_id . "', '" . tep_db_input($value_price) . "', '" . tep_db_input($price_prefix) . "')");
    I have no idea what this does differently - but it does get rid of the problem.

    Hope this helps someone,

    Regards,
    pgmarshall
    _______________________________

  8. #8
    osCMax Development Team
    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    2,678
    Rep Power
    49


    Smile Re: Can't get downloads to work

    So, now I have managed to load a fresh download product ...

    It seems to work fine for me. I have loaded a test product here.

    Checkout through Check/Money Order.

    I get the warning at the bottom saying:

    NOTE: Downloads are not available until payment has been confirmed
    Once the order is confirmed - I go into my account and View the order - I can see the download button and it works. Screenshot here.

    So unfortunately it would appear that there is a bug in your install rather than the source code.

    Have you checked that the product has: a start date, a stock level, zero weight, length, width, height? Without these it may not work.

    Have you been into catalog --> Products Attributes and

    1) added a product option eg. Download
    2) added a option value eg. file, pdf, documentation, etc.
    3) added a product attribute eg. Download, pdf, +£2.50
    4) make sure you fill in the download file name in the box at the bottom.
    5) make sure you have uploaded the file to the Download folder in the catlog folder.

    Confirm you have done all this and then post back if you are still struggling and I will see if I can have a look through your admin.

    Good luck,

    Regards,
    pgmarshall
    _______________________________

  9. #9
    jpf
    jpf is offline
    osCMax Testing Team
    jpf's Avatar
    Join Date
    Sep 2003
    Location
    Manitoba, Canada
    Posts
    2,699
    Rep Power
    22


    Default Re: Can't get downloads to work

    Submit to bug tracker!!!!

    As in PLEASE submit it as .....
    JPF - osCMax Fourm Moderator - To contact, post on the forum or click here
    Try out our osCMax at: Live Catalog Demo
    Limited access Admin: Live Admin Demo
    Feel free to add products they way you want and then purchase them -=+=- Sorry nothing will be billed or shipped!

  10. #10
    New Member
    Join Date
    Jul 2009
    Posts
    16
    Rep Power
    0


    Default Re: Can't get downloads to work

    now if someone can answer the question of what i have to do to get the paypal to work... it appears that cURL is my problem? i've loaded the dll's and enabled the cURL setting in php.ini... error. I'm running easyPHP1.8. Anyone know if this is fixed in easyPHP3?

    suggestions, ideas, etc. Thanks!

    I appreciate it!
    Cheers! ~RB

Page 1 of 2 12 LastLast

Similar Threads

  1. do CreLoaded templates work on oscmax? Also do oscommerce contribs work on oscmax?
    By Misery_Kitty in forum osCmax v2 Installation issues
    Replies: 7
    Last Post: 02-12-2008, 01:06 AM
  2. Free Downloads FX
    By michael_s in forum New osCommerce Contributions
    Replies: 0
    Last Post: 07-04-2007, 01:14 PM
  3. PWA IPN and Downloads - very defeated
    By creativeone in forum osCommerce 2.2 Modification Help
    Replies: 1
    Last Post: 12-23-2005, 10:24 PM
  4. downloads
    By jloyzaga in forum osCmax v1.7 Discussion
    Replies: 2
    Last Post: 10-17-2003, 02:22 AM
  5. Where to get downloads...
    By Bphp in forum osCommerce 2.2 Installation Help
    Replies: 4
    Last Post: 01-24-2003, 07:49 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
  •