91e6b23d3f
NMAKE-VS2012 Error LNK2011 while NMAKE-VS2010 does not complain we need to link the pch.obj file see http://msdn.microsoft.com/en-us/library/3ay26wa2(v=vs.110).aspx ** PCH Support for Ninja Ninja need to add property OBJECT_DEPENDS for using PCH OBJECT_OUTPUTS for create PCH see http://public.kitware.com/pipermail/cmake-developers/2012-March/003653.html
33 lines
No EOL
961 B
PHP
33 lines
No EOL
961 B
PHP
<?php
|
|
// necessary to include the server api
|
|
$_SERVER['HTTP_HOST'] = 'app.ryzom.com';
|
|
|
|
require_once("../../config.php");
|
|
|
|
$CONF = array();
|
|
|
|
$CONF['logging'] = true;
|
|
$CONF['logfile'] = "/log/";
|
|
|
|
$CONF['mysql_error'] = "LOG";
|
|
$CONF['mysql_server'] = RYAPI_WEBDB_HOST;
|
|
$CONF['mysql_user'] = RYAPI_WEBDB_LOGIN;
|
|
$CONF['mysql_pass'] = RYAPI_WEBDB_PASS;
|
|
$CONF['mysql_database'] = "app_achievements";
|
|
|
|
$CONF['webig_mysql_database'] = "webig";
|
|
|
|
$CONF['char_mysql_server'] = RYAPI_NELDB_HOST;
|
|
$CONF['char_mysql_user'] = RYAPI_NELDB_LOGIN;
|
|
$CONF['char_mysql_pass'] = RYAPI_NELDB_PASS;
|
|
$CONF['char_mysql_database'] = RYAPI_NELDB_RING;
|
|
|
|
$CONF['export_xml_path'] = "../../../data/cache/players/";
|
|
#$CONF['export_xml_path'] = "cache/players/";
|
|
|
|
$CONF['data_source'] = array("PDRtoXMLdriver");
|
|
|
|
$CONF['facebook'] = false;
|
|
$CONF['fb_id'] = "447985781893176";
|
|
$CONF['fb_secret'] = "f953772f1f7d871db022a6023e7a3f42";
|
|
?>
|