MicroDownloads [Deleted]

Looking forward to the commercial version - keen to give it a try, especially if adding links to files will be there instead of having to upload. :)
 
Looking forward to the commercial version - keen to give it a try, especially if adding links to files will be there instead of having to upload. :)
this had been added to version 1.0.9 that will be released tonight.
Would it be possible to rename Downloads Manager to Downloads on both the tab, and page?
you can rename the downloads manager to what ever you want to just search the phrase for download manager and change it.
 
Hi Micheal...

One suggestion for your the benefit of selling more commercial licenses would be that you should include an Importer for VBulletin's DownloadsII Mod. While it is not necessary for me as I can do the import myself, most other people would not be able to do so and DownloadsII has hundreds of implementations.

this has been added to the commercial version.
 
Shows as /home/***USERNAME***/public_html/***FORUM***/microdownloads/downloads/ by default. How come?

its put like this in case you want to place the files outside the sites root folders so that no one can have direct access to the files.
 
the reason for the links this way are to protect the files from being hotlinked and to stop just anyone from downloading them.
If you want people to have direct access to your files then this script is not for you as the hole point of this is to protect the files that have been added.

With the commercial version you can add links to a download file if the link is
site.com/download/3459y/somefile.zip

then when a member try's to download this file it will not show them the direct link but this link
site.com/microdownloads/mc-cv-mdhgfm-h.75/download
 
Found one serious bug. When you delete a file via the admincp the files are not deleted from the FTP and all of them need to be manually removed.

When a file is removed that was listed as a "latest file" instantly the following error occurs:
Code:
Server Error
 
Undefined index: message
1.XenForo_Application::handlePhpError() in MicroDownloads/Model/MicroDownloads.php at line 452
2.MicroDownloads_Model_MicroDownloads->getLastviewed() in MicroDownloads/ControllerPublic/index.php at line 58
3.MicroDownloads_ControllerPublic_index->actionIndex() in XenForo/FrontController.php at line 310
4.XenForo_FrontController->dispatch() in XenForo/FrontController.php at line 132
5.XenForo_FrontController->run() in /var/www/racedepartment.com/forum/index.php at line 13


Any ideas on what's causing this error to happen? I get the same error after deleting a file.
 
new commercial version had been released.

To fix the message error in this version edit the index.php file within the library\MicroDownloads\ControllerPublic folder

find all instances of

PHP:
$lastviewed = $model->getLastviewed($userid);

and replace with

PHP:
$lastviewed = '';

this will fix the error that shows

Server Error

Undefined index: message
1.XenForo_Application::handlePhpError() in MicroDownloads/Model/MicroDownloads.php at line 452
2.MicroDownloads_Model_MicroDownloads->getLastviewed() in MicroDownloads/ControllerPublic/index.php at line 58
3.MicroDownloads_ControllerPublic_index->actionIndex() in XenForo/FrontController.php at line 310
4.XenForo_FrontController->dispatch() in XenForo/FrontController.php at line 132
5.XenForo_FrontController->run() in /var/www/racedepartment.com/forum/index.php at line 13
 
Back
Top Bottom