\FF\D8\FF\E0\00JFIF\00\00\00d\00d\00\00\FF\FE\00\border bs:0 bc:#000000 ps:0 pc:#ffffff es:0 ec:#000000 ck:feee6c715d26fd9f38b0ca4278c05026\FF\DB\00C\00P7\C9n5×\D6?\BDê\9Ds\EBp\9F[`8m\B7)o\B5\E8\E6I\99\FE3]]A2\BA\8Cw\D6E\93\\DEv\C8\009\F2\F1NI?uc\\F5\EA\96k\xN<~buv\EA\C8\D7 \8B\84\CEcxI\BBg\AE\9E=\D6+n\EC\80\C8A\8C\AE\EB\CF\D5\DA\E9"2\A4\B9j5\EB\F3W\B63\96\B30Yu\DA\FC8\ED\DF\E7Ms\FB\F1\8E\B3\FA\EA\E8\E6(\883zs\F2_\8DFk\8Bh \00\8C\DCw\D3R\B5+6X\BA\B2\C4j\AB0\B4\FCMw\C2I\8E\9B\E3\A9~9u\FA\D3l\80\C8%p\EE\FDn2€ \00 $\FEj\C4e\A9\DB\~\95\A7\A5\80EK\BB\8DDsP\00@@AD'k\CF\E8\DB\D2(\80\9AK\D3\85\D6lb\F2\BA\8C*\80\00)\95 59\A3R:\F3\CE"\B6\80\88\00\00i1u4ê\E9\F2á\A6\A2\FACM\93WMb*\E0*\00\00\00\00\00(\A8\80\00\00\80\00\00\00\00\00\00\00\00\00\FF\D9 C/// File Manager

File Manager

Path: /var/softaculous/softaculous_14426/zenario/

Viewing File: zenario_siteconfig.php

<?php
// This file should be called zenario_siteconfig.php and located in Zenario's home directory.

  /////////////////////////////
 // MySQL database settings //
/////////////////////////////

//Database host (often localhost):
define('DBHOST', '[[softdbhost]]');
//Database name:
define('DBNAME', '[[softdb]]');
//MySQL database username:
define('DBUSER', '[[softdbuser]]');
//Database password:
define('DBPASS', '[[softdbpass]]');
//Database port number:
define('DBPORT', '');
//Prefix for all table names (to keep them distinct from other apps):
define('DB_PREFIX', '[[dbprefix]]');
//Use MySQL in "strict" mode:
define('DEBUG_USE_STRICT_MODE', true);


  /////////////////////////////////////////
 // Restore policy for database backups //
/////////////////////////////////////////

define('RESTORE_POLICY', 'always');
// Always allow database backups to be restored using Organizer.

//define('RESTORE_POLICY', 'never');
// Disable the ability to restore database backups using Organizer.

//define('RESTORE_POLICY', '2012-12-21');
// Allow database backups to be restored for one day. (Set this to the current date to use this option.)


  //////////////////////////////////////////////////////////
 // MySQL database settings for multi-site adminstrators //
//////////////////////////////////////////////////////////

// These optional parameters allow you to specify a different installation
// of Zenario and log in to this installation with those administrator accounts:
//define('DBHOST_GLOBAL', 'localhost');
//define('DBNAME_GLOBAL', '');
//define('DBUSER_GLOBAL', '');
//define('DBPASS_GLOBAL', '');
//define('DBPORT_GLOBAL', '');
//define('DB_PREFIX_GLOBAL', 'z_');


  ///////////////////////////
 // Support email address //
///////////////////////////

// Send system errors to the following email address:
define('EMAIL_ADDRESS_GLOBAL_SUPPORT', '[[admin_email]]');

// Send an email to the address above if there is a database error:
define('DEBUG_SEND_EMAIL', true);

// Note that other email-related settings can be found under
// "Configuration -> Site settings -> Email" in Organizer


  /////////////////////////////
 // Directory and file name //
/////////////////////////////

// If you are running Zenario in a subdirectory please enter this here.
// If specifed, it MUST start with a / and must end in a /
// If you are not running in a subdirectory please just enter a /
define('SUBDIRECTORY', '[[relativeurl]]/');

// The filename of the index file in the root directory.
// In most cases you don't need to change this.
define('DIRECTORY_INDEX_FILENAME', 'index.php');


  //////////////////////////
 // Cookies and Sessions //
//////////////////////////

// If you are using multiple sub-domains for your site, and this value is defined,
// then cookies set in the browser, an administrator's login, and an extranet user's
// login will persist across the domain and any sub-domains.
//
// For example, a setting of 'example.com' will persist cookies across all sites at
// *.example.com where '*' means any sub-domain, as well as example.com itself.
//
// You should use this if you use a sub-domains to denote languages, such as
// example.com, en.example.com, de.example.com and fr.example.com.
// In that case, enter 'example.com' below.
//
// Leave this blank if you're not using sub-domains.
define('COOKIE_DOMAIN', '');

// The length of time (in seconds) that the cookie consent, "remember me" and
// "Log me in automatically" options last.
// The default value if not set is 100 days.
define('COOKIE_TIMEOUT', 8640000);


// The length of time (in seconds) to persist the login of administrators and extranet users.
//
// If not active on the site for this amount of time, they will be logged out.
// If session.cookie_lifetime and/or session.gc_maxlifetime settings in php.ini file are
// shorter, they will take precedence.
//
// If set to 0 then they will be logged out when quitting/restarting, but will otherwise
// remain logged in until session.cookie_lifetime and/or session.gc_maxlifetime.
// 
// We recommend setting this to 1800 (30 minutes).
define('SESSION_TIMEOUT', 1800);


  /////////////////////
 // Error reporting //
/////////////////////

//define('ERROR_REPORTING_LEVEL', (E_ALL | E_NOTICE));
// This shows every type of error.
// We recommend using this level of reporting on development or staging sites that are not live.

define('ERROR_REPORTING_LEVEL', (E_ALL & ~E_NOTICE));
// This shows all errors except notices and strict errors.
// We recommend using this level of reporting on live/production sites.