The Arcive of Official vBulletin Modifications Site.
It is not a VB3 engine, just a parsed copy!
Archives
Graphics
Styles
Mods
Articles
Forums
VBSupport
vb.org Archive
>
Search Forums
Search Results
User Name
Remember Me?
Password
FAQ
Community
Calendar
Today's Posts
Search
Community Links
Members List
Search Forums
Show Threads
Show Posts
Tag Search
Advanced Search
Найти все сообщения с благодарностями
Go to Page...
Showing results 1 to 20 of 20
Search took
0.00
seconds.
Search:
Posts Made By:
treszoks
Forum:
Modification Requests/Questions (Unpaid)
09-28-2002, 01:02 AM
Replies:
9
[request] minimum posts to...post
Views:
1,170
Posted By
treszoks
You'd actually want to 'OR' the two usergroupids...
You'd actually want to 'OR' the two usergroupids together.
Forum:
Modification Requests/Questions (Unpaid)
08-12-2002, 02:09 PM
Replies:
3
Counting created threads in a specific Forum?
Views:
841
Posted By
treszoks
Here's an example query to get you started. This...
Here's an example query to get you started. This will give you the number of threads started by a particular user in a particular forum.
select count(*) from thread where postuserid='$userid' and...
Forum:
Modification Requests/Questions (Unpaid)
08-09-2002, 12:31 PM
Replies:
10
Need to hire someone ASAP for an integration
Views:
1,438
Posted By
treszoks
Were you wanting me to help you with this or do...
Were you wanting me to help you with this or do you have it taken care of?
Forum:
Modification Requests/Questions (Unpaid)
08-08-2002, 09:45 PM
Replies:
10
Need to hire someone ASAP for an integration
Views:
1,438
Posted By
treszoks
That's pretty much exactly what I said. Shouldn't...
That's pretty much exactly what I said. Shouldn't be too hard to setup.
Forum:
Modification Requests/Questions (Unpaid)
08-08-2002, 12:37 PM
Replies:
10
Need to hire someone ASAP for an integration
Views:
1,438
Posted By
treszoks
Since the user/pass from this script does not...
Since the user/pass from this script does not match the vb user/pass, how will you relate them together? I see a method of doing this, but it might require an additional script to work. I could alter...
Forum:
Modification Requests/Questions (Unpaid)
06-28-2002, 09:32 PM
Replies:
4
ReQuest: DropDown Chooser
Views:
889
Posted By
treszoks
<a...
<a href="https://vborg.vbsupport.ru/showthread.php?threadid=21833" target="_blank">https://vborg.vbsupport.ru/showt...threadid=21833</a>
Forum:
Modification Requests/Questions (Unpaid)
06-23-2002, 02:03 AM
Replies:
5
MySQL -> MySQL -> Auto Post threads :) - u can do it!..lol
Views:
1,188
Posted By
treszoks
You could write a php script that would retrieve...
You could write a php script that would retrieve the info from the mysql server with the results in it and that same php script could generate a web form(similar to vb's new topic form) already...
Forum:
Modification Requests/Questions (Unpaid)
02-09-2002, 01:43 PM
Replies:
1
New topics started today
Views:
712
Posted By
treszoks
I had an epiphany. Here's the code: ...
I had an epiphany. Here's the code:
$threads_today=mysql_query("SELECT distinct(threadid), count(*) as newcount FROM post GROUP BY threadid HAVING MIN(dateline)>=$datesql");...
Forum:
Modification Requests/Questions (Unpaid)
02-09-2002, 04:09 AM
Replies:
1
New topics started today
Views:
712
Posted By
treszoks
I cannot figure out a mysql query that will...
I cannot figure out a mysql query that will return the number of new topics started today. The today's active topics count is easy, but I want the count of the new ones created today.
Forum:
vBulletin 2.x Full Releases
10-29-2001, 01:11 PM
Replies:
15
Adding Custom Select Field To Profile
Views:
4,448
Posted By
treszoks
I can write out better instructions if you tell...
I can write out better instructions if you tell me exactly what you need. What I did was write out a general form for all possibilities. How many fields do you want? How many of those are required...
Forum:
vBulletin 2.x Full Releases
10-29-2001, 01:06 PM
Replies:
21
New Threads Today
Views:
6,234
Posted By
treszoks
Isn't there already an option in the cp to find...
Isn't there already an option in the cp to find out the number of new threads made each day under the "vb stats" link?
Forum:
vBulletin 2.x Full Releases
10-28-2001, 03:15 PM
Replies:
15
Adding Custom Select Field To Profile
Views:
4,448
Posted By
treszoks
pipi, it depends on the field number but here's...
pipi, it depends on the field number but here's how you'd do it.
In the "postbit" template, just place this where you want it:
$post[fieldX]
where X is the number of the field
Forum:
vBulletin 2.x Full Releases
10-25-2001, 01:53 AM
Replies:
15
Adding Custom Select Field To Profile
Views:
4,448
Posted By
treszoks
Assuming the linebreaks were added to the db: ...
Assuming the linebreaks were added to the db:
In member.php find this in the "getinfo" action segment (should be around line 1200):
$profilefield[value]=$userinfo[$profilefieldname];
Change...
Forum:
vBulletin 2.x Full Releases
10-23-2001, 01:43 AM
Replies:
15
Adding Custom Select Field To Profile
Views:
4,448
Posted By
treszoks
Mine only requires adding two templates and...
Mine only requires adding two templates and modifying a couple of lines in register.php and member.php and doesn't use text files that must be opened and read from.
Forum:
vBulletin 2.x Full Releases
10-22-2001, 09:38 PM
Replies:
15
Adding Custom Select Field To Profile
Views:
4,448
Posted By
treszoks
Here you go. Untested, but should work.
Here you go. Untested, but should work.
Forum:
vBulletin 2.x Full Releases
10-20-2001, 10:00 PM
Replies:
15
Adding Custom Select Field To Profile
Views:
4,448
Posted By
treszoks
Someone asked for this and here it is. Hopefully...
Someone asked for this and here it is. Hopefully the documentation is clear enough and I didn't miss anything. Post here with any problems and/or comments.
This hack adds a select field (dropdown...
Forum:
vBulletin 2.x Full Releases
10-20-2001, 02:19 AM
Replies:
130
Add a select field to the profile
Views:
26,748
Posted By
treszoks
I've added select fields to my board and will...
I've added select fields to my board and will share directions if anyone would like them. It requires adding two templates for each select field plus a couple of lines in register.php and member.php.
Forum:
vBulletin 2.x Full Releases
10-16-2001, 02:49 AM
Replies:
5
pagenav dropdown menu
Views:
2,472
Posted By
treszoks
Yeah, I saw that thread floleb7, but none of them...
Yeah, I saw that thread floleb7, but none of them did what I wanted. Those just require editing the templates and don't show every single page in the dropdown menu like this which requires editing...
Forum:
vBulletin 2.x Full Releases
10-14-2001, 10:00 PM
Replies:
5
pagenav dropdown menu
Views:
2,472
Posted By
treszoks
Ok, this modification changes the current pagenav...
Ok, this modification changes the current pagenav stuff such as: "Pages (3): [ < ? 1 ? 2 ? 3 ? ]" to a simple dropdown menu containing all the pages...no previous/next/first/last crap.
In...
Forum:
vBulletin 2.x Full Releases
10-11-2001, 09:26 PM
Replies:
21
New Threads Today
Views:
6,234
Posted By
treszoks
I did something similar as a change for the...
I did something similar as a change for the "today's active topics" link. I noticed how it didn't actually show today's active topics, but rather showed the topics from the last 24 hours. Here's...
Showing results 1 to 20 of 20
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
News and Announcements
News and Announcements
Mod of the Month
Official vB.com Announcements
vBulletin Pre-Sales Questions
vBulletin Styles and Graphics
vBulletin Styles
vBulletin 5.x Styles
vBulletin 3.8 Styles
vBulletin 3.8 Admin CP Styles
vBulletin 4.x Styles
vBulletin Graphic Sets
vBulletin Button Sets
vBulletin Smilie Sets
Miscellaneous Images
vBulletin Rank Sets
vBulletin Avatar Sets
vBulletin Status Icon Sets
vBulletin Article Depository
Read An Article
vBulletin 3 Articles
Programming Articles
General Articles
Management Articles
Graphics Articles
vBulletin Tips & Tricks
vBulletin 4 Articles
vBulletin 5 Connect Articles
Article Submissions
Submit New Article
vBulletin Modifications
vBulletin 5.x Modifications
vBulletin 5.x Products & Extensions
vBulletin 5.x Template Modifications
vBulletin 4.x Modifications
vBulletin 4.x Add-ons
vBulletin 4.x Template Modifications
vBulletin 3.8 Modifications
vBulletin 3.8 Add-ons
vBulletin 3.8 Template Modifications
Premium Modifications
vBulletin Open Source Products
Sphinx
Project Tools
ibProArcade
Archive
vB.org Archives
General
vB1 Hacks
Testing Zone
Board of the Month
Big Board Discussions
General Hosting/Server Discussions
Member Archives
vBulletin 2.x
vBulletin 2.x Full Releases
vBulletin 2.x Beta Releases
vBulletin 2.x Template Modifications
vBulletin 2.x Styles
vBulletin 2.x Admin CP Styles
vBulletin 3.0
vBulletin 3.0 Full Releases
vBulletin 3.0 Beta Releases
vBulletin 3.0 Template Modifications
vBulletin 3.0 Styles
vBulletin 3.0 Admin CP Styles
vBulletin 3.5
vBulletin 3.5 Add-ons
vBulletin 3.5 Template Modifications
vBulletin 3.5 Styles
vBulletin 3.5 Admin CP Styles
vBulletin 3.6
vBulletin 3.6 Template Modifications
vBulletin 3.6 Add-ons
vBulletin 3.6 Styles
vBulletin 3.6 Admin CP Styles
vBulletin 3.7
vBulletin 3.7 Add-ons
vBulletin 3.7 Template Modifications
vBulletin 3.7 Styles
vBulletin 3.7 Admin CP Styles
Premium Archives
uCash & uShop
vBadvanced CMPS
RPG Integration Hack
vBindex
vBgarage
Advanced Warning System (AWS)
vbArticles
vB Chat
vbBux / vbPlaza
ibProArcade Archive
vRewrite - SEOed URLs for vBulletin
Modification Graveyard
vBulletin 5 Connect Discussion
vB5 General Discussions
vB5 Programming Discussions
vB5 Design and Graphics Discussions
vBulletin 4 Discussion
vB4 General Discussions
vB4 Programming Discussions
vB4 Design and Graphics Discussions
vBulletin 3 Discussion
vB3 Programming Discussions
vB3 General Discussions
vB3 Design and Graphics Discussions
Community Discussions
Modification Requests/Questions (Unpaid)
Style and Graphics Requests (Unpaid)
Forum and Server Management
Community Central
vBulletin.org Site Feedback
Community Lounge
Community Reviews
All times are GMT. The time now is
04:44 PM
.
-- Default Style
---- Blue
------ Red
------ Green
------ Purple
Contact Us
-
Archive
-
Top
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.02622 seconds
Memory Usage
1,988KB
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)
post_thanks_navbar_search
(1)
search_results
(20)
search_results_postbit
(1)
spacer_close
(1)
spacer_open
(27)
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
forumjump
search_complete
navbits
navbits_complete
Messages:
time to check permissions: 0.0006
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
(unspecified) fetch_permissions(4, 0, 1,''); -> cached fperms for forum 4
FULLTEXT Search
php_sapi_name(): fpm-fcgi