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

Showing results 1 to 25 of 64
Search took 0.00 seconds.
Search: Posts Made By: misterfade
Forum: vB3 Programming Discussions 01-14-2011, 10:04 PM
Replies: 2
Views: 747
Posted By misterfade
LOL, ya it would be complicated doing it like...

LOL, ya it would be complicated doing it like that. What ended up doing though, was run a few simple queries to give users a certain amount of points based on their join date or amount of posts. ...
Forum: vB3 Programming Discussions 01-14-2011, 04:45 PM
Replies: 2
Views: 747
Posted By misterfade
Reputation Score to Existing Members

My forum has been around for years and only now I've decided to enable the user reputation system. However, everyone has to start at the bottom now, but is there a way for everyone to have a certain...
Forum: vBulletin 3.8 Add-ons 03-11-2010, 11:11 AM
Replies: 2,262
Add-On Releases - vBExperience 3.8
Views: 1,591,495
Posted By misterfade
I tried this addon and didn't like it, plus the...

I tried this addon and didn't like it, plus the lack of support, so I decided to remove it. The kill_xperience.php works but after doing that, it completely screwed up my board. This addon is...
Forum: vBulletin 3.8 Add-ons 02-10-2010, 01:36 PM
Replies: 723
Chat Modifications - Cyb - ChatBox
Views: 185,461
Posted By misterfade
For anyone else looking to add simple permissions...

For anyone else looking to add simple permissions per usergroup, do this:

1. Don't put anything where it says "groups that cannot see the chatbox".
2. Open FORUMHOME and right underneath $navbar,...
Forum: vBulletin 3.8 Add-ons 02-05-2010, 02:22 PM
Replies: 723
Chat Modifications - Cyb - ChatBox
Views: 185,461
Posted By misterfade
This hack looks great, the one issue I have...

This hack looks great, the one issue I have though is with the permissions. It has the option to enter the usergroups that I don't want to view the chat, but the groups that I want to view the chat...
Forum: vBulletin 3.6 Add-ons 09-15-2008, 05:07 PM
Replies: 2,266
Chat Modifications - MGC Chatbox (with AJAX)
Views: 606,203
Posted By misterfade
I need help with my situation: I have...

I need help with my situation:

I have enabled on all pages of my forum but not all members want it on all the pages - is there an option to allow members to choose if they want to see it on all...
Forum: vB3 Programming Discussions 04-09-2008, 10:56 AM
Replies: 4
Views: 2,970
Posted By misterfade
Farcaster, You're right, that would be a big...

Farcaster,

You're right, that would be a big loop to do, so I'll try a join and see what I can come up with.

Thanks.
Forum: vB3 Programming Discussions 04-08-2008, 09:40 PM
Replies: 4
Views: 2,970
Posted By misterfade
Sorry, that's not what I mean. What I'm...

Sorry, that's not what I mean.

What I'm wondering is if I can use that and at the same time match it with the userid's from my sellers table.

Something like this:

