vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Major Additions - Links and Downloads Manager (https://vborg.vbsupport.ru/showthread.php?t=231407)

obmob 02-09-2010 02:21 AM

Quote:

Originally Posted by AndrewD (Post 1977492)
Sorry, I was probably being a bit obscure.

Take a look at LDM/admin/settings, at the file_icons_dir setting. The default in this version of LDM should be images/ldm-silk-icons/, which is not the same as with the previous version. Also check that this directory contains about 63 icons - if not, upload them from the release file.

OMG... I never thought that O.o

Thanks, I'll redo my templates now u.u

Alfa1 02-09-2010 03:36 PM

Quote:

Originally Posted by AndrewD (Post 1931114)
I have no formal plans, but I suspect this is the list of priorities:

a) Get LDM working with its current functionality with VB4. So far, this seems mainly a matter of dealing with all the templates and template calls.

b) Tidy things up so that LDM follows (e.g.) the new css practices and stylevars

c) Integrate with the CMS, including widgets to replicate the previous vbadvanced addons

I'm not sure about vbadvanced support yet. Will have to see what is forthcoming.

d) Only then will I start thinking about new features/suggestions

With Integration with the CMS, do you mean making LDM a CMS content type?

obmob 02-09-2010 05:27 PM

I think Andrew refers to those modules that work with vbAdvanced. :p

How can i rebuild this link to work with vB4? I was able to do the resize on my images, but can't figure how to do this particular link OO

Code:

href="./local_links.php?catid=$linkcatid&linkid=$linkid"
I want the image to point into the single view before downloading.
You can see the online test here.

AndrewD 02-10-2010 03:35 AM

Quote:

Originally Posted by obmob (Post 1978450)
I think Andrew refers to those modules that work with vbAdvanced. :p

How can i rebuild this link to work with vB4? I was able to do the resize on my images, but can't figure how to do this particular link OO

Code:

href="./local_links.php?catid=$linkcatid&linkid=$linkid"
I want the image to point into the single view before downloading.
You can see the online test here.

Code:

href="./local_links.php?catid={vb:raw linkcatid}&linkid={vb:raw linkid}"
should do it.

obmob 02-10-2010 04:38 PM

Thanks Andrew!

Unfortunately, for some reason, my link is not showing. This is my SHORT template could you take a look and tell me what is wrong?

Basically, the main difference is trying to resize the image, maybe it has too much code, don't know, took it from the MAGNIFY template if I recall.

:)

Code:

<vb:if condition="!$linkexpired or $show['ldm_view_hidden']">
<tr id="linkid{vb:raw linkid}">
<td colspan="2" valign="top">
<table width="100%" border="0" cellspacing="3" cellpadding="0">
  <tr>
    <td width="250" align="right" valign="top">
    <vb:if condition="$linkimglink"><table border="0" cellspacing="0" cellpadding="0"> <tr>
<td align="right" valign="top"><vb:if condition="$linkimg"><div style="padding:10px;"<a href="./local_links.php?catid={vb:raw linkcatid}&linkid={vb:raw linkid)"><img class="inlineimg" src="{vb:raw vboptions.bburl}/{vb:raw LDM_scripts.RESIZE_SCRIPT}.php?{vb:raw session.sessionurl}linkid={vb:raw linkid}<vb:if condition="isset($entityid)"><vb:if condition="$entityid">&amp;entityid={vb:raw entityid}</vb:if></vb:if>&amp;size=275" alt="{vb:raw linkname}" border="0" /></a></div></vb:if>
</td> </tr></table>
  </vb:if>
</td>
    <td align="left" valign="top"><div class="smallfont" style="padding-top:10px;">{vb:raw linknewbit} {vb:raw linkfavbit} {vb:raw linksendtofriendbit} {vb:raw linkreportlinkbit} {vb:raw linkeditbit}</div>
        <div class="smallfont" style="padding-top:10px;"><b>{vb:raw linkurllink}</b> </div>
        <div class="smallfont">~{vb:raw linkusername}</div>
        <div class="smallfont">{vb:raw linkdate}</div> 
    <vb:if condition="$show['ldm_view_hits']"><div class="smallfont">{vb:rawphrase ll_hits} {vb:raw linkhits}</div></vb:if>

