Added update.php to replace ./update/VersionCheck.php in v1.0. Enabled 1-hour caching for this page and verified XML output in client tests. Added accompanying template for update script. Moved annoying local configurations found in .htaccess into htaccess.dist so it's readily visible. Removed old .htaccess file, since it was evil. git-svn-id: svn://10.0.0.236/trunk@187748 18797224-902f-48f8-a5cc-f745e15eee43
14 lines
269 B
PHP
Executable File
14 lines
269 B
PHP
Executable File
<?php
|
|
/**
|
|
* AMO global configuration document.
|
|
* Unless otherwise noted, trailing slashes should not be used.
|
|
* @package amo
|
|
* @subpackage bin
|
|
*/
|
|
define('DB_USER','');
|
|
define('DB_PASS','');
|
|
define('DB_HOST','');
|
|
define('DB_NAME','');
|
|
define('DB_PORT', '3306');
|
|
?>
|