mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
updated hgignore
This commit is contained in:
parent
a2312c1e1b
commit
67ab6b4377
3 changed files with 134 additions and 13 deletions
29
.hgignore
29
.hgignore
|
@ -204,16 +204,7 @@ code/nel/tools/pacs/build_rbank/build_rbank
|
||||||
code/ryzom/common/data_leveldesign/leveldesign/game_element/xp_table/skills.skill_tree
|
code/ryzom/common/data_leveldesign/leveldesign/game_element/xp_table/skills.skill_tree
|
||||||
code/ryzom/common/data_leveldesign/leveldesign/game_element/xp_table/xptable.xp_table
|
code/ryzom/common/data_leveldesign/leveldesign/game_element/xp_table/xptable.xp_table
|
||||||
code/ryzom/tools/server/sql/ryzom_admin_default_data.sql
|
code/ryzom/tools/server/sql/ryzom_admin_default_data.sql
|
||||||
code/ryzom/tools/server/ryzom_ams/drupal
|
|
||||||
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/autoload
|
|
||||||
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/configs
|
|
||||||
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/cron
|
|
||||||
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/img
|
|
||||||
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/plugins
|
|
||||||
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/smarty
|
|
||||||
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/translations
|
|
||||||
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/libinclude.php
|
|
||||||
code/ryzom/tools/server/ryzom_ams/www/html/templates_c
|
|
||||||
|
|
||||||
# Linux server compile
|
# Linux server compile
|
||||||
code/ryzom/server/src/entities_game_service/entities_game_service
|
code/ryzom/server/src/entities_game_service/entities_game_service
|
||||||
|
@ -227,11 +218,23 @@ code/ryzom/server/src/ryzom_welcome_service/ryzom_welcome_service
|
||||||
code/ryzom/server/src/tick_service/tick_service
|
code/ryzom/server/src/tick_service/tick_service
|
||||||
# WebTT temp dir
|
# WebTT temp dir
|
||||||
code/ryzom/tools/server/www/webtt/app/tmp
|
code/ryzom/tools/server/www/webtt/app/tmp
|
||||||
code\ryzom\tools\server\ryzom_ams\old
|
|
||||||
|
|
||||||
# AMS ignore
|
# AMS ignore
|
||||||
code/ryzom/tools/server/ryzom_ams/www/config.php
|
code/web/public_php/ams/is_installed
|
||||||
code/ryzom/tools/server/ryzom_ams/www/is_installed
|
code/web/docs/ams/html
|
||||||
|
code/web/public_php/ams/templates_c
|
||||||
|
code/ryzom/tools/server/ryzom_ams/drupal
|
||||||
|
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/autoload
|
||||||
|
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/configs
|
||||||
|
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/cron
|
||||||
|
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/img
|
||||||
|
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/plugins
|
||||||
|
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/smarty
|
||||||
|
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/translations
|
||||||
|
code/ryzom/tools/server/ryzom_ams/drupal_module/ryzommanage/ams_lib/libinclude.php
|
||||||
|
code/ryzom/tools/server/ryzom_ams/old
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#tools and external dir's
|
#tools and external dir's
|
||||||
external
|
external
|
||||||
|
|
118
code/ryzom/tools/server/ryzom_ams/www/config.php
Normal file
118
code/ryzom/tools/server/ryzom_ams/www/config.php
Normal file
|
@ -0,0 +1,118 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* This file contains all variables needed by other php scripts.
|
||||||
|
* @author Daan Janssens, mentored by Matthew Lagoe
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Variables for database access to the www/CMS database
|
||||||
|
$cfg['db']['web']['host'] = 'localhost';
|
||||||
|
$cfg['db']['web']['port'] = '3306';
|
||||||
|
$cfg['db']['web']['name'] = 'ryzom_ams';
|
||||||
|
$cfg['db']['web']['user'] = 'shard';
|
||||||
|
$cfg['db']['web']['pass'] = '';
|
||||||
|
|
||||||
|
// Variables for database access to the lib database
|
||||||
|
$cfg['db']['lib']['host'] = 'localhost';
|
||||||
|
$cfg['db']['lib']['port'] = '3306';
|
||||||
|
$cfg['db']['lib']['name'] = 'ryzom_ams_lib';
|
||||||
|
$cfg['db']['lib']['user'] = 'shard';
|
||||||
|
$cfg['db']['lib']['pass'] = '';
|
||||||
|
|
||||||
|
// Variables for database access to the shard database
|
||||||
|
$cfg['db']['shard']['host'] = 'localhost';
|
||||||
|
$cfg['db']['shard']['port'] = '3306';
|
||||||
|
$cfg['db']['shard']['name'] = 'nel';
|
||||||
|
$cfg['db']['shard']['user'] = 'shard';
|
||||||
|
$cfg['db']['shard']['pass'] = '';
|
||||||
|
|
||||||
|
// Variables for database access to the ring_open database
|
||||||
|
$cfg['db']['ring']['host'] = 'localhost';
|
||||||
|
$cfg['db']['ring']['port'] = '3306';
|
||||||
|
$cfg['db']['ring']['name'] = 'ring_open';
|
||||||
|
$cfg['db']['ring']['user'] = 'shard';
|
||||||
|
$cfg['db']['ring']['pass'] = '';
|
||||||
|
|
||||||
|
// Variables for database access to the nel_tool database
|
||||||
|
$cfg['db']['tool']['host'] = 'localhost';
|
||||||
|
$cfg['db']['tool']['port'] = '3306';
|
||||||
|
$cfg['db']['tool']['name'] = 'nel_tool';
|
||||||
|
$cfg['db']['tool']['user'] = 'shard';
|
||||||
|
$cfg['db']['tool']['pass'] = '';
|
||||||
|
|
||||||
|
// To connect to an IMAP server running on port 143 on the local machine,
|
||||||
|
// do the following: $mbox = imap_open("{localhost:143}INBOX", "user_id", "password");
|
||||||
|
// POP3 server on port 110: $mbox = imap_open ("{localhost:110/pop3}INBOX", "user_id", "password");
|
||||||
|
// SSL IMAP or POP3 server, add /ssl after the protocol: $mbox = imap_open ("{localhost:993/imap/ssl}INBOX", "user_id", "password");
|
||||||
|
// To connect to an SSL IMAP or POP3 server with a self-signed certificate,
|
||||||
|
// add /ssl/novalidate-cert after the protocol specification:
|
||||||
|
// $mbox = imap_open ("{localhost:995/pop3/ssl/novalidate-cert}", "user_id", "password");
|
||||||
|
// NNTP server on port 119 use: $nntp = imap_open ("{localhost:119/nntp}comp.test", "", "");
|
||||||
|
// To connect to a remote server replace "localhost" with the name or the IP address of the server you want to connect to.
|
||||||
|
//$cfg['mail']['server'] = '{localhost:110/pop3/novalidate-cert}INBOX';
|
||||||
|
|
||||||
|
//imap connection string as explained above
|
||||||
|
$cfg['mail']['default_mailserver']= '{imap.gmail.com:993/imap/ssl}INBOX';
|
||||||
|
//groupemail is the email that sends the email
|
||||||
|
$cfg['mail']['default_groupemail'] = 'example@gmail.com';
|
||||||
|
//groupname will be the name displayed as sender
|
||||||
|
$cfg['mail']['default_groupname'] = 'Ryzomcore Support';
|
||||||
|
//the username of the account
|
||||||
|
$cfg['mail']['default_username'] = 'example@gmail.com';
|
||||||
|
//the matching password
|
||||||
|
$cfg['mail']['default_password'] = 'passw0rd';
|
||||||
|
//the host, being used when a mail is sent from a support group: support_groups_name@host
|
||||||
|
$cfg['mail']['host'] = "ryzomcore.com";
|
||||||
|
|
||||||
|
//Defines mailing related stuff
|
||||||
|
$SUPPORT_GROUP_IMAP_CRYPTKEY = "azerty";
|
||||||
|
$TICKET_MAILING_SUPPORT = false;
|
||||||
|
|
||||||
|
//You have to create this dir at first!
|
||||||
|
//The incoming emails will be backed up here and the log file keeps track of the mail_cron job.
|
||||||
|
$MAIL_DIR = "/home/username/mail";
|
||||||
|
$MAIL_LOG_PATH = "/home/username/mail/cron_mail.log";
|
||||||
|
|
||||||
|
//terms of service url location
|
||||||
|
$TOS_URL ="http://www.gnu.org/licenses/agpl-3.0.html";
|
||||||
|
|
||||||
|
//crypt is being used by encrypting & decrypting of the IMAP password of the supportgroups
|
||||||
|
$cfg['crypt']['key'] = 'Sup3rS3cr3tStuff';
|
||||||
|
$cfg['crypt']['enc_method'] = 'AES-256-CBC';
|
||||||
|
$cfg['crypt']['hash_method'] = "SHA512";
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------------------
|
||||||
|
// If true= the server will add automatically unknown user in the database
|
||||||
|
// (in nel.user= nel.permission= ring.ring_user and ring.characters
|
||||||
|
$ALLOW_UNKNOWN = true ;
|
||||||
|
// if true= the login service automaticaly create a ring user and a editor character if needed
|
||||||
|
$CREATE_RING = true ;
|
||||||
|
|
||||||
|
// site paths definitions (you shouldn't have to edit these..)
|
||||||
|
$AMS_LIB = dirname( dirname( __FILE__ ) ) . '/ams_lib';
|
||||||
|
$AMS_TRANS = $AMS_LIB . '/translations';
|
||||||
|
$AMS_CACHEDIR = $AMS_LIB . '/cache';
|
||||||
|
//Here your inc and func resides
|
||||||
|
$SITEBASE = dirname( __FILE__ ) . '/html/' ;
|
||||||
|
|
||||||
|
//the paths to your website url
|
||||||
|
$BASE_WEBPATH = '';
|
||||||
|
$IMAGELOC_WEBPATH = $BASE_WEBPATH.'img';
|
||||||
|
$WEBPATH = $BASE_WEBPATH . '/index.php';
|
||||||
|
$INGAME_WEBPATH = $BASE_WEBPATH . '/index.php';
|
||||||
|
$CONFIG_PATH = dirname( __FILE__ );
|
||||||
|
|
||||||
|
//defines the default language
|
||||||
|
$DEFAULT_LANGUAGE = 'en';
|
||||||
|
|
||||||
|
//defines if logging actions should happen or not.
|
||||||
|
$TICKET_LOGGING = true;
|
||||||
|
|
||||||
|
//defines the time format display
|
||||||
|
$TIME_FORMAT = "m-d-Y H:i:s";
|
||||||
|
|
||||||
|
//defines which ingame layout template should be used
|
||||||
|
$INGAME_LAYOUT = "basic";
|
||||||
|
|
||||||
|
//forces to load the ingame templates if set to true
|
||||||
|
$FORCE_INGAME = false;
|
||||||
|
|
0
code/ryzom/tools/server/ryzom_ams/www/is_installed
Normal file
0
code/ryzom/tools/server/ryzom_ams/www/is_installed
Normal file
Loading…
Reference in a new issue