source: trunk/docs/examples/db_auth.inc.php @ 376

Last change on this file since 376 was 376, checked in by quinn, 14 years ago

Updated copyright date, name to Strangecode LLC.

File size: 1.4 KB
Line 
1<?php
2/**
3 * The Strangecode Codebase - a general application development framework for PHP
4 * For details visit the project site: <http://trac.strangecode.com/codebase/>
5 * Copyright 2001-2010 Strangecode, LLC
6 *
7 * This file is part of The Strangecode Codebase.
8 *
9 * The Strangecode Codebase is free software: you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as published by the
11 * Free Software Foundation, either version 3 of the License, or (at your option)
12 * any later version.
13 *
14 * The Strangecode Codebase is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * details.
18 *
19 * You should have received a copy of the GNU General Public License along with
20 * The Strangecode Codebase. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/*
24* The credentials here are to be loaded only by command-line scripts executed
25* on the command line or via cron. This script should be not be readable by apache.
26* Ownership should be the web owner, with only user-readability, such as:
27* -rw-------@  1 bob  bob   416 Mar 10 16:59 global/db_auth.inc.php
28*/
29require_once 'codebase/lib/App.inc.php';
30$app =& App::getInstance();
31
32$app->setParam(array(
33    'db_name' => '',
34    'db_user' => '',
35    'db_pass' => '',
36));
37?>
Note: See TracBrowser for help on using the repository browser.