Search found 4 matches

by Stanton
Sun Jun 08, 2025 7:09 am
Forum: phpBB Discussion
Topic: Refugees phpBB 3.2 - Index page.
Replies: 1
Views: 69
Switzerland

Re: Refugees phpBB 3.2 - Index page.

Htopknolf wrote: Go to postSat Jun 07, 2025 8:45 pm and how do we balance that with the need for modern features?
Interesting point of view through the prism of new technologies that look bitterly at their peers.
You should first define what these modern technologies are in order to know if a 24-year old mastodon can compete with?
by Stanton
Sat Apr 05, 2025 9:39 am
Forum: phpBB Custom Coding
Topic: Correct an incorrect Whois localization
Replies: 0
Views: 6325
Switzerland

Correct an incorrect Whois localization

To correct an incorrect Whois localization for registered and invited users, please modify the prosilver style template file viewonline_body.html as follows

Find

Code: Select all

{user_row.U_WHOIS}
Replace by

Code: Select all

https://ipinfo.io/{user_row.USER_IP}
After modification clear cache.

Whois localization.png
Whois localization.png (109.09 KiB) Viewed 6325 times
by Stanton
Wed Sep 04, 2024 10:18 am
Forum: phpBB Custom Coding
Topic: Do not allow attachments to be downloaded to guests and bots
Replies: 0
Views: 9494
Switzerland

Do not allow attachments to be downloaded to guests and bots

Open includes/functions_content.php and find 'S_FILE' => true, Add after on new line 'S_DENIED' => (empty($user->data['is_registered']) || !empty($user->data['is_bot'])) ? true : false, 'DENIED_MESSAGE' => 'You do not have the required permissions to download this file.<br>Need to be logged in to th...
by Stanton
Sun Aug 18, 2024 3:22 pm
Forum: phpBB Custom Coding
Topic: Replace joined by last visit in post profil
Replies: 0
Views: 4002
Switzerland

Replace joined by last visit in post profil

Open viewtopic.php and find 'joined' => $user->format_date($row['user_regdate']), Replace with 'joined' => $user->format_date($row['user_lastpost_time']), Open styles/prosilver/viewtopic_body.html and find <dd class="profile-joined"><strong>{L_JOINED}{L_COLON}</strong> {postrow.POSTER_JOIN...