phpBB2.0.10 + 1.3.2 phpBB2.0.10 + 1.3.2
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

phpBB2.0.10 + 1.3.2

Started by ohfishing, October 30, 2004, 06:23:42 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ohfishing

Hello, another rookie here, I am having trouble integrating , I have read this forum using the search method for literally 5 hours to no avail.  ???    I am begging for help!! My board is at http://ohfishing.com/stl-web/bulletin/phpBB2/index.php   TEST USER NAME USER= coppermine  PASSWORD = test .......my coppermine gallery is here > http://www.ohfishing.com/v-web/bulletin/phpBB2/cpg132/index.php.  When I try to view the memberlist in my coppermine gallery I get "page not found" I have been over your forums numerous times and Im sorry I dont get where I went wrong. Here are my edited files.                                                                                                phpbb.inc.php // database configuration
define('PHPBB_DB_NAME', 'ohfishin_p_bb1'); // The name of the database used by the board
define('PHPBB_BD_HOST', 'localhost'); // The name of the database server
define('PHPBB_DB_USERNAME', 'ohfishin'); // The username to use to connect to the database
define('PHPBB_DB_PASSWORD', 'mypassword'); // The password to use to connect to the database
  // The web path to your phpBB directory
// If your URL to your board is for example 'http://ohfishin.com/v-web/bulletin/phpBB2/',
// you'll have to set the below var to '/phpBB2/'.
define('PHPBB_WEB_PATH', '/phpBB2/');
// Logout Flag
// the value of this boolean constant depends on your phpBB version:
// If your version of phpBB is 2.0.4 or lower - change the value to FALSE;
// if your version of phpBB is 2.0.5 or newer - leave it as TRUE
define('PHPBB_LOGOUT_GET', TRUE);
                                                                                                                                                                    init.inc.php file = define('COPPERMINE_VERSION', '1.3.2');
// User database integration
// Uncomment the applicable line if you want to use it
  define('UDB_INTEGRATION', 'phpbb');
// define('UDB_INTEGRATION', 'invisionboard');
// define('UDB_INTEGRATION', 'vbulletin23');
// define('UDB_INTEGRATION', 'vbulletin30');
// define('UDB_INTEGRATION', 'yabbse');
// define('UDB_INTEGRATION', 'smf');
// define('UDB_INTEGRATION', 'woltlab21');
// define('UDB_INTEGRATION', 'punbb');
if (!defined('IN_COPPERMINE')) die('Not in Coppermine...');
// Start output buffering
ob_start();
// Report all errors except E_NOTICE
// This is the default value set in php.ini
// error_reporting (E_ALL ^ E_NOTICE);
error_reporting(E_ALL);  
                                                                                                                                          cpg_redir.php = <?php
if (!$_SERVER['HTTP_HOST']) {
  
$cpg_host=$HTTP_SERVER_VARS['HTTP_HOST'];
} else {
  
$cpg_host=$_SERVER['HTTP_HOST'];
}
$cpg_path='/gallery';
header("Location:http://".ohfishing.com/stl-web/bulletin/phpBB2);
exit;
?>
        I hope I have given you enough information for somene to be able to crack this, thanks everyone for taking a look.... coppermine veterans help !
OHfishing

Joachim Müller

I can't bear to look at your posting, it hurts my eyes and is way to confusing. Edit your message - make the links work, drop all colors formating and make use of the code or quote button instead.

Joachim

ohfishing

sorry about the eyes.... i thought i was doing you a favor :-( ...i fixed it is that ok?
OHfishing

Joachim Müller

define('PHPBB_WEB_PATH', '/phpBB2/');must bedefine('PHPBB_WEB_PATH', '/stl-web/bulletin/phpBB2/');

Joachim

ohfishing

Well Sir Im getting somewhere, now my memberlist leads to my main forum index , and my logout button gave me this error
QuoteWarning: Division by zero in /home/ohfishin/.panel/web/bulletin/phpBB2/cpg_redir.php on line 8

Warning: Division by zero in /home/ohfishin/.panel/web/bulletin/phpBB2/cpg_redir.php on line 8

Warning: Division by zero in /home/ohfishin/.panel/web/bulletin/phpBB2/cpg_redir.php on line 8

Warning: Cannot modify header information - headers already sent by (output started at /home/ohfishin/.panel/web/bulletin/phpBB2/cpg_redir.php:8) in /home/ohfishin/.panel/web/bulletin/phpBB2/cpg_redir.php on line 8
OHfishing

ohfishing

cpg_rdr edited to <?php
if (!$_SERVER['HTTP_HOST']) {
  
$cpg_host=$HTTP_SERVER_VARS['HTTP_HOST'];
} else {
  
$cpg_host=$_SERVER['HTTP_HOST'];
}
$cpg_path='/stl-web/bulletin/phpBB2/cpg132/';
header("Location: http://".$cpg_host.$cpg_path); 
exit;
?>

  and logout now works but my gallery memberlist still goes to forum index?
OHfishing

Joachim Müller


ohfishing

10-4 gaugau  thanks for your trouble and your time, people like you are a rarity on these support forums ...  ;D 
OHfishing