\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: /proc/self/root/var/softaculous/jobber/

Viewing File: config.envs.php

<?php
/**
 * Define environments
 *
 */

// local
$__instances['local'] = array(
	// The prefix should be a unique part of the url (not including protocol name or auth info; see below).
	'prefix' => '[[domhost]]',
	// mysql credentials
	'db_host' => '[[softdbhost]]',
	'db_port' => 3306,
	'db_user' => '[[softdbuser]]',
	'db_password' => '[[softdbpass]]',
	'db_name' => '[[softdb]]',
	'db_prefix' => '',
	// your site's full url
	'app_url' => '[[softurl]]/',
	// language to use
	'lang_code' => 'en',
	// error reporting
	'ini_error_reporting' => E_ALL,
	'ini_display_errors' => 'On',
	// environment setting 1 (use 'local' for localhost/testing OR 'online' for live, production environment)
	'location' => 'local',
	// environment setting 2 (use 'dev' together with 'local' in the previous setting OR 'prod' with 'online')
	'environment' => 'dev',
	//'apache_mod_rewrite', 'iis_url_rewrite' -microsoft URL Rewrite module, 'iis_isapi_rewrite'
	'rewrite_mode' => 'apache_mod_rewrite'
);

// live
$__instances['live'] = array(
	'prefix' => '[[domhost]]',
	'db_host' => '[[softdbhost]]',
	'db_port' => 3306,
	'db_user' => '[[softdbuser]]',
	'db_password' => '[[softdbpass]]',
	'db_name' => '[[softdb]]',
	'db_prefix' => '',
	'app_url' => '[[softurl]]/',
	// language to use
	'lang_code' => 'en',
	'ini_error_reporting' => E_ALL,
	'ini_display_errors' => 'Off',
	'location' => 'online',
	'environment' => 'prod',
	'rewrite_mode' => 'apache_mod_rewrite'
);


// http requests
if (isset($_SERVER['HTTP_HOST']) && isset($_SERVER['REQUEST_URI']))
{
	$_compare_to = $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
}

// setup current instance
foreach ($__instances as $__instance)
{
	if (strstr($_compare_to, $__instance['prefix']))
	{
		define('DB_HOST', $__instance['db_host']);
		define('DB_PORT', $__instance['db_port']);
		define('DB_USER', $__instance['db_user']);
		define('DB_PASS', $__instance['db_password']);
		define('DB_NAME', $__instance['db_name']);
		define('DB_PREFIX', $__instance['db_prefix']);

		// values kind of redundant, they indicate wether this is a live/production or dev/testing environment
		define('LOCATION', $__instance['location']);
		define('ENVIRONMENT', $__instance['environment']);
		
		$app_url = $__instance['app_url'];
		
		$indexOfLastSlash = strrpos($app_url, "/");
		$expectedIndexOfLastSlash = strlen($app_url) - 1;

		// manually add an ending slash to the app_url if the user didn't specify it
		if ($indexOfLastSlash && $indexOfLastSlash != $expectedIndexOfLastSlash )
			$app_url .= '/';
			
		// base url of the app
		define('APP_URL', $app_url);
		define('REWRITE_MODE', $__instance['rewrite_mode']);
		
		// error reporting
		ini_set('error_reporting', $__instance['ini_error_reporting']);
		ini_set('display_errors', $__instance['ini_display_errors']);

		define('LANG_CODE', $__instance['lang_code']);
		
		break;
	}
}

if(!defined('DB_HOST'))
{
	die('None of the configured JobberBase instances matched your request!<br />If you are an admin of this JobberBase installation, you may want to review the \'prefix\' values of the configured JobberBase instances in config.envs.php.');
}
?>