TP-Docs
HTML5 Icon HTML5 Icon HTML5 Icon
TP on Social Media

Recent

Welcome to TinyPortal. Please login or sign up.

December 10, 2024, 06:31:01 AM

Login with username, password and session length

Recent posts

#1
Support / Re: Display on topics only?
Last post by @rjen - November 27, 2024, 11:46:52 AM
That setting does not exist
#2
Support / Display on topics only?
Last post by dinotoyforum - November 27, 2024, 10:29:36 AM
Under "choose where the block should appear" you can select specific boards. I'd like to specify for a block to appear only on the topic pages within that board, not on the board page(s) themselves (i.e. not on the list of topics).

The next best thing would be an option for a block to appear on all topics (but only topics), irrespective of board, across the forum.

Am I overlooking a setting for this?

#3
Support / Copyright entfernen
Last post by rrolle - November 14, 2024, 11:14:09 AM
Ich möchte das Copyright von TP auf meiner Site entfernen. Ich weiß, dass es 20 US-Dollar kostet. Aber ich kann die Option, den Betrag zu bezahlen, nicht finden. Wo gibt es nähere Informationen?
Ich konnte auch hier im Forum nichts finden (oder bin zu ...)
#4
Support / Re: Blöcke werden angezeigt ob...
Last post by Arminus - November 14, 2024, 07:04:55 AM
Thanks for the help, just applied that patch, works ok for any "subpage" which gets loaded with an id parameter.

We do however also have other subpages which don't need any parameter and then the patch obviously doesn't work. Workaround on top of the patch would be to load those with a dummy id=0 param, but well...

Those pages are not mods by the way, but standalone php pages which we embed into TinyPortal - like https://www.roberge.de/webcamkarte.php - as mentioned, the effect did not exist until we upgraded to 3.0.1
#5
Support / Re: Error that won't go away
Last post by darkangel - November 14, 2024, 05:07:02 AM
There were older tp tables in the database and it would not load the newer versions of TP at all, I had to drop the older tables then the new TP installed.

The weird thing is that when I did a hard refresh much later in the day, all the info showed up. I only had to manually enter some info into the blocks themselves.
#6
Support / Re: TinyPortal 3.0.1 - Shoutbo...
Last post by ramiroelliot - November 14, 2024, 04:40:45 AM
Quote from: @rjen on November 11, 2024, 05:34:08 PMFixed it. was a simple mistake in the file TPShout.php

If you want to run TP 3.0.1 you can install it and simply upload this file to the \Sources folder in your forum

Okay thank you!
#7
Support / Re: Blöcke werden angezeigt ob...
Last post by @rjen - November 13, 2024, 08:23:43 PM
Did a quick check and I see why the block is showing: this is because your 'subpage' is basically considered a Frontpage

// frontpage
if (!isset($_GET['action']) && !isset($_GET['board']) && !isset($_GET['topic']) && !isset($_GET['page']) && !isset($_GET['cat'])) {
    $permissions[] = 'frontpage';
}

Your URL does not meet any of the checks: https://www.roberge.de/tour.php?id=1476

This has not changed from 3.0.0 to 3.0.1. so I cannot explain why it is different from what you are used to.

What you can try is updating These lines in Tinyportal\Block.php, to this. This may help in your specific case, but I cannot test it...

// frontpage
if (!isset($_GET['action']) && !isset($_GET['board']) && !isset($_GET['topic']) && !isset($_GET['page']) && !isset($_GET['cat'] && !isset($_GET['id'])) {
    $permissions[] = 'frontpage';
}
#8
Support / Re: Blöcke werden angezeigt ob...
Last post by rrolle - November 13, 2024, 07:59:07 AM
QuoteIch kann es überprüfen, aber ich kann es nicht garantieren und es wird einige Zeit dauern.

Das wäre gut!
#9
Support / Re: Blöcke werden angezeigt ob...
Last post by @rjen - November 13, 2024, 07:54:49 AM
I have no clue. This is a non standard setup.

Maybe one of the updates in 3.0.1 had this side effect. I can check , but no guarantees and it will take some time
#10
Support / Re: Blöcke werden angezeigt ob...
Last post by rrolle - November 13, 2024, 07:38:22 AM
Ja, in der Version 3.0.0 hat es problemlos funktioniert.
Gibt es denn eine Lösung, oder soll ich menien Programmierer beauftragen, die "Unterseite" tour.php anzusehen?