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...
Page 1 of 20
1
2
3
11
>
Last
»
Showing results 1 to 25 of 500
Search took
0.02
seconds.
Search:
Posts Made By:
Analogpoint
Forum:
vBulletin 3.6 Template Modifications
11-28-2007, 09:41 PM
Replies:
12
Show Thread Enhancements -
Alternative postbit legacy order
Views:
4,371
Posted By
Analogpoint
Nice idea Valdet. thanks for the credit too :)
Nice idea Valdet. thanks for the credit too :)
Forum:
vB3 Programming Discussions
11-26-2007, 02:08 PM
Replies:
3
Amount of users from HTML
Views:
808
Posted By
Analogpoint
One option would be on your homepage, pull the...
One option would be on your homepage, pull the number straight from your database. If you don't want to run php on your homepage, do the iframe that calls a php file. The code could be:
...
Forum:
vB3 Programming Discussions
11-26-2007, 01:41 PM
Replies:
2
Counting the number of posts displayed on a page?
Views:
725
Posted By
Analogpoint
Put this code in a plugin on the...
Put this code in a plugin on the postbit_display_complete hook
$GLOBALS['pagepostcount'] = $post['postcount'];
Then in templates, use $GLOBALS['pagepostcount'] to reference it. But I may as well...
Forum:
vB3 Programming Discussions
11-26-2007, 01:29 PM
Replies:
9
Please help: Adding events programatically
Views:
937
Posted By
Analogpoint
As long as you're doing everything in the 'add...
As long as you're doing everything in the 'add event' code in calendar.php, it should work fine.
Forum:
Modification Requests/Questions (Unpaid)
11-24-2007, 08:57 PM
Replies:
7
including user name in forum title
Views:
937
Posted By
Analogpoint
Then edit your SHOWTHREAD and FORUMDISPLAY...
Then edit your SHOWTHREAD and FORUMDISPLAY templates. Add this for the <title> tag:
<title>
<if condition="$foruminfo['forumid'] == YOURFOURMID">
$bbuserinfo[username]'s to do...
Forum:
Modification Requests/Questions (Unpaid)
11-24-2007, 08:01 PM
Replies:
7
including user name in forum title
Views:
937
Posted By
Analogpoint
You can probably do a find and replace in...
You can probably do a find and replace in templates
find: </title>
replace: $bbuserinfo[username]</title>
That would add the username at the end of the title.
Forum:
Modification Requests/Questions (Unpaid)
11-24-2007, 05:27 PM
Replies:
4
Notify of posts made while you were posting
Views:
959
Posted By
Analogpoint
Suggest it here...
Suggest it here (http://www.vbulletin.com/forum/forumdisplay.php?f=55) if it hasn't been suggested before.
Forum:
Modification Requests/Questions (Unpaid)
11-24-2007, 05:25 PM
Replies:
7
including user name in forum title
Views:
937
Posted By
Analogpoint
$bbuserinfo[username]
$bbuserinfo[username]
Forum:
vB3 Programming Discussions
11-24-2007, 03:23 PM
Replies:
1
Avatar invalid
Views:
640
Posted By
Analogpoint
What is the url?
What is the url?
Forum:
vB3 Programming Discussions
11-24-2007, 03:21 PM
Replies:
9
Hide Admin & Super Mod Whos Online Location
Views:
1,887
Posted By
Analogpoint
You're welcome. Good find.
You're welcome.
Good find.
Forum:
vB3 General Discussions
11-24-2007, 03:19 PM
Replies:
4
Enter Valid Access Code In Order to Register
Views:
1,116
Posted By
Analogpoint
That's fine but isn't really what he was asking.
That's fine but isn't really what he was asking.
Forum:
Modification Requests/Questions (Unpaid)
11-24-2007, 09:32 AM
Replies:
5
auto PM sender
Views:
901
Posted By
Analogpoint
You don't have to require email activation.
You don't have to require email activation.
Forum:
vB3 Programming Discussions
11-24-2007, 03:15 AM
Replies:
16
PHP Include in Header
Views:
2,372
Posted By
Analogpoint
Nothing at all showed up?
Nothing at all showed up?
Forum:
vB3 General Discussions
11-24-2007, 03:13 AM
Replies:
4
Enter Valid Access Code In Order to Register
Views:
1,116
Posted By
Analogpoint
1. Create a new user profile field 2. Make it a...
1. Create a new user profile field
2. Make it a single line text box
3. Make it a required field
4. Only editable by user at registration
5. Add your alphanumeric code in the 'match regular...
Forum:
vB3 General Discussions
11-24-2007, 03:04 AM
Replies:
15
vb support sux
Views:
2,496
Posted By
Analogpoint
:D .
:D .
Forum:
vB3 Programming Discussions
11-24-2007, 03:01 AM
Replies:
1
Trying to find somethig.
Views:
721
Posted By
Analogpoint
Add your code to a plugin on a hook that is...
Add your code to a plugin on a hook that is called when a new thread or reply is created. Probably newthread_post_complete and newreply_post_complete.
Forum:
vB3 Programming Discussions
11-24-2007, 02:59 AM
Replies:
16
PHP Include in Header
Views:
2,372
Posted By
Analogpoint
Try this temporarily, and see if it outputs the...
Try this temporarily, and see if it outputs the contents of the header file
ob_start();
require_once('/home/superman/public_html/header.php');
$includedphp = ob_get_clean();
echo '<hr>before';...
Forum:
vBulletin 3.8 Add-ons
11-24-2007, 02:51 AM
Replies:
179
Mini Mods -
Admin Anger Button - Log a User Out
Views:
52,201
Posted By
Analogpoint
Is it in the list of installed products in the...
Is it in the list of installed products in the Product Manager?
Forum:
vB3 General Discussions
11-23-2007, 09:13 PM
Replies:
1
Reply, Quick Reply, New Thread ??
Views:
654
Posted By
Analogpoint
Edit the SHOWTHREAD template.
Edit the SHOWTHREAD template.
Forum:
vB3 Programming Discussions
11-23-2007, 09:00 PM
Replies:
16
PHP Include in Header
Views:
2,372
Posted By
Analogpoint
You need to include a file on your server ...
You need to include a file on your server
include('./header.php');
or
include('/path/to/the/file/header.php');
Forum:
vB3 Programming Discussions
11-23-2007, 07:07 PM
Replies:
8
Need help with MySQL Query
Views:
894
Posted By
Analogpoint
The table is actually `forumpermission` (with no...
The table is actually `forumpermission` (with no s, my bad). Can you try this again?
UPDATE forumpermission as permwrite, forumpermission as permread
SET permwrite.forumpermissions =...
Forum:
vB3 Programming Discussions
11-23-2007, 05:59 PM
Replies:
9
Hide Admin & Super Mod Whos Online Location
Views:
1,887
Posted By
Analogpoint
Something like this might work for you. (this is...
Something like this might work for you. (this is part of the whosonlinebit template) <td class="alt2" width="35%">
<if condition="in_array($userinfo[displaygroupid], array(5, 6)) AND...
Forum:
Modification Requests/Questions (Unpaid)
11-23-2007, 02:10 PM
Replies:
4
Lock post-editing after mod edit
Views:
1,027
Posted By
Analogpoint
You might be able to just use this....
You might be able to just use this. https://vborg.vbsupport.ru/showthread.php?t=83002
Forum:
Modification Requests/Questions (Unpaid)
11-23-2007, 02:01 PM
Replies:
5
auto PM sender
Views:
901
Posted By
Analogpoint
vB Options -> User Registration Options ->...
vB Options -> User Registration Options -> Welcome Private Message.
Forum:
vB3 Programming Discussions
11-23-2007, 01:58 PM
Replies:
7
Html Table, Large Space from Top
Views:
1,364
Posted By
Analogpoint
Your markup is wrong. A table is like this: ...
Your markup is wrong. A table is like this:
<table>
<tr>
<td>Club</td>
<td>Contact</td>
</tr>
</table>
Showing results 1 to 25 of 500
Page 1 of 20
1
2
3
11
>
Last
»
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
11:23 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.04356 seconds
Memory Usage
2,064KB
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
(13)
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
Messages:
time to check permissions: 0.0113
(unspecified) fetch_permissions(192, 0, 1,''); -> cached fperms for forum 192
(unspecified) fetch_permissions(192, 0, 1,''); -> cached fperms for forum 192
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(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(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(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(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(235, 0, 1,''); -> cached fperms for forum 235
(unspecified) fetch_permissions(235, 0, 1,''); -> cached fperms for forum 235
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(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(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
FULLTEXT Search
php_sapi_name(): fpm-fcgi