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

    Default

    well, based on reading your configure.php file, I'd suggest that you
    Code:
    define('DIR_WS_PHPBB', '/var/www/html/phpBB2/');
    However, in attempting to access your phpBB by manually keying the URL, I get "not found" or "unable to load page" errors. .... so, does your PHPBB installation even exist?
    If so, what is the URL for it?
    .

    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
    Mar 2005
    Posts
    84
    Plugin Contributions
    0

    Default

    I believe that is where the problem comes in hand. My index page is renamed in my phpBB2 files. here is the link to the forums:
    www.alliwire.com/phpBB2/forumindex.php

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

    Default

    Originally posted by alliwire@Apr 29 2005, 08:22 AM
    I believe that is where the problem comes in hand. My index page is renamed in my phpBB2 files
    Why ?
    .

    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.

  4. #14
    Join Date
    Mar 2005
    Posts
    84
    Plugin Contributions
    0

    Default

    just because that is the way we set everything up to track files we have too many index.php files and that is just the way we did it. can we fix this problem?

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

    Default

    open
    /includes/classes/sniffer.php

    Around line 50, you'll see:
    Code:
       $debug1=false;
    TEMPORARILY change that to
    Code:
       $debug1=true;
    Then open your Zen store in a browser.

    Then quickly go back and change the setting to false again so that all that important info isn't shown to the whole world.

    Then use that output to find out what stage it's failing at.

    You can even post the output here ... just blank-out the passwords for your own protection.
    .

    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.

  6. #16
    Join Date
    Mar 2005
    Posts
    84
    Plugin Contributions
    0

    Default

    ok here is what happened:

    dir=/phpBB2/
    link_enabled_admin_status=true
    FAILURE: phpBB NOT activated


    Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /var/www/html/includes/classes/sniffer.php:58) in /var/www/html/includes/functions/sessions.php on line 111

    Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /var/www/html/includes/classes/sniffer.php:58) in /var/www/html/includes/functions/sessions.php on line 111

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

    Default

    The "cannot send headers" part is a result of us displaying debug text ... so it can be ignored.


    was there "nothing" else shown between the "dir=..." and the "link_enabled_admin" part ?

    If not, then it's not finding the "...../phpBB2/config.php" file.

    What is the exact path to the config.php file for your phpBB installation?
    .

    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.

  8. #18
    Join Date
    Mar 2005
    Posts
    84
    Plugin Contributions
    0

    Default

    what I posted is what it gave me.

    here is my path to the config: /var/www/html/phpBB2/config.php

    www.alliwire.com/phpBB2/config.php

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

    Default

    BTW, you will need to make this change for the forum link (when it "does" work for you) to be valid:

    /includes/filenames.php
    Code:
     define('FILENAME_BB_INDEX', 'index.php'); // phpBB main index filename
    ... change "index.php" to "forumindex.php".
    .

    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
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default

    I'm sure I've asked this before, but what happens when you set this in your /includes/configure.php file?
    Code:
    define('DIR_WS_PHPBB', '/var/www/html/phpBB2/');
    If the forum link doesn't appear, turn on the debugging for a moment again and post the results again.
    .

    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.

 

 
Page 2 of 17 FirstFirst 123412 ... LastLast

Similar Threads

  1. Problems from Configuring to Work with new domain
    By reachesfar in forum Installing on a Linux/Unix Server
    Replies: 3
    Last Post: 23 May 2012, 01:26 PM
  2. 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
  3. configure Zen Cart to work with phpBB problems?
    By XiaoChin in forum General Questions
    Replies: 4
    Last Post: 9 Apr 2010, 05:25 AM
  4. Need help configuring phpBB
    By defkiss in forum General Questions
    Replies: 9
    Last Post: 5 Aug 2007, 05:14 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