phpBB Custom Coding • Re: Some useful SQL
The phpbb_topics_track table can get enormous over many years because most users never use the mark forums read link and it has a lot of records that can exist since you installed phpBB. Mine was up...
View ArticlephpBB Discussion • Re: How to enable "Expand code" on 3.3.14 ?
Perhaps that was a 3.0 mod you used?The board linked in this post viewtopic.php?p=12348855#p12348855 has it. Maybe it is part of the style used.Statistics: Posted by Brf — Tue Jan 07, 2025 9:17 pm
View ArticleExtension Requests • Re: chatgpt extension for 3.3.14
perhaps Public release of extension for Open AI (ChatGPT+DALLE), Stable Diffusion and Midjourney?Statistics: Posted by warmweer — Tue Jan 07, 2025 9:18 pm
View ArticleExtension Requests • Re: Allow users to fully ignore/hide other users
Thanks for your help. It looks like this would give my users the ability to ignore posts but would they have to ignore each one manually? or would this allow them to ignore all posts from a certain...
View Article[3.3.x] Support Forum • Only show immediate children forum
I am attaching the screen. As you can see I want Application to show up only when I click on Device Dependent since it will show Android as a child forum...Statistics: Posted by sikni8 — Wed Jan 08,...
View Article[3.3.x] Support Forum • Re: Only show immediate children forum
No need for help... I figured it out!Statistics: Posted by sikni8 — Wed Jan 08, 2025 1:22 am
View ArticleExtensions in Development • Re: [3.3][DEV] phpBB Demo and Download Styles...
Extension Updated v1.0.5, added count download for styles, see demo and screenshots on front page. Statistics: Posted by Galandas — Wed Jan 08, 2025 5:06 am
View Article[3.3.x] Styles Support & Discussion • Re: When a message has an image...
That CSS change doesn't prevent content shift.Setting the thumbnail to 600 or max resolutions to 600 both side without any other changes would accomplish the same thing. This won't prevent content...
View Article[3.3.x] Support Forum • Re: Posting in large forum takes time with email enabled
Under board features try setting "Allow subscribing to forums:" to no. This will disable that feature and users will no longer be able to subscribe to forums or get notifications. This has no effect...
View ArticleExtension Writers Discussion • Re: Utilizing the cache for extension-specific...
Example from the Trackers extension:Code: $trackers = $this->cache->get('_trackers');if (!$trackers){$sql = 'SELECT *FROM ' . $this->table_prefix . 'trackers_trackers';$result =...
View ArticlephpBB Custom Coding • Re: How to enable "Expand code" on 3.3.14 ?
Note: Moved to phpBB Custom CodingOK, it's not that hard. Both of these files are in the /styles/prosilver/template/ directory.OPEN: overall_footer.htmlFIND:Code: <!-- IF S_PLUPLOAD --><!--...
View ArticlephpBB Custom Coding • Re: WYSIWYG bbcode editor (SCEditor) extension - adding...
I have a plan to develop this extension, but no one is interested or supporting it yet.Statistics: Posted by bbthailand — Thu Jan 09, 2025 3:12 am
View Article[3.3.x] Styles in Development • Re: [RC] CommunityChild 3.3.14
style now in phpbb cdbStatistics: Posted by Prosk8er — Thu Jan 09, 2025 10:40 pm
View ArticlephpBB Custom Coding • Re: Manually insert users into PHPBB3
You can usually use $_SERVER["DOCUMENT_ROOT"] which is usually /root/path/to/public_html Note there is no trailing slash. Code: require($_SERVER["DOCUMENT_ROOT"] . '/common.' . $phpEx);You can test...
View Article[3.3.x] Support Forum • Re: BBCode generates wrong link
Unable to reproduce this on a clean phpBB 3.3.14 install on localhost though. There should be something else affecting that behavior.Sorry, totally missed that it's about wrapping the link into...
View ArticleExtension Writers Discussion • Re: Howto? Add a panel to the post editor page
Will it be shown if you remove <!-- IF S_UPLOADER_PANEL --> ... <!-- ENDIF --> wrapper condition from the posting_layout_include_panel_body.html? if so, ensure S_UPLOADER_PANEL is...
View ArticlephpBB Custom Coding • Re: [SOLVED] viewtopic-body.html - IF user is viewing...
Cool! I'll give it a try later. I'm working through another site project for now.Thank you for getting back to us with that info!Statistics: Posted by SQLnovice — Fri Jan 10, 2025 2:57 am
View Article[3.3.x] Styles Support & Discussion • Re: (upgrade) to Font Awesome 6
I'll bookmark it Statistics: Posted by Galandas — Fri Jan 10, 2025 4:49 am
View Article[3.3.x] Support Forum • Re: Can we show post counts next to usernames on the...
Instead I would suggest a stronger spam protection.like what PLZ?First, you must tell us which anti spam measure you are using currently as Kevin asked above then we can recommend a better solution...
View ArticleExtension Writers Discussion • Creating a controller that handles POST
I have:routing.ymlCode: tig_blobuploader_blobuploader: path: /blobuploader defaults: { _controller: tig.blobuploader.controller.blobuploader::handle_request } methods: [POST]services.ymlCode:...
View Article