<vb:if condition="$linkraters"><img src="{vb:stylevar imgdir_rating}/rating-15_{vb:raw linkrate}.png" border="0" alt="{vb:raw linkrate} *" /></vb:if>
</td>
  </tr>
</table>
</td></tr>
</vb:if>


AndrewD 02-11-2010 04:38 AM

Quote:

Originally Posted by obmob (Post 1979244)
Thanks Andrew!

Unfortunately, for some reason, my link is not showing. This is my SHORT template could you take a look and tell me what is wrong?

Basically, the main difference is trying to resize the image, maybe it has too much code, don't know, took it from the MAGNIFY template if I recall.

:)

There were a couple of bugs in your template, which are fixed below. Please be aware that you will need to make some more (minor) changes with LDM 3.0.2, - e.g. RESIZE_SCRIPT will beome LDM_RESIZE_SCRIPT.

Code:

<vb:if condition="!$linkexpired or $show['ldm_view_hidden']">
<tr id="linkid{vb:raw linkid}">
<td colspan="2" valign="top">
<table width="100%" border="0" cellspacing="3" cellpadding="0">
  <tr>
    <td width="250" align="right" valign="top">
    <vb:if condition="$linkimglink"><table border="0" cellspacing="0" cellpadding="0"> <tr>
<td align="right" valign="top"><vb:if condition="$linkimg"><div style="padding:10px;"><a href="./local_links.php?catid={vb:raw linkcatid}&amp;linkid={vb:raw linkid}"><img class="inlineimg" src="{vb:raw vboptions.bburl}/{vb:raw LDM_scripts.LDM_RESIZE_SCRIPT}.php?{vb:raw session.sessionurl}linkid={vb:raw linkid}<vb:if condition="isset($entityid)"><vb:if condition="$entityid">&amp;entityid={vb:raw entityid}</vb:if></vb:if>&amp;size=275" alt="{vb:raw linkname}" border="0" /></a></div></vb:if>
</td> </tr></table>
  </vb:if>
</td>
    <td align="left" valign="top"><div class="smallfont" style="padding-top:10px;">{vb:raw linknewbit} {vb:raw linkfavbit} {vb:raw linksendtofriendbit} {vb:raw linkreportlinkbit} {vb:raw linkeditbit}</div>
        <div class="smallfont" style="padding-top:10px;"><b>{vb:raw linkurllink}</b> </div>
        <div class="smallfont">~{vb:raw linkusername}</div>
        <div class="smallfont">{vb:raw linkdate}</div> 
    <vb:if condition="$show['ldm_view_hits']"><div class="smallfont">{vb:rawphrase ll_hits} {vb:raw linkhits}</div></vb:if>

<vb:if condition="$linkraters"><img src="{vb:stylevar imgdir_rating}/rating-15_{vb:raw linkrate}.png" border="0" alt="{vb:raw linkrate} *" /></vb:if>
</td>
  </tr>
</table>
</td></tr>
</vb:if>


lovevn 02-11-2010 05:51 AM

When I upgraded i got this

Quote:

Fatal error: Maximum execution time of 30 seconds exceeded in /home/myaccount/public_html/forum/includes/class_core.php on line 780
But it seems that it was upgraded. Should I do anything?

And how can I change the name of it on my forum tab?

Thanks

lovevn 02-11-2010 06:04 AM

I tried editting the phrase but after my edit, the text on my tab disappeared!

obmob 02-11-2010 09:40 PM

Quote:

Originally Posted by AndrewD (Post 1979735)
There were a couple of bugs in your template, which are fixed below. Please be aware that you will need to make some more (minor) changes with LDM 3.0.2, - e.g. RESIZE_SCRIPT will beome LDM_RESIZE_SCRIPT.

Thank you very much Andrew! :)

Quote:

Originally Posted by lovevn (Post 1979771)
I tried editting the phrase but after my edit, the text on my tab disappeared!

Try uploading the phrases_en inside the development folder.

Quirin 02-17-2010 05:50 PM

Will there be an update to the 4.0.2? The templates are in after the update no longer.


All times are GMT. The time now is 11:02 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01971 seconds
  • Memory Usage 1,760KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete