Advanced search  

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

Pages: [1] 2   Go Down

Author Topic: I tried to intragate but I get this error  (Read 6826 times)

0 Members and 1 Guest are viewing this topic.

condiman

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 38
    • http://www.coralforum.com
I tried to intragate but I get this error
« on: April 08, 2004, 08:45:30 pm »

I had it up and running but when I tried to intragate with the phpbb board I get this error when I go to the address of where it was

Coppermine critical error:
Unable to connect to phpBB Board database !

MySQL said: Access denied for user: 'root@localhost' (Using password: NO)
Logged
Please forgive me for my ignorance I am new at this.

photoman13

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 96
I tried to intragate but I get this error
« Reply #1 on: April 08, 2004, 08:47:55 pm »

does your MySQL database require a password?
If so you may want to put your password and database username into the bridge file.
Logged

condiman

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 38
    • http://www.coralforum.com
I tried to intragate but I get this error
« Reply #2 on: April 08, 2004, 09:04:08 pm »

I used the same name and psswd that I use to access my cpanel or is it a different psswd and name


bb
Logged
Please forgive me for my ignorance I am new at this.

photoman13

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 96
I tried to intragate but I get this error
« Reply #3 on: April 08, 2004, 09:30:45 pm »

it should be your database name and password to your MYSQL server unless you used the same for both... wish wouldn't be a good thing to do.

it should be the same database name and password that you used to configure your phpbb that granted it rights to read the database. Not your admin name and password, but database. make sense?
Logged

condiman

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 38
    • http://www.coralforum.com
I tried to intragate but I get this error
« Reply #4 on: April 13, 2004, 01:46:39 am »

I tried a few things and I get this error now

Parse error: parse error in /home/coralfor/public_html/coppermine/bridge/phpbb.inc.php on line 30
Coppermine critical error:
Unable to connect to database !

MySQL said: Access denied for user: 'corlfor@localhost' (Using password: YES)
Logged
Please forgive me for my ignorance I am new at this.

photoman13

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 96
I tried to intragate but I get this error
« Reply #5 on: April 13, 2004, 01:57:28 am »

Quote from: "condiman"

MySQL said: Access denied for user: 'corlfor@localhost' (Using password: YES)


I just have mine set to "localhost"

Code: [Select]
$CONFIG['dbserver'] =    "localhost";        // Your database server
$CONFIG['dbuser'] =       "USER-Name";        // Your mysql username
$CONFIG['dbpass'] =       "********";                // Your mysql password
$CONFIG['dbname'] =      "databasename";        // Your mysql database name (tablename inside MySQL)


// MySQL TABLE NAMES PREFIX
$CONFIG['TABLE_PREFIX'] =                "cpg_";


I think usually the username and password is the same as what the host gave you for your FTP rights. (Which you can change in your SQL section of user control panel that most hosts give you)

try see if that helps?!?!?!
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
I tried to intragate but I get this error
« Reply #6 on: April 13, 2004, 08:52:43 am »

take care of the parse error first - there's something wrong in your bridge file - see http://coppermine.sourceforge.net/demo/docs/faq.htm#commonPHP%20errors

GauGau
Logged

condiman

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 38
    • http://www.coralforum.com
I tried to intragate but I get this error
« Reply #7 on: April 13, 2004, 10:39:01 am »

I dont see anything about a parce error on that link.
Logged
Please forgive me for my ignorance I am new at this.

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
I tried to intragate but I get this error
« Reply #8 on: April 13, 2004, 10:55:32 am »

OK, sorry - try this link: http://coppermine.sourceforge.net/demo/docs/faq.htm#commonPHPerrors

In fact it means that your php syntax is bad - you have fiddled with single quotes or semi-colon, curly brackets or another thing that forms the basic part of the PHP syntax. What I was going to say: correct the parse error first - the "can't connect" error should only be a result of the parse error.

GauGau
Logged

condiman

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 38
    • http://www.coralforum.com
I tried to intragate but I get this error
« Reply #9 on: April 20, 2004, 10:40:37 am »

