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

Showing results 1 to 25 of 500
Search took 0.03 seconds.
Search: Posts Made By: Kirk Y
Forum: vB3 Programming Discussions 01-05-2009, 02:50 PM
Replies: 1
Views: 862
Posted By Kirk Y
Use $bbuserinfo (or $vbulletin->userinfo if...

Use $bbuserinfo (or $vbulletin->userinfo if inside a plugin). This will always return the currently viewing user's information.
Forum: vB3 Programming Discussions 01-05-2009, 02:48 PM
Replies: 14
Views: 1,762
Posted By Kirk Y
I thought the story was that Kier had a user on...

I thought the story was that Kier had a user on his board called "tachy" who really needing to be sent away to coventry for a while... they say necessity is the mother of invention. :)
Forum: vB3 Programming Discussions 01-05-2009, 02:46 PM
Replies: 21
Views: 2,262
Posted By Kirk Y
Find the class tag of that td cell in your...

Find the class tag of that td cell in your postbit and use a conditional statement to switch it around depending on usergroup.

<td class="<if condition="is_member_of($post,...
Forum: vB3 General Discussions 01-04-2009, 08:04 PM
Replies: 8
Views: 1,183
Posted By Kirk Y
It's deprecated.

It's deprecated.
Forum: vB3 General Discussions 01-04-2009, 04:51 PM
Replies: 4
Views: 913
Posted By Kirk Y
UKBusiness's is the correct one (though the ! in...

UKBusiness's is the correct one (though the ! in front of it will display for members who are not in groups 5, 6, or 7.

ry215's code will not take Secondary Usergroups into account.

Keep in...
Forum: vB3 Programming Discussions 01-04-2009, 04:20 PM
Replies: 11
Views: 1,114
Posted By Kirk Y
Don't forget to take table prefixes into account...

Don't forget to take table prefixes into account in your SHOW COLUMNS query.
Forum: vB3 Programming Discussions 01-04-2009, 03:45 AM
Replies: 11
Views: 1,114
Posted By Kirk Y
If you look at what $columns contains, you'll see...

If you look at what $columns contains, you'll see it is a two-dimensional array. You need to loop through it after your query to extract the relevant information; in this case - the field names.
...
Forum: vB3 General Discussions 01-04-2009, 03:40 AM
Replies: 5
Views: 747
Posted By Kirk Y
http://yoursite.com/forum/misc.php?do=bbcode ...

http://yoursite.com/forum/misc.php?do=bbcode

ie: http://vbulletin.org/forum/misc.php?do=bbcode
Forum: vB3 General Discussions 01-04-2009, 03:39 AM
Replies: 2
Views: 610
Posted By Kirk Y
Yes, you need a modification to provide that...

Yes, you need a modification to provide that facility.

https://vborg.vbsupport.ru/showthread.php?t=96926
Forum: vB3 General Discussions 01-04-2009, 03:32 AM
Replies: 11
Views: 1,123
Posted By Kirk Y
I think they've got the two switched around. :) ...

I think they've got the two switched around. :)

Nulled vBulletin installations are prone to exploitation because (a) they're most likely running outdated and insecure components and (b) they're...
Forum: vB3 General Discussions 01-04-2009, 02:29 AM
Replies: 21
Views: 9,285
Posted By Kirk Y
That would only kick users who haven't checked...

That would only kick users who haven't checked "Remember me" when they logged in.
Forum: vB3 Programming Discussions 01-04-2009, 02:26 AM
Replies: 3
Views: 749
Posted By Kirk Y
That's not a vB standard function. Most likely...

That's not a vB standard function. Most likely you have installed a modification that is incompatible with 3.7.4 or is missing a required file.

I'd suggest you go through your Modifications and...
Forum: Community Lounge 01-04-2009, 12:13 AM
Replies: 55
Views: 6,584
Posted By Kirk Y
The last time Dean uploaded his picture, we had...

The last time Dean uploaded his picture, we had to repair the entire post table. :p
Forum: vB3 General Discussions 01-04-2009, 12:10 AM
Replies: 14
Views: 3,182
Posted By Kirk Y
Yes, you're allowed to remove the version number....

Yes, you're allowed to remove the version number.

Edit: Whoa, we tied Brad. :D
Forum: vB3 Programming Discussions 01-04-2009, 12:08 AM
Replies: 5
Views: 852
Posted By Kirk Y
Sorry, Dismounted's REGEX must be off. Give...

Sorry, Dismounted's REGEX must be off.

Give this a try (little rusty, but should work) --
^[a-zA-Z0-9]+$Should allow only upper/lower alphanumeric.
Forum: vB3 Programming Discussions 01-03-2009, 11:05 PM
Replies: 5
Views: 852
Posted By Kirk Y
<a...

<a href="https://vborg.vbsupport.ru/showthread.php?t=159222" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=159222</a>
Forum: vB3 Programming Discussions 01-03-2009, 10:22 PM
Replies: 11
Views: 1,114
Posted By Kirk Y
$columns = $db->query_read("SHOW COLUMNS FROM " ....

$columns = $db->query_read("SHOW COLUMNS FROM " . TABLE_PREFIX . "table");

You'd need to loop through $columns and take out the "field" key.
Forum: vB3 Programming Discussions 01-03-2009, 08:55 PM
Replies: 11
Views: 1,114
Posted By Kirk Y
You could run a query to retrieve the columns in...

You could run a query to retrieve the columns in "table" and then control the flow of logic from there.

if (!in_array('column3', $columns))
{
// create column 3 as it does not exist yet
}
Forum: vB3 Programming Discussions 01-03-2009, 08:51 PM
Replies: 3
Views: 892
Posted By Kirk Y
Permissions are inherited from the bottom up. So...

Permissions are inherited from the bottom up. So if a user is a member of a group which is exempt from advertisements, he/she will not see them even if they are also a member of a group which is not...
Forum: vBulletin 3.7 Add-ons 01-03-2009, 05:45 PM
Replies: 139
Moderators Functions - Moderator Checkpoint System
Views: 44,067
Posted By Kirk Y
v1.1.7 released. This release fixes a Checkcount...

v1.1.7 released. This release fixes a Checkcount Display bug in Forumdisplay. The bug affects boards whose native thousandth-separator is not the comma.

ie. "1.119" instead of "1,119"
...
Forum: vB3 General Discussions 01-02-2009, 11:36 PM
Replies: 1
Views: 703
Posted By Kirk Y
Next to whose Username? If you mean users...

Next to whose Username?

If you mean users who've donated, you could create a secondary usergroup and place these users in that group.

You could then have a template conditional next to their...
Forum: vB3 Programming Discussions 01-02-2009, 11:32 PM
Replies: 8
Views: 1,095
Posted By Kirk Y
In PHP, $var is the same as isset($var) which...

In PHP, $var is the same as isset($var) which returns TRUE if $var exists and FALSE if it does not.

So--
<if condition="$var">Stuff to do</if>

Will display "Stuff to do" when $var exists.
Forum: vB3 Programming Discussions 01-02-2009, 11:27 PM
Replies: 8
Views: 1,095
Posted By Kirk Y
The syntax is: <if...

The syntax is:
<if condition="CONDITION">Displayed when CONDITION is TRUE</if>This is a vBulletin-only HTML "tag" -- it is parsed out by PHP when the template is evaluated. You can't just throw it...
Forum: vBulletin 3.7 Add-ons 01-02-2009, 06:08 PM
Replies: 139
Moderators Functions - Moderator Checkpoint System
Views: 44,067
Posted By Kirk Y
Wuelfi, please set me up with an Admin account on...

Wuelfi, please set me up with an Admin account on your board if you don't mind.
Forum: vB3 General Discussions 01-02-2009, 12:33 AM
Replies: 12
Views: 1,585
Posted By Kirk Y
I think we're straying away from the OP's...

I think we're straying away from the OP's question. :)

You would need a modification to implement a new set of email fields.
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT. The time now is 10:09 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.03471 seconds
  • Memory Usage 2,072KB
  • 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)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (31)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