Search found 595 matches
- Fri Aug 08, 2008 8:17 am
- Forum: [3.0/Olympus] Discussion
- Topic: any information about code.php.com?
- Replies: 3
- Views: 4641
Re: any information about code.php.com?
To re-cap, the server were not reachable due to a failure on a powerswitch in amsterdam. :) Regarding code.phpbb.com, the processes spawned directly after starting apache caused a too high load on the server, so it was immediately shut down. We adjusted this a little bit and now everything is ...
- Thu Aug 07, 2008 11:13 am
- Forum: [3.x][Archive] RFCs
- Topic: [RFC] Template procedures
- Replies: 27
- Views: 52484
Re: Template procedures
I must say that the must-not-follow-smarty-even-if-it-kills-us attitude is unreasonable.
For example, could it be used to generate something for the "User name and colouring"?
I looked into how it's done currently in phpBB. It is done by a PHP function, generate_user_string(), which just ...
For example, could it be used to generate something for the "User name and colouring"?
I looked into how it's done currently in phpBB. It is done by a PHP function, generate_user_string(), which just ...
- Tue Aug 05, 2008 7:25 pm
- Forum: [3.0/Olympus] Discussion
- Topic: Users table is too big to use with MySQL cluster
- Replies: 3
- Views: 6401
Re: Users table is too big to use with MySQL cluster
username_clean is a cleaned up version (spaces, duplicate chars, lowercase, etc.) - it is needed and can not be replicated by SQL or easily in PHP (we have a function to achive this). This field also makes sure the username is unique. As of the varchar(255) - sure, some could be trimmed down, but ...
- Mon Aug 04, 2008 3:19 pm
- Forum: [3.0/Olympus] Discussion
- Topic: phpBB 3.2 Discussion
- Replies: 257
- Views: 386637
Re: phpBB 3.2 Discussion
At Londonvasion we (the dev team) presented our plans regarding 3.2 - not only for the crowd there, but also for those later watching the videos. I intend to post a blog post once the video is out to recap this presentation - but i doubt i will post an announcement with a milestone list.
I may add ...
I may add ...
- Sun Aug 03, 2008 9:56 pm
- Forum: [3.x][Archive] RFCs
- Topic: [RFC] Template procedures
- Replies: 27
- Views: 52484
Re: Template procedures
To make it quite clear: i won't support adding every single "cool" thing just because it is able to be added. I only will support adding new features to the template engine if they are really needed. I think at the moment too much work is put into the template engine - it should've stopped with ...
- Sun Aug 03, 2008 9:50 pm
- Forum: [3.x][Archive] RFCs
- Topic: [RFC] Template procedures
- Replies: 27
- Views: 52484
Re: Template procedures
Personally i think without any real world usage it is pointless to add something like this to the template engine. Our strength comes from simplicity - do not try to go the Smarty route in implementing anything and everything and trying to mimick PHP in a template engine. I still want to hear real ...
- Sat Aug 02, 2008 11:15 am
- Forum: [3.x][Archive] RFCs
- Topic: [RFC] Template procedures
- Replies: 27
- Views: 52484
Re: Template procedures
Slowly I'm starting to wonder why we don't just use PHP instead of our own template language?
Not using PHP on the user-facing side does not only has benefits for controlling what is possible and not, but also for not putting too much code logic into templates (something i utterly hate in smarty ...
Not using PHP on the user-facing side does not only has benefits for controlling what is possible and not, but also for not putting too much code logic into templates (something i utterly hate in smarty ...
- Wed Jul 23, 2008 4:43 pm
- Forum: [3.0/Olympus] Discussion
- Topic: Plugin/Hook system for 3.2
- Replies: 10
- Views: 11913
Re: Plugin/Hook system for 3.2
Also, it appeared that your hooks system was designed to really only be able to be ran once in a function, which isn't really useful unless you are adding content which doesn't require any variables setup in the function or taking over the function.
You are able to run more than one function ...
- Wed Jul 23, 2008 8:59 am
- Forum: [3.0/Olympus] Discussion
- Topic: Plugin/Hook system for 3.2
- Replies: 10
- Views: 11913
Re: Plugin/Hook system for 3.2
Really the main difference between what we have is that mine has an ACP section as well to allow board owners to add/remove/enable/disable and adjust the priority of plugins.
Yes, this is a real difference. I think i never really thought about an ACP section for displaying all assigned hooks ...
- Wed Jul 23, 2008 8:54 am
- Forum: [3.0/Olympus] Discussion
- Topic: Plugin/Hook system for 3.2
- Replies: 10
- Views: 11913
Re: Plugin/Hook system for 3.2
Also, it appeared that your hooks system was designed to really only be able to be ran once in a function, which isn't really useful unless you are adding content which doesn't require any variables setup in the function or taking over the function.
You are able to run more than one function ...