Page 2 of 12 FirstFirst 1234 ... LastLast
Results 11 to 20 of 111
  1. #11
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: PHPBB 3 for v1.3.8

    Are you using phpBB2 or 3?
    If it's 3, are you using the file attached above?
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  2. #12
    Join Date
    May 2007
    Location
    Tulsa, Oklahoma
    Posts
    19
    Plugin Contributions
    0

    Default Re: PHPBB 3 for v1.3.8

    Uisng phpBB3, Zen 1.3.8, and the file attached. I can see the user in the phpBB_users table, but when I try to log in it doesn't recognize it; try to use the "forgot password" and no email arrives (works for non-zenned users).

  3. #13
    Join Date
    Oct 2007
    Location
    Australia
    Posts
    843
    Plugin Contributions
    0

    Default Re: PHPBB 3 for v1.3.8

    I downloaded this and everything is working all smoothly, the only question I have is that the forum nickname is a required field...I did the remove * bit in english.php but still got that a nickname it needed to be added on a test sign up, I also went into Admin - Minimum Values and cleared out the minimum character but then I got that the nickname was already in use lol

    I want customers to have the option to register for the forum at the same time as the store *if they choose* without making it an actual required section in order to create a store account...is this possible?
    HunnyBee Design
    "A man's manners are a mirror in which he shows his portrait." ~ Johann Wolfgang von Goethe

  4. #14
    Join Date
    Oct 2008
    Posts
    591
    Plugin Contributions
    0

    Default Re: PHPBB 3 for v1.3.8

    Quote Originally Posted by MichaelChristopher View Post
    Can't log in as new user. I've read all 17 pages of the long thread, and tried pretty much everything we have collectively thought of, and I am now getting a little further...

    Creating a Zen Cart account does try to setup an account in phpBB! I can see the record in the phpBB database. The new user even shows as "Our Newest Member." But the newly created user can't log in using the username and password created during Zen Cart account creation.

    Help me over this last hump, Doc!
    i have same problem
    can't lof in phpbb with nickname account zen cart .

  5. #15
    Join Date
    Oct 2008
    Posts
    591
    Plugin Contributions
    0

    Default Re: PHPBB 3 for v1.3.8

    Quote Originally Posted by dmagic View Post
    i have same problem
    can't lof in phpbb with nickname account zen cart .
    Great it's work for me but just nickname english
    when i creat nick in hebrew

    i check on forum ans see this ÷åñí
    how can fix the problem for hebrew ?

    Thanks !!!

  6. #16
    Join Date
    Oct 2008
    Posts
    591
    Plugin Contributions
    0

    Default Re: PHPBB 3 for v1.3.8

    please help me with hebrew ...

  7. #17
    Join Date
    Jul 2008
    Posts
    29
    Plugin Contributions
    0

    Default Re: PHPBB 3 for v1.3.8

    I'm having some trouble instantiating the phpBB class. It looks to me that the following code in config.core.php is trying to instantiate phpBB.

    PHP Code:
      $autoLoadConfig[50][] = array('autoType'=>'classInstantiate',
                                    
    'className'=>'phpBB',
                                    
    'objectName'=>'phpBB'); 
    Whon I run zen cart I don't have any issues, but when I run zen_bridge.php (http://www.zen-cart.com/forum/showthread.php?t=95643) I get the following error

    Undefined property: phpBB::$dbname in /var/www/includes/classes/class.phpbb.php on line 118

    The relevent codeblock is

    PHP Code:
        function check_connect() {
            
    // check if tables exist in database
            
    if ($this->phpBB['dbname']!='' && $this->phpBB['dbuser'] !='' && $this->phpBB['dbhost'] !='' && $this->phpBB['config_table']!='' && $this->phpBB['users_table'] !='' && $this->phpBB['user_group_table'] !='' && $this->phpBB['groups_table']!='') {
              if (
    $this->dbname == DB_DATABASE) {
                
    $this->phpBB['db_installed'] = $this->table_exists_zen($this->phpBB['users_table']);
                
    $this->phpBB['db_installed_config'] = $this->table_exists_zen($this->phpBB['config_table']);
                if (
    $this->debug==true) echo "db_installed -- in ZC Database = ".$this->phpBB['db_installed']."<br>";
                } else {
                
    $this->phpBB['db_installed'] = $this->table_exists_phpbb($this->phpBB['users_table']);
                
    $this->phpBB['db_installed_config'] = $this->table_exists_phpbb($this->phpBB['config_table']);
                if (
    $this->debug==true) echo "db_installed -- in separate database = ".$this->phpBB['db_installed']."<br>";
              }
            }
        } 
    now should

    PHP Code:
    if ($this->dbname == DB_DATABASE) { 
    be changed to

    PHP Code:
    if ($this->phpBB['dbname'] == DB_DATABASE) { 
    ?

  8. #18
    Join Date
    May 2007
    Location
    Tulsa, Oklahoma
    Posts
    19
    Plugin Contributions
    0

    Default Re: PHPBB 3 for v1.3.8

    dmagic, how did you get phpBB to recognize the new username's password? I'm still stuck there.

  9. #19
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: PHPBB 3 for v1.3.8

    Quote Originally Posted by Protostack View Post
    now should

    PHP Code:
    if ($this->dbname == DB_DATABASE) { 
    be changed to

    PHP Code:
    if ($this->phpBB['dbname'] == DB_DATABASE) { 
    ?
    Yes, changing that would fix some database-name-recognition problems.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  10. #20
    Join Date
    May 2007
    Location
    Tulsa, Oklahoma
    Posts
    19
    Plugin Contributions
    0

    Default Re: PHPBB 3 for v1.3.8

    I just tried changing phpBB's user registration settings so that it does NOT require the user to confirm a new account via email, and now the Zen/phpBB linkage works.

    But a question: Is there any way to still require a new account created in phpBB to require email confirmation, while NOT requiring email confirmation if the account is established via Zen Cart?

 

 
Page 2 of 12 FirstFirst 1234 ... LastLast

Similar Threads

  1. phpBB issues Zen v1.3.9h with phpBB 2.0.23
    By stevefriedman71 in forum General Questions
    Replies: 11
    Last Post: 8 May 2011, 10:02 PM
  2. 1.3.0.5 Upgrade error for PHPbb-forums
    By stbede77 in forum Bug Reports
    Replies: 2
    Last Post: 25 Sep 2006, 07:33 AM
  3. intergrating phpbb for 1.3.0.1
    By ctcentralinfo in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 8 Sep 2006, 11:31 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