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

Showing results 1 to 25 of 44
Search took 0.00 seconds.
Search: Posts Made By: BulliM
Forum: vB3 General Discussions 02-18-2022, 07:55 AM
Replies: 7
Views: 1,083
Posted By BulliM
Thereis an error in your header. <!DOCTYPE...

Thereis an error in your header.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html...
Forum: vB5 Programming Discussions 10-29-2021, 12:01 PM
Replies: 5
Views: 1,697
Posted By BulliM
I tried yesterday, but this doesn't work.

I tried yesterday, but this doesn't work.
Forum: vB5 Programming Discussions 10-28-2021, 11:47 PM
Replies: 5
Views: 1,697
Posted By BulliM
Thanks for that. Will check that. Seems...

Thanks for that. Will check that.


Seems not important, because any line like...
$var[$i]['FIELD'][$y] = $item['FIELD'];
...in my code, results in this error.

Only if all those (five) lines...
Forum: vB5 Programming Discussions 10-27-2021, 05:30 PM
Replies: 5
Views: 1,697
Posted By BulliM
PHP 7 To PHP 8 Issue

Since quite a while I get php 7.3 warnings in Nginx error.log:



As long as it works I ignored that. But when I update PHP to version 8, the sub site is no longer available. Seems that warning...
Forum: vB5 Programming Discussions 05-01-2021, 07:07 AM
Replies: 0
Views: 4,150
Posted By BulliM
Where in DB are avatars?

I just programming an extension and need access to information about avatars. Where in database are they stored?

EDIT: Just found in table customavatar. :D
Forum: vB5 Programming Discussions 11-10-2020, 01:17 PM
Replies: 2
Views: 2,146
Posted By BulliM
Okay, will see. THX, delicjous. :)

Okay, will see. THX, delicjous. :)
Forum: vB5 Programming Discussions 11-10-2020, 10:28 AM
Replies: 2
Views: 2,146
Posted By BulliM
API post an event

How to post an event by vBulletin API? What do I have to define, if I want to post automatically as event? My code so far:

