This topic is locked

Database connection

11/30/2006 8:03:55 AM
PHPRunner General questions
G
grahamb author

I am fairly new to phpRunner.

I develop my sites locally using a database that has no password protection. However, when I upload it to our active server there are restrictions.

In which files are the usernames and passwords stored? If I know that I can edit the code for the uploaded files.
Many thanks.

J
Jane 11/30/2006

Graham,
connection info is in the include/dbcommon.php file:

$host="localhost";

$user="username";

$pwd="password";

$port="";

$sys_dbname="database";

G
grahamb author 12/1/2006

Graham,

connection info is in the include/dbcommon.php file:


That worked great - many thanks.