Not upgrading because of a link is like refusing to eat because there's no ketchup on your fries. Editing a template doesn't take much more time than opening the little packet of ketchup that usually goes with the fries.
Even if every link on the front page were blinking and all led to a random ...
Search found 384 matches
- Sat Mar 07, 2020 2:08 pm
- Forum: [3.x] Style Development
- Topic: [4.0.x] Chameleon: no more first unread post links
- Replies: 16
- Views: 64421
- Tue Mar 03, 2020 9:41 pm
- Forum: [3.x] Style Development
- Topic: [4.0.x] Chameleon: no more first unread post links
- Replies: 16
- Views: 64421
Re: [4.0.x] Chameleon: no more first unread post links
As a point of reference: when logged-in, a topic's title in XenForo's "viewforum" page links to the first unread post. There's no special icon to click because it's assumed that most users want to resume reading the topic where they left off. The last post information does link to the last post.
- Mon Feb 24, 2020 11:33 pm
- Forum: [3.x] Discussion
- Topic: DocBlocks
- Replies: 15
- Views: 45693
Re: DocBlocks
You can use strict_types on new files while preserving compatibility with the less type-aware parts of the codebase.
- Sat Dec 07, 2019 11:53 pm
- Forum: [3.x] Tickets Discussion
- Topic: PHPBB3-16250 - Improve detection of unsafe BBCodes in ACP
- Replies: 0
- Views: 149192
PHPBB3-16250 - Improve detection of unsafe BBCodes in ACP
https://tracker.phpbb.com/browse/PHPBB3-16250
https://github.com/phpbb/phpbb/pull/5770
Some context: when adding or editing a custom BBCode, the form produces an error if the BBCode is deemed risky. The user is warned but can still create the risky BBCode. The error message mentions the possibility ...
https://github.com/phpbb/phpbb/pull/5770
Some context: when adding or editing a custom BBCode, the form produces an error if the BBCode is deemed risky. The user is warned but can still create the risky BBCode. The error message mentions the possibility ...
- Thu Aug 15, 2019 8:08 pm
- Forum: [3.x] Discussion
- Topic: Use modern PHP syntax and features in all new code
- Replies: 2
- Views: 11308
Re: Use modern PHP syntax and features in all new code
phpBB already uses autoloading, just not for everything. There's a couple dozen of old files that need to be loaded manually, most of them are in common.php anyway.
- Sun Jun 16, 2019 3:38 am
- Forum: [3.x] Discussion
- Topic: Use modern PHP syntax and features in all new code
- Replies: 2
- Views: 11308
Use modern PHP syntax and features in all new code
Now that phpBB requires a contemporary version of PHP, I suggest that the coding guidelines be updated to take advantage of it.
For instance, if that's not already the case, all new code should use the short array syntax.
All new code should use scalar typing where available and return typing too ...
For instance, if that's not already the case, all new code should use the short array syntax.
All new code should use scalar typing where available and return typing too ...
- Mon May 27, 2019 12:58 am
- Forum: [3.x] Discussion
- Topic: [Solved]Install the dependencies (4.0.0-a1-dev)
- Replies: 8
- Views: 26976
Re: Install the dependencies (4.0.0-a1-dev)
You're probably not using PHP 7, somehow. Try
Although it's weird Composer didn't warn about it. Might be a weird edge case.
php -v
.Although it's weird Composer didn't warn about it. Might be a weird edge case.
- Mon Nov 05, 2018 3:29 pm
- Forum: [3.x] Discussion
- Topic: Future support for Sphinx Search
- Replies: 15
- Views: 51529
Re: Future support for Sphinx Search
SphinxQL has been around since 0.9.9-rc2 so it should cover any version of Sphinx released this decade.
- Sat Oct 13, 2018 8:20 pm
- Forum: [3.x] Discussion
- Topic: PhpBB server load management
- Replies: 6
- Views: 24525
Re: PhpBB server load management
A quick test on my local 3.2.x install shows that it takes between 200-300 files and 1-6 queries to get past session_begin() , the smaller number being for a hot cache. I don't think the exact number of queries really matters, it's more about having to create a connection. It takes about ~60ms to ...
- Sat Oct 13, 2018 12:16 pm
- Forum: [3.x] Discussion
- Topic: PhpBB server load management
- Replies: 6
- Views: 24525
Re: PhpBB server load management
If you push load management to the application, by the time it starts checking whether the request should be served, a hundred different PHP files have already been loaded, a connection to the database has been established, a dozen different tables have already been queried and ~40% of the work ...