$input = array(
'hvinput' => '',
'title' => 'Title of new event...
Forum: vB5 General Discussions 11-06-2019, 05:41 PM
Replies: 3
Views: 516
Posted By BulliM
Simply do update again. Are ALL folders and files...

Simply do update again. Are ALL folders and files updated? Delete all old files and then upload all new files. Look at both config files. Are that one in root directory renamed to config.php? Is ...
Forum: vB5 Programming Discussions 06-11-2019, 03:10 PM
Replies: 0
Views: 1,132
Posted By BulliM
New Table + Cron

I've created a new table in database. In cron script I try to delete some rows from it. Problem is, that new table isn't defined in /core/vb/db/mysql/querydefs.php. If I define the new table there,...
Forum: vB5 Programming Discussions 04-11-2019, 10:37 PM
Replies: 4
Views: 1,454
Posted By BulliM
I use some JS for. You can use something like...

I use some JS for. You can use something like this, to select an other option by default:

if ($("h1:contains('Create')")) {
$('.js-content-entry-prefixes...
Forum: vB5 General Discussions 04-11-2019, 01:32 AM
Replies: 0
Views: 237
Posted By BulliM
Rebuild attachments

There are some posts including missing pictures that I would like to restore. Luckily I have a complete database dump so I can reconstruct everything. I've already restored the posts (tables node and...
Forum: vB5 Programming Discussions 02-05-2019, 04:29 PM
Replies: 3
Views: 624
Posted By BulliM
Was helpful. Above this function is explained,...

Was helpful. Above this function is explained, what's to do. I'll try that. Thank you delicjous!
Forum: vB5 Programming Discussions 02-05-2019, 01:30 PM
Replies: 3
Views: 624
Posted By BulliM
Create new user account

I try to add new users by an own php script. Is there a vb method, to create new user accounts to vbulletin without using admincp ?

I have USERNAME, EMAILADRESS, PASSWORD and other defaults if...
Forum: vB5 Programming Discussions 02-03-2019, 08:10 PM
Replies: 6
Views: 932
Posted By BulliM
Result: Debug: Error <b>API...

Result:

Debug: Error
<b>API Error</b><br><b>Error:</b> invalid_query_definition_x<br><b>Args:</b><br><pre style="font-family:Lucida...
Forum: vB5 Programming Discussions 02-03-2019, 05:40 PM
Replies: 6
Views: 932
Posted By BulliM
I get no email, because development server has no...

I get no email, because development server has no access to email services.

I get "That action could not be completed. Please try again, and if this occurs again please contact the system...
Forum: vB5 Programming Discussions 02-03-2019, 05:27 PM
Replies: 4
Views: 580
Posted By BulliM
/member/123-username

/member/123-username
Forum: vB5 Programming Discussions 02-03-2019, 06:40 AM
Replies: 6
Views: 932
Posted By BulliM
My table has. userid is the primary key in an...

My table has. userid is the primary key in an added table (same database!). Different is, the searched column wasn't username but user_name. Surely I used that, too. Still cannot understand, why this...
Forum: vB5 Programming Discussions 02-03-2019, 06:17 AM
Replies: 4
Views: 580
Posted By BulliM
Nice solution. Because profile userid is...

Nice solution.

Because profile userid is available in $vbulletin->scriptpath, my solution was:

$to = strpos($vbulletin->scriptpath,"-");
$pageuserid = substr($vbulletin->scriptpath,8,($to-8));...
Forum: vB5 Programming Discussions 02-02-2019, 12:05 PM
Replies: 6
Views: 932
Posted By BulliM
Cannot understand why this not work

Can anyone explain, why this works:

$info = vB::getDbAssertor()->getRow('user', array("userid" => $row['userid']), false, 'username');

and this not:


$info =...
Forum: vB5 Programming Discussions 02-01-2019, 08:24 AM
Replies: 4
Views: 580
Posted By BulliM
Userid in PHP-Module

I've extended user profile site with a PHP-Module, which includes a php file. In this file I need to compare two variables.
$vbulletin->userinfo['userid'];
$vbulletin->page['userid'];
First...
Forum: vB5 Programming Discussions 01-31-2019, 02:55 PM
Replies: 6
Views: 504
Posted By BulliM
Delete only and single row from table if exists....

Delete only and single row from table if exists. $ means e.g. 1 or 51 or an other variable userid. In this table I store some data, who needs to be refreshed in intervals - only if they exist.
Forum: vB5 Programming Discussions 01-31-2019, 02:44 PM
Replies: 6
Views: 504
Posted By BulliM
DELETE FROM database.table WHERE userid =$ LIMIT...

DELETE FROM database.table WHERE userid =$ LIMIT 1

So instead of updating, I prefer to delete and recreate this entry in this case, because I doesn't know, if this entry already is created.
Forum: vB5 Programming Discussions 01-31-2019, 02:37 PM
Replies: 6
Views: 504
Posted By BulliM
Will look at. Thank you so far.

Will look at. Thank you so far.
Forum: vB5 Programming Discussions 01-31-2019, 09:46 AM
Replies: 6
Views: 504
Posted By BulliM
Suppress Database Error

vB results an error, when I try to delete a non existing row. DELETE FROM same_table AS a WHERE EXISTS (SELECT * FROM same_table AS b...) or @ before are not working. Any idea how to supress this...
Forum: vB5 Programming Discussions 12-07-2018, 06:57 AM
Replies: 17
Views: 1,522
Posted By BulliM
Die Vermutung hatte ich auch. Ich lade das Array...

Die Vermutung hatte ich auch. Ich lade das Array aber aus einer Datei. Will nicht jedesmal neu aus der DB laden. Bei mir lautet die Zeile also return file('path/file'); wo vorher die userids...
Showing results 1 to 25 of 44

 
Forum Jump

All times are GMT. The time now is 12:57 AM.


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.01517 seconds
  • Memory Usage 2,034KB
  • 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
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (2)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