Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBulletin Link Directory Details »»
vBulletin Link Directory
Version: 1.05, by Vossi Vossi is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Add-On Releases - Version: 4.x.x Rating:
Released: 12-15-2010 Last Update: 09-09-2011 Installs: 297
DB Changes Uses Plugins Auto-Templates
Additional Files Translations  
No support by the author.

What is vBulletin Link Directory:

vBulletin Link Directory with vBulletin integration has a couple of functions and options that a comfortable link directory needs to have:
  • Links can be moderated
  • Categories with subcategories (with images/icons/descriptions/etc)
  • Subcategories in subcategories
  • Comment-function (also moderated)
  • Uses the forum search for finding links
  • Detailed usergroup and administrator permissions
  • Uses vBseo and vBCMS
  • Facebook integration
  • Thumbnail and banner function
  • Additional pictures/icons in categories
  • Fully vB-standard kept within code
  • Additional Functions for Links/Images
  • Meta-Informations
  • Check if link exists, read linked site informations, etc
  • Google PageRank
  • Alexa Page Traffic
  • 'Link-us'-function
  • Additional style settings (fixed sizes for banners/images by stylevars)
  • Show direktlink and thumbnails while categorie view

Installation/Update:

Upload all files you find in /upload to your forum root and change
the read/write permissions of:

/vblinklist/backup
/vblinklist/image

to 0777 in order to be able to make backups if needed.

Afterwards import 'product-vblinklist.xml' in admincp. Then configure the group permissions aswell as the administrator permissions.

Now you can change the settings of the addons in admincp and create categories like you want to.

The Link Directory is ready to use now, every function is used to vB-standard.

Adding the widget:

Admincp -> 'vBulletin CMS' -> 'Widgets' -> 'Create new widget'

Widget type: PHP Direct Execution
Title: Link Directory
Description: Shows a random entry and statistic from vBulletin Link Directory in CMS

Then 'Save' the widget and you'll see the list with the widgets alreday available in your forum. At the right side from 'Yellow Pages' you klick 'Configure' and enter the follwing information:

'Enter Php Code, in the form "$results = "':
PHP Code:
global $vbulletin$vbphrases$show$stylevar;
include(
DIR "/vblinklist/widgets/widget_linklist_stats.php"); 
Template Name: vblinklist_widget_stats
Cache refresh time (minutes): 5

Then 'Save' the configuration. The file to include (DIR . "/vblinklist/widgets/widget_linklist_stats.php") can be found in the vBulletin-CMS folder in the ZIP-file to this product.

Now you can place the widget with the Layout Manager.

Tools:

You'll find import-scripts in the 'tools'-directory to import links from other addons if needed.

General:

Updates can easily be done by just following the explanation for installation.

This addon will be supported by me, please take care of the license.txt-file.

IT IS NOT ALLOWED TO REMOVE OR CHANGE THE COPYRIGHT IN ANY WAYS.

Brandfree versions are available, please get in touch with me using PM for that.

Your feedback is welcome, please post bugs in this thread.

Download Now

File Type: zip vblinkdirectory105.zip (246.1 KB, 1297 views)
File Type: zip vblinkdirectory105vb415.zip (233.3 KB, 1017 views)

Screenshots

File Type: png 0-home.png (39.2 KB, 0 views)
File Type: jpg 1-showcat.jpg (84.2 KB, 0 views)
File Type: jpg 2-showentry.jpg (72.5 KB, 0 views)
File Type: png 3-search.png (20.9 KB, 0 views)
File Type: png 4-profile.png (22.1 KB, 0 views)
File Type: png 5-admincp.png (4.2 KB, 0 views)
File Type: jpg 6-generalsettings.jpg (69.4 KB, 0 views)
File Type: jpg 7-thumbnailsettings.jpg (111.5 KB, 0 views)

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
5 благодарности(ей) от:
adabros, Delfi_r, imported_EkSeS, pcmwebmaster, Prober

