Note that there are some explanatory texts on larger screens.

plurals
  1. POCodeigniter-phpBB integration
    text
    copied!<p>I have tried to integrate phpBB forum in Codeigniter project. I have placed the library provided by codeigniter(<a href="https://github.com/EllisLab/CodeIgniter/wiki/phpBB3-library" rel="nofollow">phpbb library</a>) inside the projectName/application/libraries and placed the forum at the root of the project. The controller looks like this:</p> <pre><code>&lt;?php class Library_test extends CI_Controller { function __construct() { parent::__construct(); $this-&gt;load-&gt;database(); $this-&gt;load-&gt;library('session'); $this-&gt;load-&gt;library('phpbb_library'); } function index() { if ($this-&gt;phpbb_library-&gt;isLoggedIn() === TRUE) { $userId = $this-&gt;phpbb_library-&gt;getUserInfo('user_id'); $username = $this-&gt;phpbb_library-&gt;getUserInfo('username'); echo "Welcome $username (" . ($this-&gt;phpbb_library-&gt;isAdministrator() === TRUE ? "administrator" : "user") . "), your ID is $userId and you are member of the following groups"; foreach ($this-&gt;phpbb_library-&gt;getUserGroupMembership() as $group) { echo "$group &lt;br /&gt;"; } } else { echo "You are not logged-in."; } } } ?&gt; </code></pre> <p>I have set appropriate permission for the whole project (chmod -R 777 project/) and the files that the error says as "not found" are there and accessible. Please help me out.</p> <p>Following is the error when I try to access the controller.</p> <p></p> A PHP Error was encountered <p>Severity: Warning</p> <p>Message: include(localhost/communityCI/community/common.php): failed to open stream: No such file or directory</p> <p>Filename: libraries/phpbb.php</p> <p>Line Number: 32</p> <p></p> A PHP Error was encountered <p>Severity: Warning</p> <p>Message: include(): Failed opening 'localhost/communityCI/community/common.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear')</p> <p>Filename: libraries/phpbb.php</p> <p>Line Number: 32</p> <p></p> A PHP Error was encountered <p>Severity: Warning</p> <p>Message: include(localhost/communityCI/community/config.php): failed to open stream: No such file or directory</p> <p>Filename: libraries/phpbb.php</p> <p>Line Number: 33</p> <p></p> A PHP Error was encountered <p>Severity: Warning</p> <p>Message: include(): Failed opening 'localhost/communityCI/community/config.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear')</p> <p>Filename: libraries/phpbb.php</p> <p>Line Number: 33</p> <p></p> A PHP Error was encountered <p>Severity: Warning</p> <p>Message: include(localhost/communityCI/community/includes/functions_user.php): failed to open stream: No such file or directory</p> <p>Filename: libraries/phpbb.php</p> <p>Line Number: 34</p> <p></p> A PHP Error was encountered <p>Severity: Warning</p> <p>Message: include(): Failed opening 'localhost/communityCI/community/includes/functions_user.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear')</p> <p>Filename: libraries/phpbb.php</p> <p>Line Number: 34</p> <p></p> A PHP Error was encountered <p>Severity: Warning</p> <p>Message: include(localhost/communityCI/community/includes/functions_display.php): failed to open stream: No such file or directory</p> <p>Filename: libraries/phpbb.php</p> <p>Line Number: 35</p> <p></p> A PHP Error was encountered <p>Severity: Warning</p> <p>Message: include(): Failed opening 'localhost/communityCI/community/includes/functions_display.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear')</p> <p>Filename: libraries/phpbb.php</p> <p>Line Number: 35</p> <p></p> A PHP Error was encountered <p>Severity: Warning</p> <p>Message: include(localhost/communityCI/community/includes/functions_privmsgs.php): failed to open stream: No such file or directory</p> <p>Filename: libraries/phpbb.php</p> <p>Line Number: 36</p> <p></p> A PHP Error was encountered <p>Severity: Warning</p> <p>Message: include(): Failed opening 'localhost/communityCI/community/includes/functions_privmsgs.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear')</p> <p>Filename: libraries/phpbb.php</p> <p>Line Number: 36</p> <p></p> A PHP Error was encountered <p>Severity: Warning</p> <p>Message: include(localhost/communityCI/community/includes/functions_posting.php): failed to open stream: No such file or directory</p> <p>Filename: libraries/phpbb.php</p> <p>Line Number: 37</p> <p></p> A PHP Error was encountered <p>Severity: Warning</p> <p>Message: include(): Failed opening 'localhost/communityCI/community/includes/functions_posting.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear')</p> <p>Filename: libraries/phpbb.php</p> <p>Line Number: 37</p> <p> Fatal error: Call to a member function session_begin() on a non-object in /var/www/communityCI/application/libraries/phpbb.php on line 39</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload