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

Showing results 1 to 25 of 500
Search took 0.02 seconds.
Search: Posts Made By: Dave
Forum: vB3 General Discussions 11-24-2020, 09:31 PM
Replies: 20
Views: 3,985
Posted By Dave
It's possible, but I doubt vBulletin would...

It's possible, but I doubt vBulletin would appreciate it if you send thousands of requests to the server in order to scrape the content and attachments.
Forum: vB4 General Discussions 07-24-2020, 10:49 AM
Replies: 4
Views: 445
Posted By Dave
The problem is most likely due to: <base...

The problem is most likely due to:
<base href="http://www.yesfans.com/forum.php/" /><!--[if IE]></base><![endif]--> which is pulled from the URL settings of your forum.

All stylesheets and...
Forum: vB3 General Discussions 07-16-2020, 09:26 PM
Replies: 60
Sticky: PHP 7 (vB3)
Views: 77,729
Posted By Dave
I don't think that's something to worry about. If...

I don't think that's something to worry about. If no one else will, I will personally provide the diffs for the different PHP versions and the latest vBulletin 3 & 4 versions.
Forum: vBulletin.org Site Feedback 02-16-2020, 03:17 PM
Replies: 2
Views: 1,149
Posted By Dave
No problems here. Might want to try clearing all...

No problems here. Might want to try clearing all your vbulletin.org cookies and try again.
Forum: vB4 General Discussions 02-03-2020, 12:33 PM
Replies: 4
Views: 479
Posted By Dave
AdminCP > Settings > Navigation Manager > set...

AdminCP > Settings > Navigation Manager > set "What's New?" as default.
Forum: vB4 General Discussions 01-16-2020, 10:40 AM
Replies: 2
Views: 209
Posted By Dave
When you say date of last activity, you mean the...

When you say date of last activity, you mean the last time they logged in or the last time they made a post/thread?
Forum: vB4 General Discussions 01-05-2020, 01:00 PM
Replies: 3
Views: 423
Posted By Dave
I recommend using the one you use now as it will...

I recommend using the one you use now as it will also redirect the user to the proper URL without "/forum".
Forum: vB4 Programming Discussions 12-31-2019, 01:37 PM
Replies: 4
ACP
Views: 452
Posted By Dave
At /admincp/index.php around lines 190 to 195...

At /admincp/index.php around lines 190 to 195 there should be a third party script and a line of JavaScript that loads the latest version and renders it.
Forum: vB4 Programming Discussions 12-31-2019, 01:33 PM
Replies: 2
Views: 506
Posted By Dave
AdminCP > Styles & Templates > Replacement...

AdminCP > Styles & Templates > Replacement Variable Manager > Add New Replacement Variable (on the style that is used or all styles) > search for text: old domain name > replace with text: new domain...
Forum: vBulletin 4.x Add-ons 10-15-2019, 12:33 PM
Replies: 95
Integration with vBulletin - Web Push notifications using OneSignal
Views: 53,525
Posted By Dave
On the top of the thread it states "vB Version:...

On the top of the thread it states "vB Version: 4.2.x" which means they likely only tested it with vBulletin 4.2.* and not your version (which is extremely outdated, you should really upgrade)
Forum: vB4 Programming Discussions 10-13-2019, 10:39 AM
Replies: 1
Views: 502
Posted By Dave
If the error says "eval()'d" that means it's...

If the error says "eval()'d" that means it's caused by a hook of an installed plugin.
If you look at line 764 of /includes/class_dm_threadpost.php, it should state which registered hook is causing...
Forum: vB4 General Discussions 09-28-2019, 09:03 PM
Replies: 12
Views: 764
Posted By Dave
Just so everyone is aware, I looked at the forum...

Just so everyone is aware, I looked at the forum of OP and the security issue was present in non-vBulletin related scripts. Currently helping him fix the vulnerabilities.
Forum: vB4 General Discussions 09-28-2019, 06:13 PM
Replies: 12
Views: 764
Posted By Dave
Disabling the plugins, if they are coded...

