Quote:
Originally Posted by TsirhCitna
Sent.
|
Quote:
Originally Posted by Xenocat
Howdy! I'll start off by saying I love this mod...
With that said tho, I've run into a recent issue with upload permissions. Seems only Administrators can upload unrestricted file sizes now. Everybody else gets a security token error, and can't upload.
I've gone thru each and every usergroup permission for LDM, and everything LOOKS ok... it was working before the latest vb security patch...
Anybody else having a problem w/ uploads? I use it to manage a community depot for source engine map files (upwards of 50 megs per file), and it kinda kills the community when they can't upload. I'm at a total loss as to what exactly the problem is now.
Any help would be greatly appreciated!
|
Really weird bug in Firefox
Take care::::
For a *temporary* fix, try editing the links_addnewlink template.
About 280 lines in, you'll find this sequence of text:
Code:
<if condition="$links_permissions['can_set_permissions'] and ($links_permissions['can_upload_files'] or $links_permissions['can_link_files'])">
<tr>
<td class="alt1" width="30%">
<strong>$vbphrase[ll_rename]</strong><br />
<span class="smallfont">
$vbphrase[ll_renameinfo]
</span>
</td>
<td class="alt1">
<input type="text" class="bginput" name="linkfile" id="linkfile" value="$linkfile" size="50" tabindex="1" onkeypress="return ldm_noenter()" />
</td>
</tr>
<else />
<tr style="display:none;">
<td class="alt1" colspan="2">
<input type="hidden" name="linkfile" value="$linkfile" />
</td>
</tr>
</if>
Change it to
Code:
<if condition="$links_permissions['can_set_permissions'] and ($links_permissions['can_upload_files'] or $links_permissions['can_link_files'])">
<tr>
<td class="alt1" width="30%">
<strong>$vbphrase[ll_rename]</strong><br />
<span class="smallfont">
$vbphrase[ll_renameinfo]
</span>
</td>
<td class="alt1">
<input type="text" class="bginput" name="linkfile" id="linkfile" value="$linkfile" size="50" tabindex="1" onkeypress="return ldm_noenter()" />
</td>
</tr>
<else />
<tr style="display:none;">
<td class="alt1" colspan="2">
<input type="hidden" name="linkfile" id="linkfile" value="$linkfile" />
</td>
</tr>
</if>