I have been putzin with it for the past week or so and now I get this

Parse error: parse error in /home/coralfor/public_html/coppermine/bridge/phpbb.inc.php on line 26
Coppermine critical error:
Unable to connect to database !

MySQL said: Access denied for user: 'corlfor@localhost' (Using password: YES)

I can not seem to figure it out
Logged
Please forgive me for my ignorance I am new at this.

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
I tried to intragate but I get this error
« Reply #10 on: April 20, 2004, 11:07:58 am »

"parse error" means you have an error in your php syntax, most often caused by single or double quotes that are missing (or too much), or brackets, curly braces, comas or semicolons at the wrong place. If you can't figure out what's wrong with your code, copy'n paste the relevant bits into your posting (the lines you modified in your bidge file) - make sure not to show your password. Also, make sure that none of your entries contain
Quote
" ' , ; . : ( ) { }


GauGau
Logged

condiman

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 38
    • http://www.coralforum.com
I tried to intragate but I get this error
« Reply #11 on: April 21, 2004, 01:53:29 am »

This is line 26

define('PHPBB_BD_HOST', 'localhost'); "localhost"
Logged
Please forgive me for my ignorance I am new at this.

Nibbler

  • Guest
I tried to intragate but I get this error
« Reply #12 on: April 21, 2004, 01:58:01 am »

It should be:

Code: [Select]
define('PHPBB_BD_HOST', 'localhost'); // The name of the database server
Logged

condiman

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 38
    • http://www.coralforum.com
I tried to intragate but I get this error
« Reply #13 on: April 21, 2004, 02:57:39 am »

I was told local host would be ok
Logged
Please forgive me for my ignorance I am new at this.

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
I tried to intragate but I get this error
« Reply #14 on: April 22, 2004, 06:19:14 am »

Sure, it is localhost, but you have to respect the PHP syntax.

GauGau
Logged

condiman

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 38
    • http://www.coralforum.com
Re: I tried to intragate but I get this error
« Reply #15 on: April 23, 2004, 10:29:27 am »

Sure, it is localhost, but you have to respect the PHP syntax.

GauGau

What do you mean by respect the PHP syntax?

Logged
Please forgive me for my ignorance I am new at this.

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: I tried to intragate but I get this error
« Reply #16 on: April 23, 2004, 10:39:47 am »

refer to Nibbler's posting above, I'm not going to argue... ::)

GauGau
Logged

condiman

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 38
    • http://www.coralforum.com
Re: I tried to intragate but I get this error
« Reply #17 on: April 25, 2004, 09:01:10 pm »

I know you guys are gettin sick of me but I am sorry to be such a pain.  I have gone through everything that you guys have pointed out but I still can not get anywhere.  I am just gettin really stumped ??? ???
Logged
Please forgive me for my ignorance I am new at this.

Casper

  • VIP
  • Coppermine addict
  • ***
  • Country: 00
  • Offline Offline
  • Gender: Male
  • Posts: 5231
Re: I tried to intragate but I get this error
« Reply #18 on: April 25, 2004, 09:09:18 pm »

Have you changed line 26 from this;
define('PHPBB_BD_HOST', 'localhost'); "localhost"

to this;
Quote from: nibbler
define('PHPBB_BD_HOST', 'localhost'); // The name of the database server

or this;
Code: [Select]
define('PHPBB_BD_HOST', 'localhost');
Logged
It has been a long time now since I did my little bit here, and have done no coding or any other such stuff since. I'm back to being a noob here

condiman

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 38
    • http://www.coralforum.com
Re: I tried to intragate but I get this error
« Reply #19 on: April 25, 2004, 09:19:47 pm »

I tried those two and I still get this error


Parse error: parse error in /home/coralfor/public_html/coppermine/bridge/phpbb.inc.php on line 26

Fatal error: Call to undefined function: udb_authenticate() in /home/coralfor/public_html/coppermine/include/init.inc.php on line 167
Logged
Please forgive me for my ignorance I am new at this.
Pages: [1] 2   Go Up
 

Page created in 0.054 seconds with 18 queries.