Version: 2.3.0, by AndrewD
Developer Last Online: Apr 2010
Category: Major Additions -
Version: 3.7.0
Rating:
Released: 12-24-2007
Last Update: 06-13-2009
Installs: 576
DB Changes Uses Plugins
Re-useable Code Additional Files Translations
No support by the author.
What this is and does
LDM is a general-purpose tool for managing libraries of links and files, and handling uploads and downloads in a flexible way, while tracking and control user access. It has a range of integrated media players and a large library of 'plugin' extras.
Installation and Usage Explained in the on-line Wiki, with a brief explanation in the file instructions.txt in the release zip. The recent revision history is given in the first post of this thread.
Please use carefully and always backup your database before upgrading. Post reports of problems and suggestions for enhancements in this thread.
14.06.09 Version 2.3.0 is now the the officially-supported version. Works with 3.7 and vb 3.8. Please post comments in this thread
22.06.08 Version 2.2.9-post1 - This is the previous supported version. Works fine with all versions of vb 3.6 and vb 3.7. All standard features except profile integration and forum prefix selection work fine with vb 3.8.
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
Anyone have an issue with taptalk on it....constantly getting this error...
Quote:
Invalid SQL:
SELECT downloads.linkid AS linkid, downloads.userid AS userid, downloads.usertime AS usertime,
links.linkname AS linkname, ltoc.catid AS catid, lcat.catname AS catname
FROM local_linksdownloads AS downloads
LEFT JOIN local_linkslink AS links
ON downloads.linkid = links.linkid
LEFT JOIN local_linksltoc AS ltoc
ON links.linkid = ltoc.linkid
LEFT JOIN local_linkscat AS lcat
ON lcat.catid = ltoc.catid
WHERE userid=
ORDER BY usertime DESC
LIMIT 10;
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY usertime DESC
LIMIT 10' at line 11
OMG, still have lots of PMs between me and him. The best guy I ever met with online, offered me help with customization at no charge. I can't believe I just realized it now that he passed away.
I migrated my data to Downloads II by running the following MySQL query against my vBulletin database:
Code:
INSERT INTO dl2_files(title,description,author,_author,uploader,uploaderid,url,totaldownloads,dateadded,size)
SELECT linkname, linkdesc, linkusername, linkusername, linkuserid, linkurl, linkhits, linkdate, linksize
FROM local_linkslink WHERE ORDER BY linkid ASC
UPDATE `dl2_files` SET `category` = '1' WHERE `category` = '0';
UPDATE `dl2_files` SET `url` = REPLACE(`url`, "/user_uploads", "");
This will assign all files to the default category which DownloadsII created following a fresh installation.
Then in AdminCP -> DownloadsII -> Settings, change the 'Downloads Folder Path' setting to:
Code:
./user_uploads
Finally go to /downloads.php?do=manfiles and click "Update Counters".
Now all you have to do is create your categories and edit your files to assign them appropriately. Definitely a time-saver vs. adding everything manually to a new script.