Comments
  #412  
Old 09-10-2011, 10:48 AM
Vossi Vossi is offline
 
Join Date: Mar 2005
Location: Germany
Posts: 437
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Version for 4.1.5 has been uploaded. For an update it's enough to just replace vblinklist.php in forumroot.
Reply With Quote
  #413  
Old 09-10-2011, 05:46 PM
GamersChallenge GamersChallenge is offline
 
Join Date: Aug 2011
Posts: 43
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Vossi View Post
Version for 4.1.5 has been uploaded. For an update it's enough to just replace vblinklist.php in forumroot.
just installed for the first time. got this error when trying to add a link:

Fatal error: Call to undefined function convert_wysiwyg_html_to_bbcode() in /home/gamersch/public_html/vblinklist.php on line 1931
Reply With Quote
  #414  
Old 09-10-2011, 06:51 PM
Vossi Vossi is offline
 
Join Date: Mar 2005
Location: Germany
Posts: 437
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

In vblinklist.php search for (in line 1931):
PHP Code:
$message = ($vbulletin->GPC['wysiwyg'] ? convert_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], $catinfo['allowhtml']) : htmlspecialchars_uni($vbulletin->GPC['message'])); 
and replace with
PHP Code:
require_once(DIR '/includes/class_wysiwygparser.php');
$html_parser = new vB_WysiwygHtmlParser($vbulletin);
$message $html_parser->parse_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], $catinfo['allowhtml']); 
Reply With Quote
  #415  
Old 09-10-2011, 09:31 PM
GamersChallenge GamersChallenge is offline
 
Join Date: Aug 2011
Posts: 43
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks vossi. worked great. could you add for your next update max height, max width, max size next to the upload image?

thanks again, great mod, working for 1.1.5
Reply With Quote
  #416  
Old 09-25-2011, 01:46 PM
adabros adabros is offline
 
Join Date: Mar 2005
Posts: 29
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Le seguenti dipendenze non sono state trovate:

Questo prodotto non ? compatibile con la versione 4.0.3 di vBulletin.


sorry for me!
there isn't any version for me?
compatible.
Reply With Quote
  #417  
Old 10-02-2011, 11:40 PM
vb.help vb.help is offline
 
Join Date: Aug 2011
Posts: 48
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I was told to add nofollow to all external links for SEO purpose .. So how would i add nofollow to the external links from this mod ... please advise ...

Thanks
Reply With Quote
  #418  
Old 10-05-2011, 02:23 PM
Kat Kat is offline
 
Join Date: Nov 2001
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

When I go to import the xml, I get this error:

The following dependencies were not met:
This product is not compatible with version 4.0.7 of vBulletin. (Compatible starting with 4.0.8 / Incompatible with 4.2.0 Alpha 1 and greater)

It seems this is supposed to be compatible with 4.0.7 so I am wondering why I am getting this error? Help please? Thanks!
Reply With Quote
  #419  
Old 10-05-2011, 02:46 PM
Vossi Vossi is offline
 
Join Date: Mar 2005
Location: Germany
Posts: 437
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, it's not made for 4.0.7 and below, that's why
Reply With Quote
  #420  
Old 10-05-2011, 03:24 PM
Kat Kat is offline
 
Join Date: Nov 2001
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It sure doesn't say that anywhere that I could find. It says its for 4.X.X and someone else said they were using it on 4.01 or 4.02 I think. (I think it was even you that said you had it working on a verson lower than 4.07)
Reply With Quote
  #421  
Old 10-05-2011, 03:55 PM
Vossi Vossi is offline
 
Join Date: Mar 2005
Location: Germany
Posts: 437
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

But you were trying vblinkdirectory105.zip and not vblinkdirectory105vb415.zip , correct?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 09:33 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.08253 seconds
  • Memory Usage 2,366KB
  • Queries Executed 27 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (5)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete