[3.3.x] Styles Support & Discussion • Re: Prosilver standard (brower...
Your welcome, I might have to work on a release for that extension.Nice work on replacing the icons with your css images. You did a very good job with that, Impressive!Statistics: Posted by Sniper_E —...
View ArticlephpBB Discussion • Quickest way to move a phpbb website?
Is there any instructions to move a phpbb website? I need to move mine and obviously would like to keep everything in check. I am currently using cpanel and have backups from cpanel. Also, I see the...
View ArticleExtension Writers Discussion • Need a SPACE in my row
HelloI have this code:Code: // Bots list $sql = 'SELECT COUNT(group_id) AS total_botsFROM ' . USERS_TABLE . 'WHERE group_id = 6ORDER BY username';$result = $this->db->sql_query($sql);$total_bots...
View ArticlephpBB Discussion • Using a CDN
Hi,I have tried the only CDN extension available here in the extension database, and it doesn't work with my CDN bunnycdn.Is there another way to use a CDN with phpbb?Does a CDN really make a big...
View ArticleExtension Writers Discussion • Re: Need a SPACE in my row
like:'BOT_IP'=> str_replace(",", ", ", $row['bot_ip']), Statistics: Posted by Steve — Wed Apr 09, 2025 1:51 pm
View ArticlephpBB Discussion • Re: Quickest way to move a phpbb website?
https://www.phpbb.com/support/docs/en/3 ... or-domain/should help you out a wee tad Statistics: Posted by Steve — Wed Apr 09, 2025 2:04 pm
View ArticleExtensions in Development • Re: [3.3][DEV] Enable Debug & Display Load Time
I use an acp option and permissions for this...but here; event in includes/functions.php 'core.phpbb_generate_debug_output'code Code: if (empty($auth->acl_get('a_'))){return false;}No manual edits...
View ArticlephpBB Discussion • Re: Using a CDN
All I know is CDN(content delivery network) is server sided, both your server and the other server should always work in harmony...Most current web browser only load images if the are in the users...
View ArticlephpBB Discussion • Re: The future of prosilver (phpBB 4)
How about a topic: what should the phpBB4 style look like? Statistics: Posted by Steve — Wed Apr 09, 2025 2:21 pm
View Article[3.3.x] Styles Support & Discussion • Re: Quick Avatar (page)
Serves me right for not testing it live. Ok, this works:Code: {% if S_REGISTERED_USER and (postrow.POSTER_ID == CURRENT_USER_GB) %} <a href="./ucp.php?i=ucp_profile&mode=avatar"><i...
View Article[3.3.x] Support Forum • Re: "subscribe topic" to really worked as a...
Ok, definite bug. As I suspected, the condition for changing the icon class is arse about, so it's forcing the unchecked box when subscribed and the checked box when unsubscribed.This:Code: <i...
View ArticleExtensions in Development • [3.2][3.3][DEV] Recent Topics Extension for phpBB
# Recent Topics Extension for phpBB## OverviewThis extension enhances topic discovery in phpBB forums by adding visual indicators to recent topics based on their creation date. It provides an...
View Article[3.3.x] Styles Support & Discussion • Re: Star Trek phpbb theme ?
Hello Sniper_E, I assume you mean another style, which existed for example on Spieleresidenz-de (never exist anymore in this context (Olympus)).And right, they have/had developed a Star-Trek-Theme...
View ArticlephpBB Custom Coding • IF FORUM_ID eq [SOLVED]
.Hopefully easiest question of the day.You know that thing where you add <!-- IF FORUM_ID eq 17 --> to viewforum_body.html in order to display custom content?That tip works great, very...
View ArticleExtension Writers Discussion • Passing data array to custom function in miration
I don't want to flood the standard config table with my vars, so I created a new config table. Sample code in my migration fileCode: public function update_data(){return [$data = ['var_1'=>...
View ArticlephpBB Custom Coding • Re: IF FORUM_ID eq
Try:Code: {% if FORUM_ID in [17,75,106,8,23,14,57,2] %}Statistics: Posted by thecoalman — Fri Apr 11, 2025 1:09 pm
View ArticleExtensions in Development • Re: [3.3][BETA] Anonymous Posts
Hi! Works wonderful, although from what I can see, the original poster's name is still visible from the index page when anonymous post is inside subforumStatistics: Posted by arrawh — Fri Apr 11, 2025...
View Article[3.3.x] Support Forum • Re: Strange display
Thank you.Normally they are several style sheets : are they all empty ?Statistics: Posted by Hervé — Fri Apr 11, 2025 1:42 pm
View ArticleExtension Writers Discussion • Re: Passing data array to custom function in...
In theory (never tested myself) it should work like thatCode: public function update_data(){$data = ['var_1'=> 1,'var_2'=> 1,'var_3'=> 0,];return [// Call a custom callable function to...
View Article[3.3.x] Support Forum • Disable Automatic Registration Email
Hello, I have set up the forum registration to require approval from the administrator. Now, I would like to disable the automatic email sent after registration, as I personally contact each new...
View Article