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: tubedogg
Forum: Community Lounge 12-22-2004, 04:02 PM
Replies: 31
Views: 4,410
Posted By tubedogg
Somebody copied the URLs directly off another...

Somebody copied the URLs directly off another forum, it looks like, and therefore the dots in the middle were copied into the linked URL as well.
Forum: Community Lounge 12-22-2004, 03:59 PM
Replies: 32
Views: 3,046
Posted By tubedogg
The only problem is, MSIE would probably have a...

The only problem is, MSIE would probably have a leak in the gas tank causing the car to explode upon impact when it (inevitably) crashed.

(Just a quick side note: MSIE can't render all...
Forum: vB3 Programming Discussions 12-14-2004, 04:22 PM
Replies: 2
Views: 1,058
Posted By tubedogg
It depends what kind of loop you are doing...but...

It depends what kind of loop you are doing...but in any event you will have to determine some kind of exit condition, where if that condition is true it will exit the loop.

In a while(), for() or...
Forum: vB3 Programming Discussions 12-14-2004, 12:06 AM
Replies: 6
Views: 1,158
Posted By tubedogg
Just noticed the problem...the last ." ...

Just noticed the problem...the last
."
shouldn't be there...oops...
Forum: vBulletin 3.0 Full Releases 12-13-2004, 06:18 PM
Replies: 45
Views: 9,203
Posted By tubedogg
Not a bad idea... I'll be doing an updated...

Not a bad idea...

I'll be doing an updated version later today or tommorrow that takes this into account, plus the template caching and showing the admin how many times he has given overall.
Forum: vBulletin 3.0 Full Releases 12-13-2004, 06:17 PM
Replies: 45
Views: 9,203
Posted By tubedogg
The query looks for up to the last X times you've...

The query looks for up to the last X times you've given in the last 24 hours, where X is the daily limit...

AND dateline >= ".(time()-86400)."

Unless time() is malfunctioning on your server, I...
Forum: Modification Requests/Questions (Unpaid) 12-13-2004, 06:12 PM
Replies: 2
Views: 1,014
Posted By tubedogg
Edit the pm_showpm template and change this ...

Edit the pm_showpm template and change this
<input type="checkbox" name="pm[$pm[pmid]]" id="deletepm" value="true" />
to this
<input type="checkbox" name="pm[$pm[pmid]]" id="deletepm" value="true"...
Forum: Modification Requests/Questions (Unpaid) 12-13-2004, 06:06 PM
Replies: 2
Views: 809
Posted By tubedogg
You could do SELECT SUM(views) FROM thread; ...

You could do
SELECT SUM(views) FROM thread;
but that would cause a full table scan every time which if you have a lot of threads could be A Bad Thing?.
Forum: Modification Requests/Questions (Unpaid) 12-13-2004, 06:04 PM
Replies: 1
Views: 923
Posted By tubedogg
I don't believe there's a way to do that by...

I don't believe there's a way to do that by default.
Forum: Modification Requests/Questions (Unpaid) 12-13-2004, 06:03 PM
Replies: 6
Views: 858
Posted By tubedogg
Yes -1 = the beginning.

Yes -1 = the beginning.
Forum: vB3 General Discussions 12-13-2004, 01:33 AM
Replies: 6
Views: 1,118
Posted By tubedogg
If you are looking for a good code editor, there...

If you are looking for a good code editor, there are two I recommend.

First is EditPlus (http://www.editplus.com/)...it's not the prettiest thing ever but it does the job, and it has lots of...
Forum: Modification Requests/Questions (Unpaid) 12-12-2004, 10:03 PM
Replies: 2
Views: 799
Posted By tubedogg
Just set permissions such that users can't start...

Just set permissions such that users can't start new threads but can reply to them.
Forum: vB3 General Discussions 12-12-2004, 09:11 PM
Replies: 4
Views: 1,019
Posted By tubedogg
Go the area I specified above...there's a...

Go the area I specified above...there's a drop-down menu that has the items you want on it. Select one, hit the button, hit Continue on the next screen, rinse & repeat for each option you want to set.
Forum: vB3 General Discussions 12-12-2004, 08:27 PM
Replies: 4
Views: 1,019
Posted By tubedogg
Go to Admin CP > Import & Maintenance > Execute...

Go to Admin CP > Import & Maintenance > Execute SQL Query and select the ones you want from the drop-down menu. It will run them automatically and apply the selected item to all users.
Forum: vBulletin 3.0 Full Releases 12-12-2004, 08:24 PM
Replies: 45
Views: 9,203
Posted By tubedogg
Yes you're right...admins have no limit. However...

Yes you're right...admins have no limit. However determining how many times an admin has given reputation could put a lot of load on the server, if the admin has given a lot.

A condition could be...
Forum: vBulletin 3.0 Full Releases 12-12-2004, 07:25 PM
Replies: 45
Views: 9,203
Posted By tubedogg
Easy fix. In usercp.php find this line: ...

Easy fix.

In usercp.php find this line:
$earliest = $check['dateline'];

Move it right below $sofar++; so it's above the }, i.e.
$sofar++;
$earliest = $check['dateline'];
}
Forum: Modification Requests/Questions (Unpaid) 12-12-2004, 07:03 PM
Replies: 6
Views: 858
Posted By tubedogg
Run this query: UPDATE forum SET daysprune =...

Run this query:
UPDATE forum SET daysprune = -1;
Will set all forums to show all threads.
Or for a specific number of days:
UPDATE forum SET daysprune = 30;
Will set all forums to show threads...
Forum: vB3 Programming Discussions 12-12-2004, 06:13 PM
Replies: 6
Views: 1,158
Posted By tubedogg
Can you post the surrounding code? i.e. two lines...

Can you post the surrounding code? i.e. two lines above through about five lines below.
Forum: vB3 Programming Discussions 12-12-2004, 06:00 PM
Replies: 6
Views: 1,158
Posted By tubedogg
What's the error you are getting? Two notes...

What's the error you are getting?

Two notes just off the top...you should be taking into account the TABLE_PREFIX, like shown below, and you don't need single quotes around an integer such as the...
Forum: vB3 General Discussions 12-12-2004, 04:47 AM
Replies: 2
Views: 828
Posted By tubedogg
<if condition="$permissions['adminpermissions'] &...

<if condition="$permissions['adminpermissions'] & CANCONTROLPANEL">content here</if>
should work.
Forum: Modification Requests/Questions (Unpaid) 12-12-2004, 03:20 AM
Replies: 1
Views: 859
Posted By tubedogg
On most servers you can't, for security reasons....

On most servers you can't, for security reasons. This is a good thing, unless you and you alone control the entire server.
Forum: vB3 Programming Discussions 12-12-2004, 01:38 AM
Replies: 2
Views: 1,059
Posted By tubedogg
$adduser = $DB_site->query should be $adduser...

$adduser = $DB_site->query
should be
$adduser = $DB_site->query_first
Forum: Modification Requests/Questions (Unpaid) 12-11-2004, 10:19 PM
Replies: 5
Views: 1,054
Posted By tubedogg
That was easier than I thought. Find it posted...

That was easier than I thought. Find it posted here (https://vborg.vbsupport.ru/showthread.php?t=72781).
Forum: vBulletin 3.0 Full Releases 12-11-2004, 10:00 PM
Replies: 45
Views: 9,203
Posted By tubedogg
Reputation Click Tracker

(I couldn't think of a good name for this, so there you go...)

This is a relatively simple hack that adds a box to the User CP showing a user how many reputation clicks he has given in the last 24...
Forum: Modification Requests/Questions (Unpaid) 12-11-2004, 09:08 PM
Replies: 5
Views: 1,054
Posted By tubedogg
Where would this information be displayed? I...

Where would this information be displayed? I assume User CP...that wouldn't be too hard. I'll give it a shot tonight.
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT. The time now is 04:44 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.02952 seconds
  • Memory Usage 2,081KB
  • 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
  • (21)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