Go Back   vb.org Archive > Search Forums
FAQ Community Calendar Today's Posts Search

Showing results 1 to 25 of 77
Search took 0.00 seconds.
Search: Posts Made By: bjhuang
Forum: vBulletin 3.8 Add-ons 04-11-2010, 06:25 PM
Replies: 35
Social Group and Album Enhancements - View all your social group messages
Views: 11,195
Posted By bjhuang
to reduce queries: if...

to reduce queries:

if (!$message['discussiontitle']&&!$discussiontitlecache[$message['discussionid']])
{
$title = $vbulletin->db->query_first("
SELECT groupmessage.title as...
Forum: vBulletin 3.7 Add-ons 04-09-2010, 08:39 PM
Replies: 334
Add-On Releases - vbAnonymizer
Views: 100,835
Posted By bjhuang
it conflicts with AME in WYSIWYG mode. this...

it conflicts with AME in WYSIWYG mode.

this is my solution:

[open]
functions_vbanonymizer.php

[find]
$parsedurl = @parse_url($rightlink);
Forum: Modification Graveyard 07-13-2009, 11:16 AM
Replies: 690
Views: 56,047
Posted By bjhuang
is there any reason why you didn't make use of...

is there any reason why you didn't make use of vbulletin's buildin functions and database for better integration?
Forum: vBulletin 3.8 Add-ons 06-26-2009, 04:09 AM
Replies: 119
Miscellaneous Hacks - Watermark Attachments
Views: 35,933
Posted By bjhuang
maybe the width of attachment is smaller than the...

maybe the width of attachment is smaller than the width of the watermark image.
Forum: vBulletin 3.8 Add-ons 06-26-2009, 04:05 AM
Replies: 79
Social Group and Album Enhancements - Mass PM Social Group Members
Views: 22,612
Posted By bjhuang
my fixed version: [OPEN] plugin: Mass...

my fixed version:


[OPEN]
plugin: Mass PM Social Group Members - Cache Template

[REPLACE ALL]
if...
Forum: vBulletin 3.8 Add-ons 06-07-2009, 11:18 PM
Replies: 119
Miscellaneous Hacks - Watermark Attachments
Views: 35,933
Posted By bjhuang
bug fix: [open] plugin: Watermark...

bug fix:


[open]
plugin: Watermark Attachments - Display

[find]
$lastbyte = filesize($tmpfname)-1;

[add below]
Forum: vBulletin 3.8 Add-ons 06-05-2009, 06:13 PM
Replies: 119
Miscellaneous Hacks - Watermark Attachments
Views: 35,933
Posted By bjhuang
my own forum gets 5M+ attachment hits per month....

my own forum gets 5M+ attachment hits per month. the load increase is minor.

watermarking attachments on upload is not an option because you do not own the image and you do not have the right to...
Forum: vBulletin 3.8 Add-ons 06-05-2009, 06:04 PM
Replies: 119
Miscellaneous Hacks - Watermark Attachments
Views: 35,933
Posted By bjhuang
attachment will not be watermarked if the width...

attachment will not be watermarked if the width of attachment image is smaller then the width of watermark image.
Forum: vBulletin 3.8 Add-ons 06-05-2009, 05:57 PM
Replies: 101
Views: 34,214
Posted By bjhuang
i've got 600+ stolen posts (which means 600+...

i've got 600+ stolen posts (which means 600+ backlinks) since i released this mod. and my traffic from google goes up 24%. but of course this can not be a 100% proof to tell if this mod help or hurt...
Forum: vBulletin 3.7 Add-ons 04-14-2009, 05:28 PM
Replies: 322
Integration with vBulletin - MediaWiki/vBulletin Single Sign-On
Views: 79,166
Posted By bjhuang
my solution. i'm not 100% sure what i'm doing....

my solution. i'm not 100% sure what i'm doing. but it works.


[OPEN]
includes/AuthPlugin_vBSSO.php

[FIND]
return true;
}
Forum: vBulletin 3.7 Add-ons 04-14-2009, 03:05 PM
Replies: 322
Integration with vBulletin - MediaWiki/vBulletin Single Sign-On
Views: 79,166
Posted By bjhuang
does anyone have logout problem? i have to logout...

does anyone have logout problem? i have to logout twice every session. for the first time, the logout link like /forum/login.php?do=logout... and it logged me out from forum but not wiki. after this,...
Forum: vBulletin 3.8 Add-ons 04-07-2009, 05:07 AM
Replies: 35
Social Group and Album Enhancements - View all your social group messages
Views: 11,195
Posted By bjhuang
works fine. but the sql queries have to be...

works fine. but the sql queries have to be improved. it makes a query each time when a message do not have a title.
Forum: vBulletin 3.8 Add-ons 03-17-2009, 08:36 PM
Replies: 608
Views: 129,428
Posted By bjhuang
yes, it meant to be. it only shows the thumbnail...

yes, it meant to be. it only shows the thumbnail of attachments which you can see in the "manage attachment" popup. if you didn't upload attachments for the new post yet, there should be nothing to...
Forum: vBulletin 3.8 Add-ons 03-15-2009, 01:47 AM
Replies: 608
Views: 129,428
Posted By bjhuang
Warning: this is a little bit complex, do not try...

Warning: this is a little bit complex, do not try this if you are not a experienced vb coder. Do it on your own risk!

to get photo popup work with images uploaded as attachments:

1. edit option...
Forum: vBulletin 3.8 Add-ons 03-14-2009, 04:48 PM
Replies: 608
Views: 129,428
Posted By bjhuang
only tested in photoplog pro. and i'm...

only tested in photoplog pro.

and i'm wondering why there is no link_orig_2_gallery option.
Forum: vBulletin 3.8 Add-ons 03-13-2009, 03:23 PM
Replies: 608
Views: 129,428
Posted By bjhuang
to fix the wrong gallery link for photoplog ...

to fix the wrong gallery link for photoplog

open photo_popup_config_photoplog.php and find
$img['gallery'] = $url_path . "index.php?n=" . $array['filename'];

replace with
$img['gallery'] =...
Forum: vBulletin 3.8 Add-ons 03-13-2009, 02:44 PM
Replies: 608
Views: 129,428
Posted By bjhuang
to fix the bug that can not insert medium size...

to fix the bug that can not insert medium size image from photoplog:

open photo_popup_config_photoplog.php and find
global $url_path;

replace with

global $url_path;
global $medium_switch;
Forum: vBulletin 3.8 Add-ons 03-13-2009, 07:54 AM
Replies: 608
Views: 129,428
Posted By bjhuang
the main editor window get focused after insert...

the main editor window get focused after insert with IE but not with FF.
Forum: vBulletin 3.8 Add-ons 03-05-2009, 08:56 AM
Replies: 1,702
Views: 415,341
Posted By bjhuang
in newthread.php <div><label...

in newthread.php


<div><label for="cb_parseame"><input type="checkbox" name="parseame" value="1" id="cb_parseame" tabindex="1" checked="checked" />Automatically embed media (requires automatic...
Forum: vBulletin 3.8 Add-ons 03-05-2009, 07:26 AM
Replies: 608
Views: 129,428
Posted By bjhuang
it's nice if one can insert from uploaded...

it's nice if one can insert from uploaded attachments.
Forum: Modification Graveyard 02-07-2009, 06:20 PM
Replies: 1,813
Major Additions - Video-Directory Remixed
Views: 319,630
Posted By bjhuang
if i was not blind, there are no tags on...

if i was not blind, there are no tags on tangle.com
and there is no enough info for thumbnails. i've to take a pre-assigned image as the default thumbnail.

try to grab this...
Forum: Modification Graveyard 02-07-2009, 06:28 AM
Replies: 1,813
Major Additions - Video-Directory Remixed
Views: 319,630
Posted By bjhuang
here you go. after xml import, you have to...

here you go.

after xml import, you have to create a dir to save the thumbnail.
and you have to modify the regex matching code by yourself when the layout chaged.


mkdir videothumbnails/tangle...
Forum: Modification Graveyard 02-05-2009, 10:09 AM
Replies: 1,813
Major Additions - Video-Directory Remixed
Views: 319,630
Posted By bjhuang
you have to create a dir to save the thumbs ...

you have to create a dir to save the thumbs

mkdir videothumbnails/myspace
chmod 777 videothumbnails/myspace


for some sites, it is impossible to get all the information. you could edit the...
Forum: Modification Graveyard 02-04-2009, 11:17 AM
Replies: 1,813
Major Additions - Video-Directory Remixed
Views: 319,630
Posted By bjhuang
try these: PS. you have to make a dir under...

try these:

PS. you have to make a dir under videothumbnails and chmod 777 to save the thumbnails


mkdir videothumbnails/myspace
chmod 777 videothumbnails/myspace
Forum: vBulletin 3.8 Add-ons 02-04-2009, 11:14 AM
Replies: 1,702
Views: 415,341
Posted By bjhuang
well i think those embed code conflicts with the...

well i think those embed code conflicts with the vbulletin system. i tried to disable plugin system and allow html in posts. then paste the embed code directly into the post. same errors happen.
...
Showing results 1 to 25 of 77

 
Forum Jump

All times are GMT. The time now is 05:32 AM.


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.04303 seconds
  • Memory Usage 2,048KB
  • 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
  • (1)footer
  • (1)forumjump
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (2)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (75)threadbit_pagelink 

Phrase Groups Available:
  • global
  • inlinemod
  • prefix
  • search
Included Files:
  • ./search.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_search.php
  • ./includes/functions_databuild.php
  • ./includes/functions_forumlist.php
  • ./includes/functions_misc.php
  • ./includes/functions_forumdisplay.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • search_before_process
  • search_start
  • search_results_start
  • search_results_query_posts
  • search_results_prebits
  • threadbit_process
  • search_results_postbit
  • pagenav_page
  • pagenav_complete
  • forumjump
  • search_complete
  • navbits
  • navbits_complete