Search found 6 matches

by _anix_
Fri Jan 20, 2023 2:27 pm
Forum: Feedback
Topic: Searching for moderators
Replies: 5
Views: 9372

Re: Searching for moderators

You sent me a PM to ask me if i want to join but you can’t receive private messages.
by _anix_
Thu Jan 19, 2023 1:50 pm
Forum: Feedback
Topic: What do you think about the forum? Do you like it?
Replies: 25
Views: 124099

Re: What do you think about the forum? Do you like it?

Looks like you have some nasty spammers mate.
by _anix_
Thu Aug 18, 2022 1:12 am
Forum: [3.0.x] Support Forum
Topic: You are not authorised to view this forum
Replies: 7
Views: 8780

Re: You are not authorised to view this forum

In styles/prosilver/template/forumlist_body.html
Replace:
<!-- IF forumrow.S_AUTH_READ --><!-- IF not S_IS_BOT --><!-- IF S_LTT_ICONS && forumrow.TOPIC_ICON_IMG --><img src="{T_ICONS_PATH}{forumrow.TOPIC_ICON_IMG}" width="{forumrow.TOPIC_ICON_IMG_WIDTH}" height="{forumrow.TOPIC_ICON_IMG_HEIGHT ...
by _anix_
Mon Aug 15, 2022 11:32 am
Forum: [3.0.x] Support Forum
Topic: You are not authorised to view this forum
Replies: 7
Views: 8780

Re: You are not authorised to view this forum

Which mod are you using for that?
If you use https://www.phpbb.com/customise/db/mod/ ... pic_title/
Just replace

Code: Select all

if (!$password_protected && !$permissions_protected)
with

Code: Select all

if (!$password_protected)
In includes/mods/advanced_last_topic_titles.php
by _anix_
Mon Aug 15, 2022 11:23 am
Forum: [3.0.x] Support Forum
Topic: The provided value for the setting "E-mail signature" is...
Replies: 2
Views: 3508

Re: The provided value for the setting "E-mail signature" is

The max length of varchar in MySQL <=4.x is 255.
by _anix_
Mon Aug 15, 2022 11:13 am
Forum: [3.0.x] Support Forum
Topic: Do not show "quote" to guests
Replies: 7
Views: 11082

Re: Do not show "quote" to guests

Yes.

styles/prosilver/viewtopic_body.html
<!-- IF postrow.U_QUOTE --><li class="quote-icon"><a href="{postrow.U_QUOTE}" title="{L_REPLY_WITH_QUOTE}"><span>{L_REPLY_WITH_QUOTE}</span></a></li><!-- ENDIF -->

Replace with:
<!-- IF postrow.U_QUOTE and S_USER_LOGGED_IN --><li class="quote-icon"><a ...