Version: 2.2.8, by AndrewD
Developer Last Online: Apr 2010
Category: Major Additions -
Version: 3.6.x
Rating:
Released: 06-18-2006
Last Update: 02-03-2008
Installs: 661
DB Changes Uses Plugins
Additional Files Translations
No support by the author.
Version 2.3.0 of LDM is now the official release. This works with both VB3.7 and VB3.8. You can obtain it here
Version 2.2.8 remains available here, with limited support.
04.02.08: patch-cat.xml 'extra' uploaded - see first post for information
27.10.07: Version 2.2.8-post1 uploaded
French translation of product installer uploaded (other language translations are in the main release zip)
Remember to back up your current database tables before upgrading.
What this is and does
LDM is a general-purpose link and file manager, which handles user uploads and downloads in a flexible way. A range of media players is integrated into LDM and others are included as plugin extras. LDM is described below in the first post of this thread, which also contains a brief list of the currently-known bugs.
This release of LDM works correctly with all VB versions 3.6.x and recent versions of vbadvanced.
HI, I have everything loaded and working except the jukebox. The window opens but there is no way to play the file. I can download the file fine. I am running 2.2.7 on a Linux server.
HI, I have everything loaded and working except the jukebox. The window opens but there is no way to play the file. I can download the file fine. I am running 2.2.7 on a Linux server.
Thanks in advance for any help.
Are you running your web browser on a Windows PC, a Linux box or a Mac? The Jukebox should now work on all three. Am happy to take a look if you send me a PM with your site details.
firstly my request. andrew. as you can see from my first screen grab i have vba wrapped around ldm
what im trying to do is remove the navbar as i dont have it on other cms pages ya see.
so what im doing is removing '$navbar' out of my adv_portal template.
as seen in the second screen capture this gets rid of the navbar but i get a error (as you can see)
if i remove the $navbar out of my link_header template it still stays there
can you tell me how i can get rid of the navbar pls on ldm pages?
many thanks for your time
also onto my offer of help Alfa 1 if you look at my first screengrab i can show you how to wrap vba around ldm like that. when i click on a category it opens that category with my vba site nav to the left etc is that what your after?
firstly my request. andrew. as you can see from my first screen grab i have vba wrapped around ldm
what im trying to do is remove the navbar as i dont have it on other cms pages ya see.
so what im doing is removing '$navbar' out of my adv_portal template.
as seen in the second screen capture this gets rid of the navbar but i get a error (as you can see)
if i remove the $navbar out of my link_header template it still stays there
can you tell me how i can get rid of the navbar pls on ldm pages?
many thanks for your time
I just took a look at your site, but I'm not getting the error you've posted - it's a Javascript error, by the way, and from the look of the line number, it's probably in the Javascript you've added at at the bottom of the page. So I wonder if the navbar removal is a bit of a red herring - the problem may be somewhere else.
cheers for the reply andrew. when i remove the following code out of my footer then it works with no errors but im not sure what this code is what it does or if its needed or not lol any ideas?
PHP Code:
<if condition="$show['dst_correction']">
<!-- auto DST correction code -->
<form action="profile.php?do=dst" method="post" name="dstform">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="dst" />
</form>
<script type="text/javascript">
<!--
var tzOffset = $bbuserinfo[timezoneoffset] + $bbuserinfo[dstonoff];
var utcOffset = new Date().getTimezoneOffset() / 60;
if (Math.abs(tzOffset + utcOffset) == 1)
{ // Dst offset is 1 so its changed
document.forms.dstform.submit();
}
//-->
</script>
<!-- / auto DST correction code -->
cheers for the reply andrew. when i remove the following code out of my footer then it works with no errors but im not sure what this code is what it does or if its needed or not lol any ideas?
Yes, this is the standard VB page initialisation.
The first bit is used by VB to auto-reset your users' times when daylight saving time/summer time begins.
PHP Code:
<if condition="$show['dst_correction']">
<!-- auto DST correction code -->
<form action="profile.php?do=dst" method="post" name="dstform">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="dst" />
</form>
<script type="text/javascript">
<!--
var tzOffset = $bbuserinfo[timezoneoffset] + $bbuserinfo[dstonoff];
var utcOffset = new Date().getTimezoneOffset() / 60;
if (Math.abs(tzOffset + utcOffset) == 1)
{ // Dst offset is 1 so its changed
document.forms.dstform.submit();
}
//-->
</script>
<!-- / auto DST correction code -->
</if>
The next bit carries out a whole load of vb initialisation, to make sure that your pop-up menus, etc, work properly. I'll bet that the error is coming from here - you might try just removing these lines. Am not sure how this is interacting with vbadvanced/LDM, though.