if ($row['seller_userid'] =...
Forum: vB3 Programming Discussions 04-08-2008, 08:57 PM
Replies: 4
Views: 2,970
Posted By misterfade
Help with is_member_of condition

I have a custom table setup called 'sellers' and I want to query that table to get all the userid's from there, then match it with the userid's in the vbulletin user table, then see if they're part...
Forum: vBulletin 3.6 Add-ons 09-25-2007, 12:57 PM
Replies: 127
Show Thread Enhancements - Google Adsense Postbit Integration
Views: 44,742
Posted By misterfade
Installed it in less than 2 seconds, works...

Installed it in less than 2 seconds, works perfectly. Thanks!
Forum: vB3 Programming Discussions 11-06-2006, 11:34 AM
Replies: 0
Views: 871
Posted By misterfade
Postbit secondary usergroup conditional

I'm trying to display some text and images beneath the members' name in the postbit template but I can't get it to work.

For example, I have a member that is in usergroup 2 as their primary, and...
Forum: vB3 Programming Discussions 05-15-2006, 04:41 PM
Replies: 3
Views: 889
Posted By misterfade
Yeah that works nicely! Thanks, but any idea on...

Yeah that works nicely! Thanks, but any idea on how to show ALL the usergroups a member is a part of? For example, if a user is Registered but also an 'additional user' to another group?
Forum: vB3 Programming Discussions 05-15-2006, 12:18 PM
Replies: 3
Views: 889
Posted By misterfade
Showing usergroup title in postbit

I was searching around but couldn't find an answer.

Is this possible in the postbit template? I'd like to show all the usergroups that a member is a part of.

Thank you in advance!
Forum: vB3 Programming Discussions 03-05-2006, 04:10 PM
Replies: 9
Views: 1,262
Posted By misterfade
The new code you posted works great except for...

The new code you posted works great except for one thing. This works:
$from = (($page * $max_results) - $max_results);

Not this one:
$from = ($vbulletin->GPC['page'] - 1) * $max_results;
...
Forum: vB3 Programming Discussions 03-05-2006, 02:14 PM
Replies: 9
Views: 1,262
Posted By misterfade
Yeah I know but that's the main problem I was...

Yeah I know but that's the main problem I was having originally, only showing a certain amount of results. I was just wondering if you had an idea as to why it would be doing that.

Thanks though.
Forum: vB3 Programming Discussions 03-05-2006, 02:10 PM
Replies: 9
Views: 1,262
Posted By misterfade
Ok thanks for the tip! I was just trying the...

Ok thanks for the tip!

I was just trying the code again, and for some reason it's only showing a certain amount of rows. The table that I'm querying should be showing 65 results (rows), but it...
Forum: vB3 Programming Discussions 03-05-2006, 01:46 PM
Replies: 9
Views: 1,262
Posted By misterfade
Thanks for the response. I tried your code and...

Thanks for the response. I tried your code and it looks like it's working fine.

Can you explain what this part is doing?

$vbulletin->input->clean_gpc('r', 'page', TYPE_UINT);
$page =...
Forum: vB3 Programming Discussions 03-04-2006, 07:23 PM
Replies: 9
Views: 1,262
Posted By misterfade
No one??

No one??
Forum: vB3 Programming Discussions 01-30-2006, 03:15 PM
Replies: 9
Views: 1,262
Posted By misterfade
Pagination help

I'm trying to query the vbulletin database on a custom table, and paginate the results. From the code I have, for some reason it only returns 40 total results. I'm having trouble with the...
Forum: vB3 Programming Discussions 01-25-2006, 02:18 PM
Replies: 2
Views: 789
Posted By misterfade
Beautiful! It works great now. Thanks.

Beautiful! It works great now. Thanks.
Forum: vB3 Programming Discussions 01-25-2006, 01:42 PM
Replies: 2
Views: 789
Posted By misterfade
Showing data from 2 tables

I need help with some code. I have a special usergroup that only they can access a certain page. I want to set it up so that when they login, it displays their info from the USER table, and a...
Forum: vB3 General Discussions 12-17-2005, 10:33 PM
Replies: 0
Views: 686
Posted By misterfade
Restrictions

Not sure if this is the right forum or not, but here goes...

I've been having trouble keeping banned members away, they seem to signup under different names over and over, and yes I've banned...
Forum: vB3 General Discussions 09-29-2005, 05:17 PM
Replies: 2
Views: 827
Posted By misterfade
That's perfect! Thanks a lot.

That's perfect! Thanks a lot.
Forum: vB3 General Discussions 09-29-2005, 02:54 PM
Replies: 2
Views: 827
Posted By misterfade
Sessions

With 3.0.7, I was using on non-vb pages:


$session['sessionhash'] = fetch_sessionhash();


What is it for 3.5? I really need to figure out how to carry sessions over on non-vb pages!
...
Forum: vB3 Programming Discussions 09-05-2005, 07:09 PM
Replies: 4
Views: 988
Posted By misterfade
Thanks! I'm going to take a look and try it out.

Thanks! I'm going to take a look and try it out.
Showing results 1 to 25 of 64

 
Forum Jump

All times are GMT. The time now is 09:27 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.01688 seconds
  • Memory Usage 2,034KB
  • 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
  • (15)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