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:
Dead Eddie
Forum:
vB3 General Discussions
02-06-2023, 10:38 AM
Replies:
11
forum users hacked
Views:
1,299
Posted By
Dead Eddie
There's nothing to patch. The software wasn't...
There's nothing to patch. The software wasn't hacked. The spammers have your users username/password from a breach of a different software.
Also, there's no official developers -- Vbulletin 3.X...
Forum:
vB3 Programming Discussions
10-28-2020, 02:47 PM
Replies:
1
DESPERATLY NEED HELP
Views:
3,817
Posted By
Dead Eddie
if (!empty($licensedm->errors)) { ...
if (!empty($licensedm->errors))
{
var_dump($licensedm->errors);
}
else
{
$licensedm->save();
}
If I had to guess, I'd guess...
Forum:
vB5 Programming Discussions
04-03-2016, 03:39 PM
Replies:
6
vb5 Widget Creation
Views:
1,788
Posted By
Dead Eddie
Here's a module that I put together a few years...
Here's a module that I put together a few years ago. It's relatively basic, you can probably reverse engineer it.
Developer support of VB5 is...anemic at best.
...
Forum:
vB5 Programming Discussions
02-11-2015, 02:18 AM
Replies:
8
Where in the code are new threads created?
Views:
1,505
Posted By
Dead Eddie
I think you need to have an entry in the DB...
I think you need to have an entry in the DB Assertor class for your table. You should be able to create your own DB Assertor class and do the entire thing without file edits, though.
Forum:
vB4 Programming Discussions
02-08-2015, 10:44 AM
Replies:
20
Code to show a template on only the front page
Views:
1,337
Posted By
Dead Eddie
<vb:if...
<vb:if condition="$_GET['r']==114"></vb:if>
Forum:
vB4 General Discussions
01-05-2015, 11:59 AM
Replies:
64
vB CMS Capabilities
Views:
4,954
Posted By
Dead Eddie
It's just the way the CMS works. If you're...
It's just the way the CMS works. If you're sending values to the template, the fastest, easiest, and best way to to do it is to add it to the view directly (the view is responsible for knowing...
Forum:
vB4 Programming Discussions
12-06-2014, 06:05 AM
Replies:
6
Profile field in CMS
Views:
647
Posted By
Dead Eddie
<a...
<a href="https://vborg.vbsupport.ru/showthread.php?t=270256" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=270256</a>
Forum:
vB5 Programming Discussions
10-01-2014, 09:44 PM
Replies:
12
How to add a "Search for your device" search tab and Device Specs!?
Views:
1,520
Posted By
Dead Eddie
What content would this search bar search? ...
What content would this search bar search?
You can add HTML or PHP widgets on the forum pages & use that to display specifications.
Forum:
vB5 Programming Discussions
09-10-2014, 06:34 PM
Replies:
6
Find First Image or Attachment and replace it with Avatar
Views:
829
Posted By
Dead Eddie
Sorry, don't have access to the vbulletin source...
Sorry, don't have access to the vbulletin source code right now.
Does autoPopulatePreviewImage actually return the array? Or does it use it internally?
If you want to see what's in the...
Forum:
vB5 Programming Discussions
09-09-2014, 12:23 AM
Replies:
12
Latest Members?
Views:
1,935
Posted By
Dead Eddie
5.1.0, .2, or .3? I've attached an addon...
5.1.0, .2, or .3?
I've attached an addon that creates the new widget type. It depends on having the memberlist API, which was added sometime in vBulletin 5's later life.
(Sorry about the...
Forum:
vB5 Programming Discussions
08-14-2014, 12:25 AM
Replies:
2
PostContent is sent out with which API class?
Views:
475
Posted By
Dead Eddie
Looks like the template calls the node api. ...
Looks like the template calls the node api.
http://www.vbulletin.com/forum/ajax/api/node/getNodeFullContent?nodeid=4089381 ;)
Forum:
vB5 General Discussions
08-05-2014, 11:21 AM
Replies:
13
SQL Query to view Private Messages
Views:
5,163
Posted By
Dead Eddie
Because, there's nothing in the private messages...
Because, there's nothing in the private messages table that would be helpful for what the OP is looking for?
Forum:
vB5 General Discussions
08-04-2014, 11:14 AM
Replies:
13
SQL Query to view Private Messages
Views:
5,163
Posted By
Dead Eddie
SELECT * FROM node WHERE node.contenttypeid = 27...
SELECT * FROM node WHERE node.contenttypeid = 27 AND node.userid = 1;
27 looks like the default content type ID for a vb 5 install. If you get weird results, you can double check the number in the...
Forum:
vB5 Programming Discussions
08-01-2014, 03:24 AM
Replies:
6
Using {vb:raw conversation.groupid}
Views:
2,168
Posted By
Dead Eddie
Not sure what this has to do with me. I have...
Not sure what this has to do with me. I have access to EXACTLY the same information you do, and less motivation (I don't have a vb5 public forum running).
It is in the database, just not the...
Forum:
vB5 General Discussions
05-10-2014, 01:22 PM
Replies:
4
vBulletin 5.1.0 doesn't look right
Views:
566
Posted By
Dead Eddie
Links don't work. Did you upload the .htaccess...
Links don't work. Did you upload the .htaccess file (with the period in front of the file)?
Forum:
vB5 Programming Discussions
04-21-2014, 02:08 AM
Replies:
6
VBulletin Programming 101?
Views:
787
Posted By
Dead Eddie
Which template? The variables are passed in...
Which template?
The variables are passed in from a number of different sources (sigh). The Frontend Controller (includes/vb5/frontend/controller ... since I can never find it), The API via direct...
Forum:
vB5 Programming Discussions
03-23-2014, 05:18 AM
Replies:
3
Use of PHP function to load extra css
Views:
1,144
Posted By
Dead Eddie
Thinking about it quickly, vb5 lets you call API...
Thinking about it quickly, vb5 lets you call API methods from the templates. So, if you put your code into an api call, you could grab it from the templates.
The call would look like:
{vb:data...
Forum:
vBulletin.org Site Feedback
11-17-2013, 01:33 PM
Replies:
23
What is this on here now?
Views:
2,661
Posted By
Dead Eddie
Is it related to the announcement Stingray27...
Is it related to the announcement Stingray27 managed to post?
Forum:
vB4 Programming Discussions
08-05-2011, 04:00 AM
Replies:
12
Has anyone succesfully managed to create a CMS content type?
Views:
2,923
Posted By
Dead Eddie
It is Object Oriented...until you get to the...
It is Object Oriented...until you get to the Controller delegate class. And, unfortunately, that's where most of the time is spent (at least...in my case it is, since their models are thin).
I've...
Forum:
vB4 Programming Discussions
07-26-2011, 10:06 PM
Replies:
1
CMS article preview text - reformat
Views:
759
Posted By
Dead Eddie
vbcms_article_populate_end? Unfortunately,...
vbcms_article_populate_end?
Unfortunately, there's no hook in the function where the content is generated, so you'll likely have to go in and strip the tags out of the actual content after it'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
06:30 PM
.
-- Default Style
---- Blue
------ Red
------ Green
------ Purple
Contact Us
-
Archive
-
Top
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X
vBulletin 3.8.12 by vBS Debug Information
Page Generation
0.01887 seconds
Memory Usage
1,998KB
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
(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
forumjump
search_complete
navbits
navbits_complete
Messages:
time to check permissions: 0.0007
(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(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(7, 0, 1,''); -> cached fperms for forum 7
(unspecified) fetch_permissions(7, 0, 1,''); -> cached fperms for forum 7
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
FULLTEXT Search
php_sapi_name(): fpm-fcgi