Forum / Tip written in one of the great PHP frameworks

I was looking for fresh forum software (threaded) or a bulletin board (flat / partitioned). And I'm wondering if there is an implementation based on one of the big PHP frameworks (CodeIgniter, Kohana, Yii, CakePHP, ZF, Seagull, Fusebox, Symfony, eZ, Prado or something else ...).

Cause. A framework-based implementation will be inherently more secure, since ORM and validation and abstract processing logic. It would also be a good demonstration of the structure itself.

Textbooks and implementation examples, for example. blogs are often used for every PHP structure. But I did not find much in the area of โ€‹โ€‹forums / tips. In any case, for Symfony, in the alpha stage and seemingly abandoned, for practical use there was only one implementation of "sfSimpleForumPlugin" for Symfony.
However, I, of course, am not looking for a scripted forum for functionality. Just general functionality and;) a great sample application for a specific PHP infrastructure.

Surprisingly complicated by Google. There is something? Frame home pages do not help. (And they all use phpBB or something like that.)

+6
php frameworks codeigniter cakephp kohana
source share
2 answers
+4
source share

The new version 2 of the Vanilla Forums has just been transcoded from scratch as an application running on the new PHP MVC infrastructure called Garden. Although most of them probably have not heard of Garden, I think the fact that it supports such a popular forum package ("382,287 sites use Vanilla Forums") is a kind of testament. If you look at the Vanilla application code on GitHub, you will see that the folder structure is similar to what you will find in other MVC environments. Despite the fact that there is still no official site for the framework, the author has released a series of blog articles that give some insight into why the structure was developed and what functions it contains.

+6
source share

All Articles