Closed Thread
Results 1 to 10 of 10

Thread: Problem with PHPBB

  1. #1
    theaxiom is offline x10Hosting Member theaxiom is an unknown quantity at this point
    Join Date
    Apr 2009
    Posts
    5

    Unhappy Problem with PHPBB

    I guess we can start off with what instruction i have. As of now i am following this, extremely simple guide on how to install a phpbb forum: (http://www.youtube.com/watch?v=2jqHQ...eature=related)

    At about 4:55, he goes into the installation tab and clicks the proceed to the next step button and comes up with a new page. Unfortunatley mine doesnt go so smoothly. After clicking the "proceed to next step" button I come to a page that reads:

    Warning: Cannot load module 'SQLite' because required module 'pdo' is not loaded in Unknown on line 0
    [phpBB Debug] PHP Notice: in file /install/index.php on line 440: Cannot modify header information - headers already sent by (output started at /includes/functions_install.php:24)
    [phpBB Debug] PHP Notice: in file /install/index.php on line 441: Cannot modify header information - headers already sent by (output started at /includes/functions_install.php:24)
    [phpBB Debug] PHP Notice: in file /install/index.php on line 442: Cannot modify header information - headers already sent by (output started at /includes/functions_install.php:24)
    [phpBB Debug] PHP Notice: in file /install/index.php on line 443: Cannot modify header information - headers already sent by (output started at /includes/functions_install.php:24)
    If you know a solution please inform me =], i would greatly appreciate it.
    Also if this matters, i see where it says index.php.... i was follow a different guide where it told me to go into a folder and delete the index file that was already in there. Me being the cautious person i am, i coppied the file to my desktop. The downside... i dont remember where it goes. If that is the problem please let me know.

  2. #2
    Derek is offline Community Support Force Derek is a splendid one to beholdDerek is a splendid one to behold
    Join Date
    May 2005
    Location
    cossacks
    Posts
    6,354

    Re: Problem with PHPBB

    You could just use the PHPBB install in fantasico. Try using regular mysql instead of sqlite.

  3. #3
    theaxiom is offline x10Hosting Member theaxiom is an unknown quantity at this point
    Join Date
    Apr 2009
    Posts
    5

    Re: Problem with PHPBB

    Im pretty sure i have MySQL. And Navicatlite.
    But im currently using both for a Private server. Can i multi-task and use it for both?

  4. #4
    dibiase1992 is offline x10Hosting Member dibiase1992 is an unknown quantity at this point
    Join Date
    Apr 2009
    Posts
    3

    Re: Problem with PHPBB

    yes you can, as long as the database has a different name

  5. #5
    theaxiom is offline x10Hosting Member theaxiom is an unknown quantity at this point
    Join Date
    Apr 2009
    Posts
    5

    Re: Problem with PHPBB

    Ok so i have the new database.
    Only problem being that i still cant continue pass the point i started at. And i have no options to change database method.

  6. #6
    garrettroyce's Avatar
    garrettroyce is offline Generally Helpful Member garrettroyce is a glorious beacon of lightgarrettroyce is a glorious beacon of light
    Join Date
    Apr 2008
    Location
    IL, USA
    Posts
    3,746

    Re: Problem with PHPBB

    My guess is there was a closing php tag with some character after it (maybe even an unprintable character) in the file /includes/functions_install.php at line 24.

    Maybe try downloading the phpBB .zip file again, then upload it using CPanel, then unzip it using cpanel. Otherwise, you can post the code here from the file above so we can figure out what is sending the headers.
    gjr.gr - coming soon: secrets of OCD coding from a self taught tinkerer

  7. #7
    misson is offline x10 Spammer misson is a jewel in the rough
    Join Date
    Mar 2008
    Location
    Libertatia
    Posts
    2,505

    Re: Problem with PHPBB

    The warning message is probably what's causing the headers to be sent. At least on free servers, the PDO extension isn't installed, which is why you get the warning.

    Now that I look, it seems no SQLite driver is installed on the free hosts. There is a SQLite driver in PECL, but it's old and probably won't work. Unless you want to hack phpBB to use a different DB for the install, it looks like you have to use X10's version.

  8. #8
    garrettroyce's Avatar
    garrettroyce is offline Generally Helpful Member garrettroyce is a glorious beacon of lightgarrettroyce is a glorious beacon of light
    Join Date
    Apr 2008
    Location
    IL, USA
    Posts
    3,746

    Re: Problem with PHPBB

    That's possible. I've never seen anyone have a problem with phpBB before. In fact, before I started using SMF I had phpBB installed and running.

    From phpBB's website:

    A SQL database system, one of:

    * FireBird 2.0 or above
    * MySQL 3.23 or above
    * MS SQL Server 2000 or above (directly or via ODBC)
    * Oracle
    * PostgreSQL 7.x or above
    * SQLite 2

    I can't imagine why the installer would require a module for a database before you tell it to even try to find a database.
    Edit:
    On page 3 of the install (database settings) database type should be MySQL. I ran this on my home server and it worked fine.
    Last edited by garrettroyce; 04-15-2009 at 09:41 PM. Reason: Automerged Doublepost
    gjr.gr - coming soon: secrets of OCD coding from a self taught tinkerer

  9. #9
    misson is offline x10 Spammer misson is a jewel in the rough
    Join Date
    Mar 2008
    Location
    Libertatia
    Posts
    2,505

    Re: Problem with PHPBB

    Quote Originally Posted by garrettroyce View Post
    On page 3 of the install (database settings) database type should be MySQL. I ran this on my home server and it worked fine.
    It looks like the install is failing on the "Installation Compatibility" page, before theaxiom is picking the DB to use (4:55 in the YT video is the 2nd install page). It's probably the Supported Databases check that's failing. In that case, removing the check for SQLite would probably work. It also may be safe to ignore the error message, depending on whether or not enough of the page renders for the OP to procede.

    Quote Originally Posted by theaxiom View Post
    Also if this matters, i see where it says index.php.... i was follow a different guide where it told me to go into a folder and delete the index file that was already in there. Me being the cautious person i am, i coppied the file to my desktop. The downside... i dont remember where it goes. If that is the problem please let me know.
    The error message says "/install/index.php", so it should go in /install. Of course, you may have moved a different file with the name index.php, in which case you don't want to replace the one in /install. If it's the same file, you shouldn't be able to get the page that's producing the error.

    The best thing is probably to start from scratch. Delete the folder you installed phpBB into, drop the DB & follow the video again.

  10. #10
    theaxiom is offline x10Hosting Member theaxiom is an unknown quantity at this point
    Join Date
    Apr 2009
    Posts
    5

    Re: Problem with PHPBB

    Fellas, i got it under control. I got my forums up.
    unfortunatley i ran into a different problem im about to post in a new thread, it has nothing to do with PHPBB

    If anyone wants to check it out its forum.wowchampions.co.cc
    =]

Closed Thread

Similar Threads

  1. PHP install Problem
    By alexh3791 in forum Free Hosting
    Replies: 5
    Last Post: 11-24-2008, 03:44 PM
  2. Phpbb Problem
    By rhyliv in forum Free Hosting
    Replies: 4
    Last Post: 11-22-2008, 08:43 AM
  3. Cossacks Problem Again!!
    By muhammadsameja in forum Free Hosting
    Replies: 1
    Last Post: 01-08-2008, 10:47 AM
  4. My phpBB instal problem
    By coius in forum Scripts & 3rd Party Apps
    Replies: 2
    Last Post: 11-10-2007, 03:39 PM
  5. PHPBB setup problem
    By angryguild in forum Free Hosting
    Replies: 4
    Last Post: 09-06-2005, 01:55 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers