CodeIgniter and PhPBB 3.1.3 integration

我的梦境 提交于 2019-12-04 19:04:49

So ... I found the solution after long research ...

https://www.phpbb.com/community/viewtopic.php?f=71&t=2287546

The solution was to add global variables to the function index

global $request;
global $phpbb_container;
global $phpbb_root_path, $phpEx, $user, $auth, $cache, $db, $config, $template, $table_prefix;
global $request;
global $phpbb_dispatcher;
global $symfony_request;
global $phpbb_filesystem;

I have also needed to integrate phpbb into codeigniter base website and face many problems and finally able to do it. If you need it you can find all code at phpbb integration in codeigniter it also contains phpbb version which I have used to integrate as well as doubtful. If you want to improvement in the code. Please frok me on github.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!