<?php
/**
* @author Korbinian Ober
* @copyright 2010 tuxphr34k media software solutions
* @version 0.1a
*/
/**
* Database Configuration
*/
$config['db_host'] = 'localhost';
$config['db_user'] = 'root';
$config['db_pass'] = '';
$config['db_name'] = 'test';
/**
* Service Configuration
*/
$config['functions.d'] = 'functions.d';
$config['namespace'] = 'http://tempuri.org/service';
$config['servicename'] = 'MySQLEndpoint';
/**
* Authentification Configuration
*/
$config['auth_fixed'] = array(array('user' => 'root', 'pass' => 'root'));
$config['auth_sql'] = 'SELECT user FROM users WHERE user = @@0@@ AND passwd = MD5(@@1@@) AND passwdbw = MD5(@@2@@)';
/**
* Base directory for use in SOAP eval functions (mainly for absolute includes)
*/
define('BASEDIR', dirname(__FILE__));