Database Error When Trying To Connect

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

If you wish to attach one or more files enter the details below.

Maximum filesize per attachment: 1 MiB.

Expand view Topic review: Database Error When Trying To Connect

Re: Database Error When Trying To Connect

by elawrenc01 » Tue Jan 12, 2021 6:51 pm

Ah! Thank you for pointing me in that direction. I removed the port # and it worked!

Maybe PHPBB doesn't use the port #? I will have to investigate further but for now it is working.

Thank you for your help!

Re: Database Error When Trying To Connect

by elawrenc01 » Tue Jan 12, 2021 6:45 pm

Yes because I can connect with PHPBB.

Re: Database Error When Trying To Connect

by axew3 » Sun Jan 10, 2021 11:23 pm

No it do not help unfortunately, it is very strange, the connection to the database should work.
Are you sure the port value isset to the required value?

Re: Database Error When Trying To Connect

by elawrenc01 » Sun Jan 10, 2021 7:09 pm

Yes. Doesn't work :(

If it helps, I am on
PHP 7.4

Re: Database Error When Trying To Connect

by axew3 » Fri Jan 08, 2021 10:51 am

it is very strange, still in trouble?

Re: Database Error When Trying To Connect

by elawrenc01 » Wed Jan 06, 2021 9:24 pm

I have this:


$w3all_dbms = 'phpbb\\db\\driver\\mysqli'; // maybe required
$w3all_dbhost = 'localhost';
$w3all_dbport = '3306'; // maybe required
$w3all_dbname = 'xxxxxx';
$w3all_dbuser = 'xxxxxx';
$w3all_dbpasswd = 'xxxxxx';
$w3all_table_prefix = 'phpbb3_';
$w3all_phpbb_adm_relative_path = 'adm/'; // maybe required
$w3all_acm_type = 'phpbb\\cache\\driver\\file'; // maybe required

@define('WP_W3ALL_MANUAL_CONFIG', true);
// NOTE
// you can comment out the following line, and force plugin deactivation
@define('PHPBB_INSTALLED', true);

I copied the info from the config.php

Top