Advanced search  

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Pages: [1]   Go Down

Author Topic: phpBB2.0.10 + 1.3.2  (Read 5065 times)

0 Members and 1 Guest are viewing this topic.

ohfishing

  • Coppermine novice
  • *
  • Offline Offline
  • Gender: Male
  • Posts: 29
phpBB2.0.10 + 1.3.2
« on: October 30, 2004, 06:23:42 am »

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.                                                                                                
Code: [Select]
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 =
Code: [Select]
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 =
Code: [Select]
<?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 !
« Last Edit: October 30, 2004, 06:41:46 am by ohfishing »
Logged
OHfishing

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: phpBB2.0.10 + 1.3.4
« Reply #1 on: October 30, 2004, 06:30:18 am »

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
Logged

ohfishing

  • Coppermine novice
  • *
  • Offline Offline
  • Gender: Male
  • Posts: 29
Re: phpBB2.0.10 + 1.3.2
« Reply #2 on: October 30, 2004, 06:40:21 am »

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

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: phpBB2.0.10 + 1.3.2
« Reply #3 on: October 30, 2004, 06:45:56 am »

Code: [Select]
define('PHPBB_WEB_PATH', '/phpBB2/');must be
Code: [Select]
define('PHPBB_WEB_PATH', '/stl-web/bulletin/phpBB2/');
Joachim
Logged

ohfishing

  • Coppermine novice
  • *
  • Offline Offline
  • Gender: Male
  • Posts: 29
Re: phpBB2.0.10 + 1.3.2
« Reply #4 on: October 30, 2004, 06:57:10 am »

Well Sir Im getting somewhere, now my memberlist leads to my main forum index , and my logout button gave me this error
Quote
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: 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
Logged
OHfishing

ohfishing

  • Coppermine novice
  • *
  • Offline Offline
  • Gender: Male
  • Posts: 29
Re: phpBB2.0.10 + 1.3.2
« Reply #5 on: October 30, 2004, 07:16:58 am »

cpg_rdr edited to
Code: [Select]
<?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?
Logged
OHfishing

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Logged

ohfishing

  • Coppermine novice
  • *
  • Offline Offline
  • Gender: Male
  • Posts: 29
Re: phpBB2.0.10 + 1.3.2
« Reply #7 on: October 30, 2004, 07:40:50 am »

10-4 gaugau  thanks for your trouble and your time, people like you are a rarity on these support forums ...  ;D 
Logged
OHfishing
Pages: [1]   Go Up
 

Page created in 0.02 seconds with 17 queries.