Search found 7 matches

by marcovo
Sat Aug 08, 2015 11:30 am
Forum: [3.x] Discussion
Topic: Database table prefix
Replies: 3
Views: 20932

Database table prefix

This topic arose from two topics on the community site, here and here . These topics are in essence about the error I also got, see the quote below. General Error Index name 'phpbb3_search_wordmatch_un_mtch' on table 'phpbb3_search_wordmatch' is too long. The maximum is 30 characters. BACKTRACE FILE...
by marcovo
Mon Apr 27, 2015 9:53 am
Forum: [3.x] Discussion
Topic: phpBB 3.1.4 RC2 released
Replies: 27
Views: 51158

Re: phpBB 3.1.4 RC1 released

You can already sort the list/table in https://wiki.phpbb.com/Event_List , after which all events are grouped per release. Search for the desired release and you have your requested filter I guess?
by marcovo
Fri Feb 06, 2015 6:29 pm
Forum: [3.x] Event Requests
Topic: [PHP] core.bbcode_cache_init
Replies: 6
Views: 25571

Re: [PHP] core.bbcode_cache_init

As there is now a event included in phpBB3.1.3, core.bbcode_cache_init_end, I didn't really look into timing any more. What I did notice: - An event that has no subscribers takes 2e-5 seconds to execute (=0.00002 seconds) - An event that has one subscriber with no further code (so, an empty function...
by marcovo
Tue Nov 18, 2014 2:05 pm
Forum: [3.x] Event Requests
Topic: [PHP] core.bbcode_cache_init
Replies: 6
Views: 25571

Re: [PHP] core.bbcode_cache_init

Thanks for your suggestions. I'll look into it, and indeed investigate whether there is a noticable delay when using such a JIT-inclusion (I guess you could call it that way :P ) or events.
by marcovo
Tue Nov 18, 2014 8:11 am
Forum: [3.x] Event Requests
Topic: [PHP] core.bbcode_cache_init
Replies: 6
Views: 25571

Re: [PHP] core.bbcode_cache_init

Do you mean including that piece of code with each bbcode? This poses a few problems I guess. The library isn't very fast in converting the math-tags to actual math. By this I mean, for one second or so you'll see [math ]-tags, and then they are replaced with formulas. If you create another <script ...
by marcovo
Sat Nov 15, 2014 12:24 pm
Forum: [3.x] Discussion
Topic: [Define New Theme] 17. Completely remove all generated HTML from the core.
Replies: 15
Views: 34646

Re: [Define New Theme] 17. Completely remove all generated HTML from the core.

Would it be an option to use bbcode(-like) tags to markup language-files then? Would at the same time maybe be much cleaner to translators, too. Then you won't have to deal with <strong >, etc... because you got a bold tag, and the same for the rest. Only <p > isn't supported by the bbcode system I ...
by marcovo
Sat Nov 15, 2014 10:30 am
Forum: [3.x] Event Requests
Topic: [PHP] core.bbcode_cache_init
Replies: 6
Views: 25571

[PHP] core.bbcode_cache_init

Identifier: core.bbcode_cache_init (or sth like that?) Location: bbcode.php, bbcode_cache_init(), likely just after if (isset($rowset[$bbcode_id])) Parameters: $rowset[$bbcode_id] (or just $bbcode_id , see explanation) Explanation: I'm currently busy porting the MathJax phpBB integration mod . This...