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

Reply
 
Thread Tools
[DRC] - External Link Framer Details »»
[DRC] - External Link Framer
Version: 1.0, by Dr.CustUmz Dr.CustUmz is offline
Developer Last Online: Aug 2023 Show Printable Version Email this Page

Category: Add-On Releases - Version: 3.8.10 Rating:
Released: 03-05-2016 Last Update: 03-23-2016 Installs: 13
Supported DB Changes Uses Plugins Auto-Templates
Additional Files  

[DRC] - Link Framer

Home Page:
http://dirtrif.com

Information:
Normally when a user clicks a link posted on your forum it opens a new window and takes the user to said site where the user my get side tracked and forget all about your site. Not no more, with [DRC] - Link Framer your visitors can now browse outbound links while staying on your site. Don't feel like you're trapping your users though, because they do have an option to leave the iFrame also.

Features:
- Frames external links
- Excludes links to your own site
- Frames links in signatures
- counts link clicks

To Come:
- Whitelist, sites to not frame
- Open links in current window. Framed or not.

If you have any other ideas don't be shy, and share your thoughts!

Changelog:
---------------------------------------------
v1.0
- initial release

Download Now

File Type: zip Link Framer.zip (357.1 KB, 111 views)

Screenshots

File Type: jpg 2016-03-06_14-25-16.jpg (107.9 KB, 0 views)
File Type: png 2016-03-06_13-57-08.png (73.7 KB, 0 views)

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
scottkoz20

Comments
  #2  
Old 03-24-2016, 03:43 PM
Dr.CustUmz's Avatar
Dr.CustUmz Dr.CustUmz is offline
 
Join Date: Aug 2013
Location: USA
Posts: 647
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

updated to 1.2, this version is to start storing how many times an external link is clicked. You wont see any changes YET, this update is just preparing for the next big update so you can start storing your clicks now, and when the next update is released, you will have stats to view =)
Attached Images
File Type: jpg 2016-03-24_11-50-27.jpg (73.6 KB, 0 views)
Reply With Quote
  #3  
Old 03-24-2016, 04:52 PM
klaush klaush is offline
 
Join Date: Oct 2005
Posts: 340
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Table 'xxxx.redirect' doesn't exist?

Any idea?

Thanks!
Reply With Quote
  #4  
Old 03-24-2016, 05:39 PM
Dr.CustUmz's Avatar
Dr.CustUmz Dr.CustUmz is offline
 
Join Date: Aug 2013
Location: USA
Posts: 647
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by klaush View Post
Table 'xxxx.redirect' doesn't exist?

Any idea?

Thanks!
o crap forgot to put table prefix in the product, updating now
Reply With Quote
Благодарность от:
MarkFL
  #5  
Old 03-24-2016, 05:42 PM
MarkFL's Avatar
MarkFL MarkFL is offline
 
Join Date: Feb 2014
Location: St. Augustine, FL
Posts: 3,853
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dr.CustUmz View Post
o crap forgot to put table prefix in the product, updating now
I know that "Oh, crap!" feeling quite well!
Reply With Quote
Благодарность от:
Dr.CustUmz
  #6  
Old 03-24-2016, 05:43 PM
Dr.CustUmz's Avatar
Dr.CustUmz Dr.CustUmz is offline
 
Join Date: Aug 2013
Location: USA
Posts: 647
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

fixed

klaush you only need to re upload out.php =)
Reply With Quote
  #7  
Old 03-24-2016, 05:59 PM
Dr.CustUmz's Avatar
Dr.CustUmz Dr.CustUmz is offline
 
Join Date: Aug 2013
Location: USA
Posts: 647
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

got another o crap -_- forgot to even create the table, updating now
Reply With Quote
  #8  
Old 03-24-2016, 06:02 PM
klaush klaush is offline
 
Join Date: Oct 2005
Posts: 340
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Good support! I like that! Thanks a lot!
Reply With Quote
Благодарность от:
MarkFL
  #9  
Old 03-24-2016, 06:08 PM
MarkFL's Avatar
MarkFL MarkFL is offline
 
Join Date: Feb 2014
Location: St. Augustine, FL
Posts: 3,853
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dr.CustUmz View Post
got another o crap -_- forgot to even create the table, updating now
Remember to include the code to remove the table if a user uninstalls your product.
Reply With Quote
2 благодарности(ей) от:
In Omnibus, klaush
  #10  
Old 03-24-2016, 06:11 PM
Dr.CustUmz's Avatar
Dr.CustUmz Dr.CustUmz is offline
 
Join Date: Aug 2013
Location: USA
Posts: 647
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

sorry klaush i pulled the update, for now. I kind of rushed it, it doesn't do anything as of now anyway just starts collecting count so when the next big update is ready you will already have stats.

the release you grabbed relies on the table (which you can run this in a query to create)
Code:
CREATE TABLE redirect ( 
   url varchar(100) NOT NULL, 
   hits int(10) DEFAULT '0' NOT NULL, 
   PRIMARY KEY (url) 
);
but i forgot to add that to the install code. looking it over I'm going to rename a few things and probably append the table into another table for the final revision of 2.0

I'll try to have 1.5 done today which will include this feature, I'm just a little stuck at the moment.
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 07:08 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.05553 seconds
  • Memory Usage 2,340KB
  • 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
  • (1)bbcode_code
  • (3)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
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (6)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (5)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (4)postbit_attachment
  • (10)postbit_onlinestatus
  • (10)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_postinfo_query
  • fetch_postinfo
  • 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