PHP Classes

conf.php params.php path

Recommend this page to a friend!

      DbUtils  >  All threads  >  conf.php params.php path  >  (Un) Subscribe thread alerts  
Subject:conf.php params.php path
Summary:In conf.php I can't find the file referenced below
Messages:3
Author:Debbie Schmidt
Date:2015-12-17 19:50:54
 

  1. conf.php params.php path   Reply   Report abuse  
Picture of Debbie Schmidt Debbie Schmidt - 2015-12-17 19:50:54
In conf.php I can't find the file referenced: require_once '../conf/params.php';
Is this a file we should create or am I missing something? Thanks!

  2. Re: conf.php params.php path   Reply   Report abuse  
Picture of Kakhaber Kashmadze Kakhaber Kashmadze - 2015-12-18 15:58:27 - In reply to message 1 from Debbie Schmidt
it is ignored by git
in config.php is only constants for database

define('DBHOST','localhost');
define('DBUSER','username');
define('DBPASS','password');
define('DBNAME','databasename');


  3. Re: conf.php params.php path   Reply   Report abuse  
Picture of Kakhaber Kashmadze Kakhaber Kashmadze - 2015-12-18 16:03:14 - In reply to message 2 from Kakhaber Kashmadze
sorry not in config.php but instead in ../conf/params.php
thanks your attention