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

Showing results 1 to 25 of 187
Search took 0.01 seconds.
Search: Posts Made By: Dead Eddie
Forum: vB4 Programming Discussions 09-18-2023, 10:04 AM
Replies: 1
PHP
Views: 670
Posted By Dead Eddie
4.2.5 would require a maximum of PHP 7.1, which...

4.2.5 would require a maximum of PHP 7.1, which is already ancient.

Looks like 4.2.1 would require a maximum of 5.3.
Forum: vBulletin Pre-Sales Questions 03-16-2023, 10:52 AM
Replies: 2
Views: 2,203
Posted By Dead Eddie
Because they're spambots.

Because they're spambots.
Forum: vB3 General Discussions 02-06-2023, 10:38 AM
Replies: 11
Views: 1,491
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: vB4 General Discussions 11-27-2022, 05:08 PM
Replies: 5
Views: 679
Posted By Dead Eddie
Threads are stored in the database, not the file...

Threads are stored in the database, not the file system. There's no file to download. You'll have to query the database, or save the page from the browser window.
Forum: vBulletin Pre-Sales Questions 01-04-2022, 09:35 PM
Replies: 2
Views: 1,660
Posted By Dead Eddie
Everyone started somewhere. Nobody magically...

Everyone started somewhere. Nobody magically understood any of this on their first go around.

Most consumer grade web software is designed to be fairly easy to run. Most of what you'll need is an...
Forum: vB4 General Discussions 12-31-2021, 02:07 PM
Replies: 15
Views: 1,460
Posted By Dead Eddie
The version of PHP will not affect any of the...

The version of PHP will not affect any of the data in the database.
Forum: vB4 Programming Discussions 12-29-2021, 11:04 AM
Replies: 4
Views: 1,306
Posted By Dead Eddie
Those errors don't appear to be add-on related....

Those errors don't appear to be add-on related. However, if you think you have a problem with an add-on, you should be talking to the author.

Otherwise, if you want to run vBulletin 4.2.5 on...
Forum: vB4 Programming Discussions 12-25-2021, 11:43 PM
Replies: 4
Views: 1,306
Posted By Dead Eddie
You can't run VB 4.2.5 with PHP 7.3. You need to...

You can't run VB 4.2.5 with PHP 7.3. You need to downgrade to 7.1, or move to a supported version of Vbulletin.
Forum: vBulletin Pre-Sales Questions 10-27-2021, 12:39 AM
Replies: 11
Views: 3,767
Posted By Dead Eddie
No, they just copied a post from another...

No, they just copied a post from another unrelated website that sounded like it might be potentially related to Vbulletin.

http://forum.cakewalk.com/VB3-Can39t-save-licence-file-m3480897.aspx
Forum: vBulletin Pre-Sales Questions 10-25-2021, 10:58 PM
Replies: 11
Views: 3,767
Posted By Dead Eddie
I'm sure the spammer will appreciate the...

I'm sure the spammer will appreciate the informative post when they return to edit their post and add links. :up:
Forum: vB3 Programming Discussions 10-28-2020, 02:47 PM
Replies: 1
Views: 3,830
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 02-03-2018, 10:25 AM
Replies: 3
Views: 460
Posted By Dead Eddie
In your CSS: .lastpost-by, .lastpost-date { ...

In your CSS:

.lastpost-by, .lastpost-date {
display: inline-block;
}
Forum: vB4 Programming Discussions 11-17-2017, 08:12 PM
Replies: 4
Views: 472
Posted By Dead Eddie
I noticed this: $result2 =...

I noticed this:

$result2 = mysql_query($SQL_QRY, $con);

;)
Forum: vB4 General Discussions 10-17-2016, 10:39 AM
Replies: 1
Views: 395
Posted By Dead Eddie
Here's how I've done it in the past: ...

Here's how I've done it in the past:

https://vborg.vbsupport.ru/showpost.php?p=2247153&postcount=7

Haven't looked at a recent version of vBCMS, but it should still work.
Forum: vB5 Programming Discussions 04-03-2016, 03:39 PM
Replies: 6
Views: 1,805
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: vB4 Programming Discussions 10-24-2015, 08:55 AM
Replies: 2
Views: 440
Posted By Dead Eddie
Haven't tested this lately, but it worked last...

Haven't tested this lately, but it worked last time I did it:

require_once(DIR . '/includes/functions_user.php');
$avatarurl = fetch_avatar_url($view->authorid, true);
if ($avatarurl[0]) {
...
Forum: vB5 Programming Discussions 05-12-2015, 09:40 PM
Replies: 3
Views: 878
Posted By Dead Eddie
You need to explicitly pass data from one...

You need to explicitly pass data from one template to another.

There should be plenty of examples in the code if you perform a search for vb:template to see the syntax. Don't have my vb5 install...
Forum: vB4 General Discussions 05-06-2015, 09:17 AM
Replies: 19
Views: 1,396
Posted By Dead Eddie
<a...

<a href="http://www.vbulletin.com/docs/html/cms_section_manager" target="_blank">http://www.vbulletin.com/docs/html/cms_section_manager</a>
Forum: vB4 General Discussions 05-06-2015, 12:46 AM
Replies: 19
Views: 1,396
Posted By Dead Eddie
I'm not following what you want. However, with...

I'm not following what you want. However, with the CMS, you can manage the following types of pages:

1. Section (like the home page)
2. Category
3. Article
4. Static HTML
5. PHP

If what...
Forum: vB5 Programming Discussions 05-05-2015, 12:05 AM
Replies: 4
Views: 738
Posted By Dead Eddie
Are you looking for the human readable form of...

Are you looking for the human readable form of widget_polls_widgettitle? If so, it's a phrase.
Forum: vB5 Programming Discussions 02-24-2015, 04:59 PM
Replies: 7
Views: 1,092
Posted By Dead Eddie
This is something that I can possibly look at...

This is something that I can possibly look at next week.

Since saying I'd look at it, I've had a funeral on the other side of the country, the flu for almost a week, and a non-stop visit from...
Forum: vB5 Design and Graphics Discussions 02-16-2015, 01:17 AM
Replies: 2
Views: 14,085
Posted By Dead Eddie
Have you looked at...

Have you looked at includes/vb5/frontend/controller/auth.php?
Forum: vB5 Programming Discussions 02-13-2015, 04:25 PM
Replies: 7
Views: 1,092
Posted By Dead Eddie
Vb5 doesn't use the data managers, so that's not...

Vb5 doesn't use the data managers, so that's not going to work.

I'm doing something similar for somebody as a POC, so I'll be posting sample code. Otherwise, you'll have to look into how to...
Forum: vB5 Programming Discussions 02-13-2015, 03:19 PM
Replies: 7
Views: 2,242
Posted By Dead Eddie
I might be able to come up with a working...

I might be able to come up with a working example, but I'm not 100% sure when I'll have time to work on it. And, the PHPdoc documentation for this method is just north of completely useless.
Forum: vB5 Programming Discussions 02-12-2015, 02:09 AM
Replies: 7
Views: 1,092
Posted By Dead Eddie
Yes. You'd want to call the vB5 API and have it...

Yes. You'd want to call the vB5 API and have it generate a new user record when your user registers.
Showing results 1 to 25 of 187

 
Forum Jump

All times are GMT. The time now is 10:23 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.02875 seconds
  • Memory Usage 2,049KB
  • 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)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (12)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