Results 1 to 3 of 3
  1. #1

    Default error when account created

    when creating an account i get this nasty message

    1054 Unknown column 'group_description' in 'field list'
    in:
    [INSERT INTO phpbb_groups (group_name, group_description, group_single_user, group_moderator) VALUES (0, 'Personal User', 1, 0)]


    and when i go back to the site, the account is logged in

  2. #2

    Default Re: error when account created

    is phpBB3 just not working with zen cart?? i am not sure why phpBB is causing this error when creating an account with zen cart.

  3. #3
    Join Date
    Jul 2007
    Posts
    38
    Plugin Contributions
    0

    Default Re: error when account created

    Try this (worked for me (phpbb3)):

    I just wanted to share a couple things I've discovered, which stop the zencart linkage to PHPBB from working correctly:

    1. The parser in zencart that reads the phpbb config.php file expects everything to be left justified with no spaces or tabs. My file was nicely formatted and the zencart parser failed to read it. Delete all the leading whitespace from the config.php file.

    2. There were some missing entries in my phpbb/config.php file that I had to add:

    $users_table = 'users' ;
    $user_group_table = 'user_group' ;
    $groups_table = 'groups' ;
    $config_table = 'config' ;


    the final config.php file looks like this:

    <?php
    $dbms = 'mysql' ;
    $dbhost = 'localhost' ;
    $dbname = 'fill this in with the db name' ;
    $dbuser = 'fill this in with the db admin user' ;
    $dbpasswd = 'fill this in with the db admin password' ;
    $table_prefix = 'phpbb_' ;
    $users_table = 'users' ;
    $user_group_table = 'user_group' ;
    $groups_table = 'groups' ;
    $config_table = 'config' ;
    define ( 'PHPBB_INSTALLED' , TRUE ) ;
    ?>

    Hope that helps for anyone still having problems.
    Credit to Igrant (http://www.zen-cart.com/forum/showpo...7&postcount=25)

 

 

Similar Threads

  1. Email notification when error log file is created
    By DML73 in forum General Questions
    Replies: 5
    Last Post: 1 Apr 2015, 03:47 PM
  2. v151 How to debug when NO ERROR LOG file created?
    By Jeff_Mash in forum General Questions
    Replies: 8
    Last Post: 24 Jan 2014, 10:50 PM
  3. Suddenly Create Account Page re-loads after account created.
    By voluntaryist.only in forum General Questions
    Replies: 7
    Last Post: 9 Aug 2013, 07:36 AM
  4. Address Book Already Populated When Account Created
    By swilliams88 in forum Managing Customers and Orders
    Replies: 1
    Last Post: 8 Sep 2010, 04:56 PM
  5. Replies: 0
    Last Post: 20 Sep 2009, 04:50 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR