Quote:
Originally Posted by alpha.cccp
Got a question...when I set Latest Additions, Most Contributors and all the other side modules to 0, the column disappears on the main downloads.php page but not on any category pages...is there a way to fix that ?
Also it seems with the side column doesn't have a fixed width or a wrap or anything like that, so if the file name is rather large it will push the entire table out to the side breaking the layout ( primarily the only reason why I set everything to 0 on the left bar ).
Thank you, great mod !
|
Open downloads.php
Find
PHP Code:
eval('$dmain_jr = "' . fetch_template('downloads_cat') . '";');
eval('$dpanel = "' . fetch_template('downloads_panel_side') . '";');
eval('$dmain = "' . fetch_template('downloads_wrapper_side') . '";');
}
else if ($_GET['do'] == 'tree')
Replace with
PHP Code:
eval('$dmain_jr = "' . fetch_template('downloads_cat') . '";');
if ($vbulletin->options['ecdownloads_tops'])
{
eval('$dpanel = "' . fetch_template('downloads_panel_side') . '";');
eval('$dmain .= "' . fetch_template('downloads_wrapper_side') . '";');
}
else
{
eval('$dmain .= "' . fetch_template('downloads_wrapper_top') . '";');
}
}
else if ($_GET['do'] == 'tree')
Quote:
Originally Posted by Bram H
But what does this mean for people like myself that have a very active downloads area and also gonna install vb 4.0 suite ?
Is it likely that during an upgrade all downloads are corrupted or worse: lost?
|
You normally won't lose anything if you upgrade to vB4. The current DownloadsII version won't work (blank page or PHP errors), but the data won't be touched (unless you uninstall it).
Quote:
Originally Posted by gwerzal
Hi
This is a great mod but i am getting this error below when i try to upload a picture to the download
Fatal error: Call to undefined function imagecreatefromjpeg() in /home/elite/public_html/downloads.php on line 838
Any ideas what it could be anyone
Any help is very much appreciated
|
Do you have the GD library for PHP installed? And which version if you do (needs to be 1.8 or later)?
Quote:
Originally Posted by ZERO <ibis>
Is there a way to use this to allow users to downlaod files hosted from a remote location?
|
Currently you can only upload to folders within the forums directory. Otherwise, you need to link the files.
Quote:
Originally Posted by Mr_TriGGeR
Okay I have a question I just can't figure out. Is there a way to import all the attachments I have on the board, prior to installing this Mod? Or do I have to do them 1 at a time.
|
No, it's separated from the attachments system at the moment. You can't import attachments (or you need to do it manually of course). For vB4 I'm probably trying to integrate it with the new asset manager.