Title: crazyvipa's Replies | WordPress.org

---

# crazyvipa

  [  ](https://wordpress.org/support/users/crazyvipa/)

 *   [Profile](https://wordpress.org/support/users/crazyvipa/)
 *   [Topics Started](https://wordpress.org/support/users/crazyvipa/topics/)
 *   [Replies Created](https://wordpress.org/support/users/crazyvipa/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/crazyvipa/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/crazyvipa/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/crazyvipa/engagements/)
 *   [Favorites](https://wordpress.org/support/users/crazyvipa/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Access phpBB3 Session WordPress](https://wordpress.org/support/topic/access-phpbb3-session-wordpress/)
 *  Thread Starter [crazyvipa](https://wordpress.org/support/users/crazyvipa/)
 * (@crazyvipa)
 * [15 years ago](https://wordpress.org/support/topic/access-phpbb3-session-wordpress/#post-2057266)
 * I made a typo, sorry:
 *     ```
       /* phpBB3 Integration */
       	define('IN_PHPBB', true);
       	$phpbb_root_path = '/your/absolute/path/to/forum/'; /* As a 'rule' I usually try to define absolute paths */
       	$phpEx = 'php';
       	include($phpbb_root_path . 'common.' . $phpEx);
       	// Start session management
       	$user->session_begin();
       	$auth->acl($user->data);
       	$user->setup();
       	include('/path/to/class/file.php'); /* Oops, thats what I get for rushing. Include at the bottom */
       	unset($user);unset($auth);
       /* End phpBB3 Integration */
       ```
   

Viewing 1 replies (of 1 total)