Disabling the plugins, if they are coded properly, should disable them completely and prevent access to its hooks/files.

Feel free to PM me the URL of your forum and I will take a look and...
Forum: vB3 General Discussions 09-19-2019, 04:54 PM
Replies: 2
Views: 350
Posted By Dave
Change the database type to mysqli in the...

Change the database type to mysqli in the /includes/config.php file.
Forum: vBulletin 4.x Add-ons 09-11-2019, 10:16 PM
Replies: 3,814
Show Thread Enhancements - [AJAX] Post Thank You Hack
Views: 935,920
Posted By Dave
Just insert $postids = array(); before line...

Just insert
$postids = array();
before line 182.
Forum: vB4 Programming Discussions 09-08-2019, 11:28 AM
Replies: 2
Views: 450
Posted By Dave
if($vbulletin->userinfo['userid'] <= 0){ //...

if($vbulletin->userinfo['userid'] <= 0){
// Not logged in
} else {
// Logged in
}

If you want to do it in a template then it depends on the template, but generally something like
<vb:if...
Forum: vB4 Programming Discussions 09-07-2019, 12:05 AM
Replies: 5
Views: 739
Posted By Dave
The error happens in /includes/class_core.php...

The error happens in /includes/class_core.php line 4684, which is the template rendering function.
So in one of the templates that renders that page, there's a syntax error.

I would test it in...
Forum: Forum and Server Management 08-30-2019, 01:53 PM
Replies: 2
Views: 2,045
Posted By Dave
Around line 548, look for $output .= " <div...

Around line 548, look for
$output .= "
<div id=\"copyright\">$vbphrase[vbulletin_copyright]</div>
</div>
</body>
</html>";

and replace with

$output .= "
Forum: vB4 General Discussions 08-24-2019, 07:14 PM
Replies: 31
Views: 2,641
Posted By Dave
I'd rather wait for an update of the user...

I'd rather wait for an update of the user CodeStache before I waste any time on it since they claimed their version will support all features.
...
Forum: vB4 General Discussions 08-24-2019, 06:28 PM
Replies: 31
Views: 2,641
Posted By Dave
Maybe this will make it clear on why it's so hard...

Maybe this will make it clear on why it's so hard and time consuming. The first issue is that newer versions are not backwards compatible with any of the existing vBulletin and BBCode plugins. All...
Forum: vB4 General Discussions 08-21-2019, 06:32 PM
Replies: 1
Views: 259
Posted By Dave
It can work for visitors too. If you edit a...

It can work for visitors too. If you edit a usergroup there is a section called "Forum Searching Permission". Of course the search engine inherits the forum permissions you have set for the...
Forum: vB4 Programming Discussions 08-20-2019, 05:22 PM
Replies: 2
Views: 746
Posted By Dave
The signature HTML structure should be present in...

The signature HTML structure should be present in the postbit/postbit_legacy template in which you can use {vb:raw post.username}.
Forum: Community Lounge 08-18-2019, 05:29 PM
Replies: 8
Views: 1,594
Posted By Dave
If the pictures are hosted/located on the forum...

If the pictures are hosted/located on the forum itself and not by a third party host then your best bet would be to contact the hosting company in question by following the link posted by In Omnibus....
Forum: vB4 General Discussions 08-06-2019, 04:07 PM
Replies: 37
Views: 4,175
Posted By Dave
Yea it was a crazy amount of work because of how...

Yea it was a crazy amount of work because of how much vBulletin embedded into CKEditor. You have the image/attachment uploader/editor and all these other vBulletin add-ons that are part of CKEditor. ...
Forum: vB4 Programming Discussions 07-12-2019, 10:37 AM
Replies: 5
Views: 638
Posted By Dave
Changing the reputation column type in the...

Changing the reputation column type in the database from int to bigint might work. That will increase the maximum value from 2147483647 to 18446744073709551615
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT. The time now is 02:11 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.02885 seconds
  • Memory Usage 2,076KB
  • 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
  • (25)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