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

Showing results 1 to 25 of 79
Search took 0.00 seconds.
Search: Posts Made By: shka
Forum: vB5 Programming Discussions 10-28-2021, 01:26 PM
Replies: 5
Views: 1,697
Posted By shka
https://www.php.net/manual/de/migration80.incompat...

https://www.php.net/manual/de/migration80.incompatible.php


A number of warnings have been converted into Error exceptions:
...
Attempting to access unqualified constants which are...
Forum: vBulletin 5.x Template Modifications 02-22-2021, 09:26 AM
Replies: 20
Views: 6,906
Posted By shka
You can try it with .threadtitle_unread:after { ...

You can try it with .threadtitle_unread:after {
instead of tr.topic-item.unread.js-topic-item .js-topic-title:after {
Forum: vB5 General Discussions 02-21-2021, 12:04 PM
Replies: 3
Views: 1,995
Posted By shka
The way in your first post is not recommendable. ...

The way in your first post is not recommendable.

There are two ways:
A. (complete cleaning)
- Upgrade installation (with or without uninstall mods), important is only deleting all old vb4 files...
Forum: vB5 General Discussions 02-19-2021, 01:25 PM
Replies: 2
Views: 2,185
Posted By shka
AdminCP / Settings / Product/Hook-System / Add...

AdminCP / Settings / Product/Hook-System / Add Template Name in HTML Comments

Add the template name at the beginning and end of every template rendered. This is useful for debugging and analyzing...
Forum: vB4 Programming Discussions 02-15-2021, 04:36 PM
Replies: 4
Views: 599
Posted By shka
For output/echo values use curly braces and for...

For output/echo values use curly braces and for array use dot syntax instead of square brackets.

https://www.vbulletin.com/docs/html?manualversion=40205500 - search for "template syntax"
Forum: vB4 Programming Discussions 02-15-2021, 04:05 PM
Replies: 4
Views: 599
Posted By shka
<div id="notice">{vb:raw...

<div id="notice">{vb:raw vboptions.drc_notice}</div>
Forum: vB4 General Discussions 01-29-2021, 04:26 AM
Replies: 3
Views: 1,693
Posted By shka
Two ways possible - creating inside admincp or...

Two ways possible - creating inside admincp or writing directly in product-yourproductname.xml

It is the same way in vb4 and in vb5 so you should read...
Forum: vB5 General Discussions 01-27-2021, 11:57 AM
Replies: 6
Views: 559
Posted By shka
Please first check your error logs. The...

Please first check your error logs.

The other points I've listed are only possible examples for the variety of issues which lead to a error 500.
Forum: vB5 General Discussions 01-26-2021, 06:08 PM
Replies: 6
Views: 559
Posted By shka
First step check error logs. Typically...

First step check error logs.

Typically Permissions, timeouts, misconfiguration in .htaccess.
Forum: vB4 Programming Discussions 01-18-2021, 01:00 PM
Replies: 12
Views: 1,099
Posted By shka
Sure vbet is your problem? Other plugins all...

Sure vbet is your problem? Other plugins all disabled for test?
Forum: vB4 Programming Discussions 01-18-2021, 11:03 AM
Replies: 12
Views: 1,099
Posted By shka
Which plugin?

Which plugin?
Forum: vB5 Programming Discussions 01-16-2021, 01:34 PM
Replies: 7
Views: 902
Posted By shka
In dem Fall war das auskommentierte Array ja aus...

In dem Fall war das auskommentierte Array ja aus den Snippets auf vbulletin.com in deiner Anfrage. Aber sonst wäre das Vorgehen:

Event = normaler Post-Table + zusätzliche Felder in Event-Table...
Forum: vB5 Programming Discussions 01-15-2021, 09:38 AM
Replies: 4
Views: 418
Posted By shka
If you don't have a screenshot - you should...

If you don't have a screenshot - you should describe where you want to show it. This is not a default vbulletin field, I don't know the meaning of it.

Screenshot of actual board and paint where...
Forum: vB5 Programming Discussions 01-15-2021, 12:17 AM
Replies: 4
Views: 418
Posted By shka
Which table columns and where / how to display...

Which table columns and where / how to display (screenshot from old system)?
Forum: vBulletin 4.x Add-ons 01-12-2021, 01:27 PM
Replies: 21
Add-On Releases - HTML5 Game Mod for ibProArcade
Views: 6,674
Posted By shka
MySQL Version >=8.0.3? system is a reserved...

MySQL Version >=8.0.3?

system is a reserved word, so you have to use it only with backticks.

So first you could change line 14 of product-gamesystemcheck.xml

...
Forum: vB5 Programming Discussions 01-11-2021, 04:40 PM
Replies: 7
Views: 902
Posted By shka
Ich schreibe es mal auf deutsch, da geht das...

Ich schreibe es mal auf deutsch, da geht das fl?ssiger. Wie bereits erw?hnt besteht ein Event in vB5 nicht nur aus einem Eintrag in den Event-Table, sondern aus einem Topic in einem Forumschannel,...
Forum: vB4 Programming Discussions 12-27-2020, 03:59 PM
Replies: 1
Views: 424
Posted By shka
You don't need <script type="text/javascript">,...

You don't need <script type="text/javascript">, <script> is ok.

<script>
var d = new Date();
const options = { year: 'numeric', month: 'long', day: 'numeric' };
...
Forum: vB4 Programming Discussions 11-25-2020, 02:58 PM
Replies: 13
Views: 2,089
Posted By shka
One option - you build your link on plugin level....

One option - you build your link on plugin level. Than you have to choose a hook, when $threadinfo already exists. Example with "showthread_complete"


<plugin active="1" executionorder="5">...
Forum: vB4 Programming Discussions 11-25-2020, 12:03 PM
Replies: 13
Views: 2,089
Posted By shka
one post above {vb:raw threadinfo.threadid}

one post above

{vb:raw threadinfo.threadid}
Forum: vB4 Programming Discussions 11-25-2020, 11:52 AM
Replies: 13
Views: 2,089
Posted By shka
{vb:raw threadinfo.threadid} Like in your...

{vb:raw threadinfo.threadid}

Like in your quotation of kh99 post.In your plugin code you can use $threadinfo['threadid']. ...

threadinfo.threadid and $threadinfo['threadid'] is the same...
Forum: vB4 Programming Discussions 11-25-2020, 11:03 AM
Replies: 13
Views: 2,089
Posted By shka
Either my English is too bad and I don't...

Either my English is too bad and I don't understand you.
Or you didn't read my post / code.
Forum: vB4 Programming Discussions 11-25-2020, 10:46 AM
Replies: 13
Views: 2,089
Posted By shka
Which template? In postbit_legacy or...

Which template?

In postbit_legacy or post_thanks_button
{vb:raw post.threadid}
Forum: vB5 Programming Discussions 11-03-2020, 11:10 AM
Replies: 11
Views: 3,695
Posted By shka
As you wrote they are always inside. But you have...

As you wrote they are always inside. But you have to check if empty or not. Like line 31

<vb:if condition="!empty($page['nodeid']) AND !empty($page['channelid'])">

Or do you mean how you get...
Forum: vBulletin 5.x Products & Extensions 10-30-2020, 09:45 AM
Replies: 25
Views: 5,987
Posted By shka
Dann auch done getan.

Dann auch done getan.
Forum: vBulletin 5.x Products & Extensions 10-29-2020, 03:37 PM
Replies: 25
Views: 5,987
Posted By shka
Another approach: I had created a prototype for...

Another approach: I had created a prototype for zweeper with a frontend controller. This means that the post / bbcode only contains a placeholder and an ajax call, the frontend controller can map any...
Showing results 1 to 25 of 79

 
Forum Jump

All times are GMT. The time now is 12:15 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.02256 seconds
  • Memory Usage 2,048KB
  • 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
  • (28)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