Download Fetch [support thread]
This is the support thread for Zen Cart Download Fetch.
In the free software addons Download Fetch
So if you have any question please post them here.
Note: Download Fetch uses specific features of PHP 5 so you must be running PHP 5 or higher to use this addon.
Skip
Re: Download Fetch [support thread]
easy to install ...thank you for the mod
Re: Download Fetch [support thread]
Hi,
Can you point me the Download Fetch mod link ?.
Re: Download Fetch [support thread]
Quote:
Originally Posted by
franklin
Hi,
Can you point me the Download Fetch mod link ?.
http://www.zen-cart.com/index.php?ma...oducts_id=1382
Re: Download Fetch [support thread]
Quote:
Originally Posted by
skipwater
This is the support thread for Zen Cart Download Fetch.
In the free software addons
Download Fetch
Skip
I am having an issue once everything got up and running. Fetch is set to have the download available for 1 week. But when I try to use the link no matter what it says its expired.
Re: Download Fetch [support thread]
You are getting this error.
Error Sorry, the requested download has expired
When you use the link in the email?
Under admin->tools->Download Fetch File
Select the file that you wish to change and edit the Active Period to a value that you want.
ie.
86400 = 1 day
604800 = 1 week
2419200 = 1 month
29030400 = 1 year
If you just want to allow one user/customer more time then you must go to Download Fetch User Admin and adjust the download date.
Skip
Re: Download Fetch [support thread]
no, its not needing more time. I get the warning right away. I have the time allowed set at 604800. Email comes with the link in 5-15 min, you click the link and get the "expired" error.
another possible bug in the admin section:
example
there are already 10 files listed in [Download Fetch File Admin]
if I select any of those so its highlighed but don't click edit, instead I click [New File]
enter all info (all fields are blank) and then there are only two options [update] [cancel]
if you pick [update] then it updates the highlighted row and does not add a new one.
if I have the last item in the list highlighted then do the same steps above then and only then will it insert the new record.
1 Attachment(s)
Re: Download Fetch [support thread]
I have uploaded a new version 1.1 to the Free Software Add Ons http://www.zen-cart.com/index.php?ma...oducts_id=1382 but until it is updated to version 1.1.
This attached zip file with 3 files in it will bring current users up to date v1.1.
(The files are already arranged into the correct folders you just need to rename the YOUR_ADMIN folder.)
Download Fetch Version 1.1
Fixed math for download active time allowed
Fixed new/add record sql insert
Fixed character ' in sql records with \'
Thanks to snip1er for the find and help.
And OH do me a favor BACKUP! your files.
Skip
Re: Download Fetch [support thread]
ok I know I am probably having a major duh moment but..... I deleted the test " it says no where not to lol " and now I have no buttons to create a new......... and also when I was testing everything worked except for not opening the d/l to retrieve the file.:wacko: thanks in advance
Re: Download Fetch [support thread]
Quote:
Originally Posted by
MischiefDesignz
ok I know I am probably having a major duh moment but..... I deleted the test " it says no where not to lol " and now I have no buttons to create a new.........
Deleting the only record in the mod and leaving zero records was a missed coding error not to have a add new file option.
The fix is below:
File YOUR_ADMIN/download_fetch.php
Find about line 236
Code:
<?php
$download_fetch_query->MoveNext();
}
?>
Change to
Code:
<?php
$download_fetch_query->MoveNext();
}
if ($download_fetch_query_numrows < 1){
echo '<div align="center"><b>NO Records Found You Must Add </b><br /><a href="' . zen_href_link(FILENAME_DOWNLOAD_FETCH, zen_get_all_get_params(array('padID', 'action')) . 'padID=' . $padInfo->file_id . '&page=' . $_GET['page'].'&action=newfile') . '">' . zen_image_button('button_new_file.gif', IMAGE_NEW_FILE) . '</a> </div>' ;
}
?>
Quote:
and also when I was testing everything worked except for not opening the d/l to retrieve the file.:wacko: thanks in advance
Need more info on this one. PHP version, what browser IE ?, Firefox ? You had the green Valid filename image showing?
Skip