Quote:
|
i have apache installed and workin. i have php installed and working. i have mysql installed and working(i think).
|
The "i think" bothers me, find out. If you have webserver and PHP working, just create simple PHP file to connect to ANY DB you create in MySQL.
Code:
$link = mysql_connect("?webserver?")
or die("Could not connect");
mysql_select_db("?DB?")
or die("Could not select database");
Determine if PHP can see MySQL.
Quote:
|
critical error, cannot connect to database
|
I guess that would be critical...
Quote:
|
when i try to run the setup page for phpbb2
|
I'm guessing the setup page would be *.php, so open that file and find where it connects to DB, and find out what DB it is, trying to connect to, or edit file to spit out info before code that fails to connect to DB. see above code snippet.
Seems you have:
config of PHP,MySQL,Apache,phpbb2
debug the setup files for phpbb2 to find cause of error msg.