ecom
E-commerce cms
 All Data Structures Namespaces Files Functions Variables Pages
config.php
Go to the documentation of this file.
1 <?php
2 
3 return array(
4  array(
5  "REMOTE_ADDR" => "127.0.0.10",
6  "SCRIPT_NAME" => "/index.php",
7  "DOCUMENT_ROOT" => getcwd(),
8  "REQUEST_SCHEME" => "http",
9  "REQUEST_URI" => "/",
10  "HTTP_HOST" => "my.host.name"
11  ),
12  array(
13  "mysql:host=localhost;dbname=ecom_test", //db
14  "root", //username
15  "", //password
16  "testdb_", // db prefix
17  array("mysql:host=localhost", "ecom_test") //TEST ONLY! database create access
18  )
19 );
20