Quote:
Originally Posted by MotMann
OK..
Parse error: syntax error, unexpected T_ELSE in /www/htdocs/xxxxxxxx/Board/Forum/downloads.php on line 1022

|
I tested it and it works without errors. You should be replacing it wrong or something like that. Watch out for the brackets.
Anyway, when I tested it, it didn't work correctly like I thought it would.
A new try, tested and it works nice:
Find (in downloads.php)
PHP Code:
while ($image = $db->fetch_array($result))
{
if (($permissions['ecdownloadpermissions'] & $vbulletin->bf_ugp['ecdownloadpermissions']['caneditallfiles']) OR
(($permissions['ecdownloadpermissions'] & $vbulletin->bf_ugp['ecdownloadpermissions']['caneditownfiles']) AND
(($image['uploaderid'] == $vbulletin->userinfo['userid']) AND ($file['uploaderid'] == $vbulletin->userinfo['userid']))))
$edit = '[<a href="./downloads.php?do=file&id='.$file['id'].'&act=delimg&img='.$image['id'].'" onclick="return delete_it()">'.$vbphrase['delete'].'</a>]';
{
if (file_exists($dl->url.$image['thumb']))
{
$dimages .= '<a href="'.$dl->url.$image['name'].'"><img src="'.$dl->url.$image['thumb'].'" alt="'.$file['name'].'" title="'.$file['name'].'" border="0" /></a> by <a href="./member.php?u='.$image['uploaderid'].'">'.$image['uploader'].'</a> on '.vbdate($vbulletin->options['dateformat'], $image['date'], true).' '.$edit.'<br />';
}
else
{
$dimages .= '<a href="'.$dl->url.$image['name'].'">'.$image['name'].'</a> by <a href="./member.php?u='.$image['uploaderid'].'">'.$image['uploader'].'</a> on '.vbdate($vbulletin->options['dateformat'], $image['date'], true).' '.$edit.'<br />';
}
}
}
Replace with
PHP Code:
$dimages .= '<table cellpadding="0" cellspacing="1" border="0"><tr>';
while ($image = $db->fetch_array($result))
{
if (($permissions['ecdownloadpermissions'] & $vbulletin->bf_ugp['ecdownloadpermissions']['caneditallfiles']) OR
(($permissions['ecdownloadpermissions'] & $vbulletin->bf_ugp['ecdownloadpermissions']['caneditownfiles']) AND
(($image['uploaderid'] == $vbulletin->userinfo['userid']) AND ($file['uploaderid'] == $vbulletin->userinfo['userid']))))
{
$edit = '[<a href="./downloads.php?do=file&id='.$file['id'].'&act=delimg&img='.$image['id'].'" onclick="return delete_it()">'.$vbphrase['delete'].'</a>]';
}
if (file_exists($dl->url.$image['thumb']))
{
$dimages .= '<td class="smallfont"><a href="'.$dl->url.$image['name'].'"><img src="'.$dl->url.$image['thumb'].'" alt="'.$file['name'].'" title="'.$file['name'].'" border="0" /></a><br />by <a href="./member.php?u='.$image['uploaderid'].'">'.$image['uploader'].'</a> on '.vbdate($vbulletin->options['dateformat'], $image['date'], true).' '.$edit.'</td>';
}
else
{
$dimages .= '<td class="smallfont"><a href="'.$dl->url.$image['name'].'">'.$image['name'].'</a><br />by <a href="./member.php?u='.$image['uploaderid'].'">'.$image['uploader'].'</a> on '.vbdate($vbulletin->options['dateformat'], $image['date'], true).' '.$edit.'</td>';
}
}
$dimages .= '</tr></table>';
Quote:
Originally Posted by logofreax
Thank you RS_Jelle's
Now my Downloads are sortet right. But now my Categories are sortet from Z to A. How can I fix this Problem now?
cu
logofreax
|
Hmm, that's almost impossible. The sortfield variable is used only in the query to get the downloads from the database of the category you are viewing. It has nothing to do with any categoy query or sort option

Maybe you changed the sort option in the DownloadsII settings which affects the category sorting?
Quote:
Originally Posted by wolfe
|
That's possible as you can change the forum index script name in the vBulletin options. But you can't just rename downloads.php to index.php. Then you also need to replace all the downloads.php instances in downloads.php itself and the templates, as there is no easy option to do this. But ... it should work if you do this all, and it's not that difficult if you are familiar with PHP
Quote:
Originally Posted by phaser
To the right of the image it says:
by UserName on Today [Delete]
How would I go about getting rid of "by UserName on Today", leaving just the delete function. I've been looking in the downloads_file template but I haven't been able to find it. Am I looking in the wrong template? Any help is much appreciated. Thanks in advance!
|
That's a hardcoded piece, you have to look in downloads.php itself, but it's easy to change (look for $dimages)
Quote:
Originally Posted by LBmtb
Any idea on when the new version will be released? I'm waiting on that till I give this a shot. Unless the update will be nice and clean?
|
It takes a lot more time than I expected. It's not all very difficult PHP code, but it's
much new code (and recoding all the old)
Upgrade will be pretty painless. One thing: you will lose your download ratings, but I don't think many people really use this feature. This because the current system with a lot of possibilities gets replaced by a -vBulletin like- stars system. You also need to redo some settings, for example the extensions setting gets replaced by a whole new extensions management (like the vBulletin attachments).
But I would suggest you to just use the current version as it works great and the upgrade will be easy to do with a documentated upgrade wizard script.
Quote:
Originally Posted by wolfe
how can i make it so when i add a new download i can link to a file and link to a image all at the same time
so
New Download > Upload File / Link To File > Upload Image / Link to images.
and is it possible to make the newest added download show as a last post on the forums page where there is a forum linking to it. like LDM does
|
Those features aren't available at the moment. The first thing will be changed in v6, but the second one is more a thing for an add-on.