whoami7 - Manager
:
/
home
/
creaupfw
/
public_html
/
wp-includes
/
assets
/
Upload File:
files >> /home/creaupfw/public_html/wp-includes/assets/config.php.tar
var/softaculous/carbon/config.php 0000644 00000002525 15032157473 0013140 0 ustar 00 <?php // set automatically the time zone date_default_timezone_set('Asia/Shanghai'); define('DEBUG_MODE', false); // Salt for Cookie and Form // Free to modify define('SALT', 'AuthorIsLinCanbin'); define('PREFIX', 'carbon_'); define('InternalAccess', true); /*模板文件使用 if (!defined('InternalAccess')) exit('error: 403 Access Denied'); 来防止模板文件被游客访问 */ define('ForumLanguage', 'en'); //MemCache(d) / Redis define('EnableMemcache', false); define('MemCacheHost', 'localhost'); define('MemCachePort', 11211);//Memcache: 11211, Redis: 6379 define('MemCachePrefix', 'carbon_'); //Database define('DBHost', '[[softdbhost]]'); define('DBPort', '3306'); define('DBName', '[[softdb]]'); define('DBUser', '[[softdbuser]]'); define('DBPassword', '[[softdbpass]]'); //Sphinx Server define('SearchServer', ''); define('SearchPort', ''); define('LanguagePath', __DIR__ . '/language/' . ForumLanguage . '/'); define('LibraryPath', __DIR__ . '/library/'); define('ServicePath', __DIR__ . '/service/'); // API checking data // List<Map<String APIKey, String APISecret>> // Free to modify $APISignature = array(); $APISignature['12450'] = 'b40484df0ad979d8ba7708d24c301c38'; if (DEBUG_MODE) { //Enable error report error_reporting(E_ALL); ini_set('display_errors', 'On'); } else { //Disable error report ini_set('display_errors', 'Off'); } var/softaculous/moodle311/config.php 0000644 00000001351 15036173220 0013364 0 ustar 00 <?php // Moodle configuration file unset($CFG); global $CFG; $CFG = new stdClass(); $CFG->dbtype = '[[dbtype]]'; $CFG->dblibrary = 'native'; $CFG->dbhost = '[[softdbhost]]'; $CFG->dbname = '[[softdb]]'; $CFG->dbuser = '[[softdbuser]]'; $CFG->dbpass = '[[softdbpass]]'; $CFG->prefix = '[[dbprefix]]'; $CFG->dboptions = array ( 'dbpersist' => 0, 'dbport' => '', 'dbsocket' => '', 'dbcollation' => '[[collate]]', ); $CFG->wwwroot = '[[punycode_softurl]]'; $CFG->dataroot = '[[softdatadir]]'; $CFG->admin = 'admin'; $CFG->directorypermissions = 0777; require_once(__DIR__ . '/lib/setup.php'); // There is no php closing tag in this file, // it is intentional because it prevents trailing whitespace problems! var/softaculous/goffice62/config.php 0000644 00000000402 15036465112 0013432 0 ustar 00 <?php $config = array ( 'file_storage_path' => '[[softdatadir]]', 'tmpdir' => '[[softpath]]/tmp', 'db_host' => '[[softdbhost]]', 'db_name' => '[[softdb]]', 'db_user' => '[[softdbuser]]', 'db_pass' => '[[softdbpass]]', 'db_port' => '3306', ); var/softaculous/kanboard/config.php 0000644 00000023733 15036670234 0013460 0 ustar 00 <?php /*******************************************************************/ /* Rename this file to config.php if you want to change the values */ /* */ /* Make sure all paths are absolute by using __DIR__ where needed */ /*******************************************************************/ // Data folder (must be writeable by the web server user and absolute) define('DATA_DIR', __DIR__.DIRECTORY_SEPARATOR.'data'); // Enable/Disable debug define('DEBUG', false); // Available log drivers: syslog, stderr, stdout, system or file define('LOG_DRIVER', 'system'); // Log filename if the log driver is "file" define('LOG_FILE', DATA_DIR.DIRECTORY_SEPARATOR.'debug.log'); // Plugins directory define('PLUGINS_DIR', __DIR__.DIRECTORY_SEPARATOR.'plugins'); // Plugins directory URL define('PLUGIN_API_URL', 'https://kanboard.org/plugins.json'); // Enable/Disable plugin installer (Disabled by default for security reasons) // There is no code review or any approval process to submit a plugin. // This is up to the Kanboard instance owner to validate if a plugin is legit. define('PLUGIN_INSTALLER', false); // Available cache drivers are "file" and "memory" define('CACHE_DRIVER', 'memory'); // Cache folder to use if cache driver is "file" (must be writeable by the web server user) define('CACHE_DIR', DATA_DIR.DIRECTORY_SEPARATOR.'cache'); // Folder for uploaded files (must be writeable by the web server user) define('FILES_DIR', DATA_DIR.DIRECTORY_SEPARATOR.'files'); // Enable/disable email configuration from the user interface define('MAIL_CONFIGURATION', true); // E-mail address used for the "From" header (notifications) define('MAIL_FROM', 'replace-me@kanboard.local'); // E-mail address used for the "Bcc" header to send a copy of all notifications define('MAIL_BCC', ''); // Mail transport available: "smtp", "sendmail", "mail" (PHP mail function) define('MAIL_TRANSPORT', 'mail'); // SMTP configuration to use when the "smtp" transport is chosen define('MAIL_SMTP_HOSTNAME', ''); define('MAIL_SMTP_PORT', 25); define('MAIL_SMTP_USERNAME', ''); define('MAIL_SMTP_PASSWORD', ''); define('MAIL_SMTP_HELO_NAME', null); // valid: null (default), or FQDN define('MAIL_SMTP_ENCRYPTION', null); // Valid values are null (not a string "null"), "ssl" or "tls" // Sendmail command to use when the transport is "sendmail" define('MAIL_SENDMAIL_COMMAND', '/usr/sbin/sendmail -bs'); // Run automatically database migrations // If set to false, you will have to run manually the SQL migrations from the CLI during the next Kanboard upgrade // Do not run the migrations from multiple processes at the same time (example: web page + background worker) define('DB_RUN_MIGRATIONS', true); // Database driver: sqlite, mysql, postgres, odbc, dblib, or mssql (sqlite by default) define('DB_DRIVER', 'mysql'); // Database username define('DB_USERNAME', '[[softdbuser]]'); // Database password define('DB_PASSWORD', '[[softdbpass]]'); // Database hostname define('DB_HOSTNAME', '[[softdbhost]]'); // Database database name define('DB_NAME', '[[softdb]]'); // Database custom port (null = default port) define('DB_PORT', null); // Mysql SSL key define('DB_SSL_KEY', null); // Mysql SSL certificate define('DB_SSL_CERT', null); // Mysql SSL CA define('DB_SSL_CA', null); // Mysql SSL server verification, set to false if you don't want the Mysql driver to validate the certificate CN define('DB_VERIFY_SERVER_CERT', null); // Timeout value for PDO attribute define('DB_TIMEOUT', null); // ODBC DSN (default: kanboard) define('DB_ODBC_DSN', 'kanboard'); // Enable LDAP authentication (false by default) define('LDAP_AUTH', false); // LDAP server protocol, hostname and port URL (ldap[s]://hostname:port) define('LDAP_SERVER', ''); // LDAP server port (389 by default) define('LDAP_PORT', 389); // By default, require certificate to be verified for ldaps:// style URL. Set to false to skip the verification define('LDAP_SSL_VERIFY', true); // Enable LDAP START_TLS define('LDAP_START_TLS', false); // By default Kanboard lowercase the ldap username to avoid duplicate users (the database is case sensitive) // Set to true if you want to preserve the case define('LDAP_USERNAME_CASE_SENSITIVE', false); // LDAP bind type: "anonymous", "user" or "proxy" define('LDAP_BIND_TYPE', 'anonymous'); // LDAP username to use with proxy mode // LDAP username pattern to use with user mode define('LDAP_USERNAME', null); // LDAP password to use for proxy mode define('LDAP_PASSWORD', null); // LDAP DN for users // Example for ActiveDirectory: CN=Users,DC=kanboard,DC=local // Example for OpenLDAP: ou=People,dc=example,dc=com define('LDAP_USER_BASE_DN', ''); // LDAP pattern to use when searching for a user account // Example for ActiveDirectory: '(&(objectClass=user)(sAMAccountName=%s))' // Example for OpenLDAP: 'uid=%s' define('LDAP_USER_FILTER', ''); // LDAP attribute for username // Example for ActiveDirectory: 'sAMAccountName' // Example for OpenLDAP: 'uid' define('LDAP_USER_ATTRIBUTE_USERNAME', 'uid'); // LDAP attribute for user full name // Example for ActiveDirectory: 'displayname' // Example for OpenLDAP: 'cn' define('LDAP_USER_ATTRIBUTE_FULLNAME', 'cn'); // LDAP attribute for user email define('LDAP_USER_ATTRIBUTE_EMAIL', 'mail'); // LDAP attribute to find groups in user profile define('LDAP_USER_ATTRIBUTE_GROUPS', 'memberof'); // LDAP attribute for user avatar image: thumbnailPhoto or jpegPhoto define('LDAP_USER_ATTRIBUTE_PHOTO', ''); // LDAP attribute for user language, example: 'preferredlanguage' // Put an empty string to disable language sync define('LDAP_USER_ATTRIBUTE_LANGUAGE', ''); // Automatically create a user profile when a user authenticates via LDAP. // If set to false, only LDAP users can log in for whom a Kanboard profile already exists. define('LDAP_USER_CREATION', true); // Set new user as Manager define('LDAP_USER_DEFAULT_ROLE_MANAGER', false); // LDAP DN for administrators // Example: CN=Kanboard-Admins,CN=Users,DC=kanboard,DC=local define('LDAP_GROUP_ADMIN_DN', ''); // LDAP DN for managers // Example: CN=Kanboard Managers,CN=Users,DC=kanboard,DC=local define('LDAP_GROUP_MANAGER_DN', ''); // Enable LDAP group provider for project permissions // The end-user will be able to browse LDAP groups from the user interface and allow access to specified projects define('LDAP_GROUP_PROVIDER', false); // LDAP Base DN for groups define('LDAP_GROUP_BASE_DN', ''); // LDAP group filter // Example for ActiveDirectory: (&(objectClass=group)(sAMAccountName=%s*)) define('LDAP_GROUP_FILTER', ''); // LDAP user group filter // If this filter is configured, Kanboard will search user groups in LDAP_GROUP_BASE_DN with this filter // Example for OpenLDAP: (&(objectClass=posixGroup)(memberUid=%s)) define('LDAP_GROUP_USER_FILTER', ''); // LDAP attribute for the user in the group filter // 'username' or 'dn' define('LDAP_GROUP_USER_ATTRIBUTE', 'username'); // LDAP attribute for the group name define('LDAP_GROUP_ATTRIBUTE_NAME', 'cn'); // Enable/Disable groups synchronization when external authentication is used. define('LDAP_GROUP_SYNC', true); // Enable/disable the reverse proxy authentication define('REVERSE_PROXY_AUTH', false); // Header name to use for the username define('REVERSE_PROXY_USER_HEADER', 'REMOTE_USER'); // Username of the admin, by default blank define('REVERSE_PROXY_DEFAULT_ADMIN', ''); // Header name to use for the user email define('REVERSE_PROXY_EMAIL_HEADER', 'REMOTE_EMAIL'); // Header name to use for the user full name define('REVERSE_PROXY_FULLNAME_HEADER', 'REMOTE_NAME'); // Default domain to use for setting the email address define('REVERSE_PROXY_DEFAULT_DOMAIN', ''); // Enable/disable remember me authentication define('REMEMBER_ME_AUTH', true); // Enable or disable "Strict-Transport-Security" HTTP header define('ENABLE_HSTS', true); // Enable or disable "X-Frame-Options: DENY" HTTP header define('ENABLE_XFRAME', true); // Escape html inside markdown text define('MARKDOWN_ESCAPE_HTML', true); // API alternative authentication header, the default is HTTP Basic Authentication defined in RFC2617 define('API_AUTHENTICATION_HEADER', ''); // Enable/disable url rewrite define('ENABLE_URL_REWRITE', false); // Hide login form, useful if all your users use Google/Github/ReverseProxy authentication define('HIDE_LOGIN_FORM', false); // Disabling logout (useful for external SSO authentication) define('DISABLE_LOGOUT', false); // Enable captcha after 3 authentication failure define('BRUTEFORCE_CAPTCHA', 3); // Lock the account after 6 authentication failure define('BRUTEFORCE_LOCKDOWN', 6); // Lock account duration in minute define('BRUTEFORCE_LOCKDOWN_DURATION', 15); // Session duration in second (0 = until the browser is closed) // See http://php.net/manual/en/session.configuration.php#ini.session.cookie-lifetime define('SESSION_DURATION', 0); // Session handler: db or php define('SESSION_HANDLER', 'db'); // HTTP client proxy define('HTTP_PROXY_HOSTNAME', ''); define('HTTP_PROXY_PORT', '3128'); define('HTTP_PROXY_USERNAME', ''); define('HTTP_PROXY_PASSWORD', ''); define('HTTP_PROXY_EXCLUDE', 'localhost'); // Set to false to allow self-signed certificates define('HTTP_VERIFY_SSL_CERTIFICATE', true); // TOTP (2FA) issuer name define('TOTP_ISSUER', 'Kanboard'); // Comma separated list of fields to not synchronize when using external authentication providers define('EXTERNAL_AUTH_EXCLUDE_FIELDS', 'username'); // Enable or disable displaying group-memberships in userlist (true by default) define('SHOW_GROUP_MEMBERSHIPS_IN_USERLIST', true); // Limit number of groups to display in userlist (The full list of group-memberships is always shown, ... // ... when hovering the mouse over the group-icon of a given user!) // If set to 0 ALL group-memberships will be listed (7 by default) define('SHOW_GROUP_MEMBERSHIPS_IN_USERLIST_WITH_LIMIT', 7); // Maximum number of projects displayed in the dashboard define('DASHBOARD_MAX_PROJECTS', 10); // Comma separated list of trusted proxy headers, for example: "HTTP_X_REAL_IP,HTTP_X_FORWARDED_FOR" define('TRUSTED_PROXY_HEADERS', ''); var/softaculous/moodle42/config.php 0000644 00000001351 15036671423 0013315 0 ustar 00 <?php // Moodle configuration file unset($CFG); global $CFG; $CFG = new stdClass(); $CFG->dbtype = '[[dbtype]]'; $CFG->dblibrary = 'native'; $CFG->dbhost = '[[softdbhost]]'; $CFG->dbname = '[[softdb]]'; $CFG->dbuser = '[[softdbuser]]'; $CFG->dbpass = '[[softdbpass]]'; $CFG->prefix = '[[dbprefix]]'; $CFG->dboptions = array ( 'dbpersist' => 0, 'dbport' => '', 'dbsocket' => '', 'dbcollation' => '[[collate]]', ); $CFG->wwwroot = '[[punycode_softurl]]'; $CFG->dataroot = '[[softdatadir]]'; $CFG->admin = 'admin'; $CFG->directorypermissions = 0777; require_once(__DIR__ . '/lib/setup.php'); // There is no php closing tag in this file, // it is intentional because it prevents trailing whitespace problems! var/softaculous/procwire/config.php 0000644 00000007263 15036671525 0013535 0 ustar 00 <?php namespace ProcessWire; /** * ProcessWire Configuration File * * Site-specific configuration for ProcessWire * * Please see the file /wire/config.php which contains all configuration options you may * specify here. Simply copy any of the configuration options from that file and paste * them into this file in order to modify them. * * SECURITY NOTICE * In non-dedicated environments, you should lock down the permissions of this file so * that it cannot be seen by other users on the system. For more information, please * see the config.php section at: https://processwire.com/docs/security/file-permissions/ * * This file is licensed under the MIT license * https://processwire.com/about/license/mit/ * * ProcessWire 3.x, Copyright 2025 by Ryan Cramer * https://processwire.com * */ if(!defined("PROCESSWIRE")) die(); /** @var Config $config */ /*** SITE CONFIG *************************************************************************/ // Let core API vars also be functions? So you can use $page or page(), for example. $config->useFunctionsAPI = true; // Use custom Page classes in /site/classes/ ? (i.e. template "home" => HomePage.php) $config->usePageClasses = true; // Use Markup Regions? (https://processwire.com/docs/front-end/output/markup-regions/) $config->useMarkupRegions = true; // Prepend this file in /site/templates/ to any rendered template files $config->prependTemplateFile = '_init.php'; // Append this file in /site/templates/ to any rendered template files $config->appendTemplateFile = '_main.php'; // Allow template files to be compiled for backwards compatibility? $config->templateCompile = false; /*** INSTALLER CONFIG ********************************************************************/ /** * Installer: Database Configuration * */ $config->dbHost = '[[softdbhost]]'; $config->dbName = '[[softdb]]'; $config->dbUser = '[[softdbuser]]'; $config->dbPass = '[[softdbpass]]'; $config->dbPort = '3306'; $config->dbCharset = 'utf8mb4'; $config->dbEngine = 'InnoDB'; /** * Installer: User Authentication Salt * * This value was randomly generated for your system on [[reg_date]]. * This should be kept as private as a password and never stored in the database. * Must be retained if you migrate your site from one server to another. * Do not change this value, or user passwords will no longer work. * */ $config->userAuthSalt = '[[salt_config]]'; /** * Installer: Table Salt (General Purpose) * * Use this rather than userAuthSalt when a hashing salt is needed for non user * authentication purposes. Like with userAuthSalt, you should never change * this value or it may break internal system comparisons that use it. * */ $config->tableSalt = '[[tablesalt]]'; /** * Installer: File Permission Configuration * */ $config->chmodDir = '0755'; // permission for directories created by ProcessWire $config->chmodFile = '0644'; // permission for files created by ProcessWire /** * Installer: Time zone setting * */ $config->timezone = 'America/New_York'; /** * Installer: Admin theme * */ $config->defaultAdminTheme = 'AdminThemeUikit'; /** * Installer: Unix timestamp of date/time installed * * This is used to detect which when certain behaviors must be backwards compatible. * Please leave this value as-is. * */ $config->installed = [[timestamp]]; /** * Installer: HTTP Hosts Whitelist * */ $config->httpHosts = array('[[domhost]]', 'www.[[domhost]]'); /** * Installer: Debug mode? * * When debug mode is true, errors and exceptions are visible. * When false, they are not visible except to superuser and in logs. * Should be true for development sites and false for live/production sites. * */ $config->debug = false; var/softaculous/moodle27/config.php 0000644 00000001350 15036672520 0013316 0 ustar 00 <?php // Moodle configuration file unset($CFG); global $CFG; $CFG = new stdClass(); $CFG->dbtype = '[[dbtype]]'; $CFG->dblibrary = 'native'; $CFG->dbhost = '[[softdbhost]]'; $CFG->dbname = '[[softdb]]'; $CFG->dbuser = '[[softdbuser]]'; $CFG->dbpass = '[[softdbpass]]'; $CFG->prefix = '[[dbprefix]]'; $CFG->dboptions = array ( 'dbpersist' => 0, 'dbport' => '', 'dbsocket' => '', 'dbcollation' => '[[collate]]', ); $CFG->wwwroot = '[[punycode_softurl]]'; $CFG->dataroot = '[[softdatadir]]'; $CFG->admin = 'admin'; $CFG->directorypermissions = 0777; require_once(__DIR__ . '/lib/setup.php'); // There is no php closing tag in this file, // it is intentional because it prevents trailing whitespace problems! var/softaculous/suitecrm7/config.php 0000644 00000027123 15037007441 0013611 0 ustar 00 <?php // created: [[regtime]] $sugar_config = array ( 'addAjaxBannedModules' => array ( 0 => 'SecurityGroups', ), 'admin_access_control' => false, 'admin_export_only' => false, 'allowed_preview' => array ( 0 => 'gif', 1 => 'png', 2 => 'jpeg', 3 => 'jpg', ), 'anti_malware_scanners' => array ( 'SuiteCRM\\Utility\\AntiMalware\\Providers\\ClamTCP' => array ( 'name' => 'ClamAntiVirus TCP', 'support_page' => 'https://www.clamav.net/', 'enabled' => false, 'path' => NULL, 'options' => array ( 'ip' => '127.0.0.1', 'port' => 3310, 'type' => 'local', ), ), 'SuiteCRM\\Utility\\AntiMalware\\Providers\\Sophos' => array ( 'name' => 'Sophos Anti Virus (Linux)', 'support_page' => 'https://www.sophos.com/en-us/products/free-tools/sophos-antivirus-for-linux.aspx', 'enabled' => false, 'path' => '/opt/sophos-av/bin/savscan', 'options' => '-ss', ), ), 'aod' => array ( 'enable_aod' => true, ), 'aop' => array ( 'distribution_method' => 'roundRobin', 'case_closure_email_template_id' => '[[case_closure_email_template_id]]', 'joomla_account_creation_email_template_id' => '[[joomla_account_creation_email_template_id]]', 'case_creation_email_template_id' => '[[case_creation_email_template_id]]', 'contact_email_template_id' => '[[contact_email_template_id]]', 'user_email_template_id' => '[[user_email_template_id]]', ), 'aos' => array ( 'version' => '5.3.3', 'contracts' => array ( 'renewalReminderPeriod' => '14', ), 'lineItems' => array ( 'totalTax' => false, 'enableGroups' => true, ), 'invoices' => array ( 'initialNumber' => '1', ), 'quotes' => array ( 'initialNumber' => '1', ), ), 'cache_dir' => 'cache/', 'calculate_response_time' => true, 'calendar' => array ( 'default_view' => 'week', 'show_calls_by_default' => true, 'show_tasks_by_default' => true, 'show_completed_by_default' => true, 'editview_width' => 990, 'editview_height' => 485, 'day_timestep' => 15, 'week_timestep' => 30, 'items_draggable' => true, 'items_resizable' => true, 'enable_repeat' => true, 'max_repeat_count' => 1000, ), 'chartEngine' => 'Jit', 'common_ml_dir' => '', 'create_default_user' => false, 'cron' => array ( 'max_cron_jobs' => 10, 'max_cron_runtime' => 30, 'min_cron_interval' => 30, 'allowed_cron_users' => array ( 0 => '[[cron_user]]', ), ), 'dashlet_auto_refresh_min' => 30, 'dashlet_display_row_options' => array ( 0 => '1', 1 => '3', 2 => '5', 3 => '10', ), 'date_formats' => array ( 'Y-m-d' => '2010-12-23', 'm-d-Y' => '12-23-2010', 'd-m-Y' => '23-12-2010', 'Y/m/d' => '2010/12/23', 'm/d/Y' => '12/23/2010', 'd/m/Y' => '23/12/2010', 'Y.m.d' => '2010.12.23', 'd.m.Y' => '23.12.2010', 'm.d.Y' => '12.23.2010', ), 'datef' => 'm/d/Y', 'dbconfig' => array ( 'db_host_name' => '[[softdbhost]]', 'db_host_instance' => 'SQLEXPRESS', 'db_user_name' => '[[softdbuser]]', 'db_password' => '[[softdbpass]]', 'db_name' => '[[softdb]]', 'db_type' => 'mysql', 'db_port' => '', 'db_manager' => 'MysqliManager', 'collation' => 'utf8mb4_general_ci', 'charset' => 'utf8mb4', ), 'dbconfigoption' => array ( 'persistent' => true, 'autofree' => false, 'debug' => 0, 'ssl' => false, 'collation' => 'utf8mb4_general_ci', 'charset' => 'utf8mb4', ), 'default_action' => 'index', 'default_charset' => 'UTF-8', 'default_currency_iso4217' => 'USD', 'default_currency_name' => 'US Dollars', 'default_currency_significant_digits' => 2, 'default_currency_symbol' => '$', 'default_date_format' => 'm/d/Y', 'default_decimal_seperator' => '.', 'default_email_charset' => 'UTF-8', 'default_email_client' => 'sugar', 'default_email_editor' => 'html', 'default_export_charset' => 'UTF-8', 'default_language' => 'en_us', 'default_locale_name_format' => 's f l', 'default_max_tabs' => 10, 'default_module' => 'Home', 'default_module_favicon' => false, 'default_navigation_paradigm' => 'gm', 'default_number_grouping_seperator' => ',', 'default_password' => '', 'default_permissions' => array ( 'dir_mode' => [[set_odc]], 'file_mode' => [[set_ofc]], 'user' => '', 'group' => '', ), 'default_subpanel_links' => false, 'default_subpanel_tabs' => true, 'default_swap_last_viewed' => false, 'default_swap_shortcuts' => false, 'default_theme' => 'SuiteP', 'default_time_format' => 'h:ia', 'default_user_is_admin' => false, 'default_user_name' => '', 'demoData' => 'no', 'developerMode' => false, 'disable_convert_lead' => false, 'disable_export' => false, 'disable_persistent_connections' => false, 'display_email_template_variable_chooser' => false, 'display_inbound_email_buttons' => false, 'dump_slow_queries' => false, 'email_address_separator' => ',', 'email_confirm_opt_in_email_template_id' => '[[email_confirm_opt_in_email_template_id]]', 'email_default_client' => 'sugar', 'email_default_delete_attachments' => true, 'email_default_editor' => 'html', 'email_enable_auto_send_opt_in' => false, 'email_enable_confirm_opt_in' => 'not-opt-in', 'email_warning_notifications' => true, 'enable_action_menu' => true, 'enable_line_editing_detail' => true, 'enable_line_editing_list' => true, 'export_delimiter' => ',', 'export_excel_compatible' => false, 'filter_module_fields' => array ( 'Users' => array ( 0 => 'show_on_employees', 1 => 'portal_only', 2 => 'is_group', 3 => 'system_generated_password', 4 => 'external_auth_only', 5 => 'sugar_login', 6 => 'authenticate_id', 7 => 'pwd_last_changed', 8 => 'is_admin', 9 => 'user_name', 10 => 'user_hash', 11 => 'password', 12 => 'last_login', 13 => 'oauth_tokens', ), 'Employees' => array ( 0 => 'show_on_employees', 1 => 'portal_only', 2 => 'is_group', 3 => 'system_generated_password', 4 => 'external_auth_only', 5 => 'sugar_login', 6 => 'authenticate_id', 7 => 'pwd_last_changed', 8 => 'is_admin', 9 => 'user_name', 10 => 'user_hash', 11 => 'password', 12 => 'last_login', 13 => 'oauth_tokens', ), ), 'google_auth_json' => '', 'hide_subpanels' => true, 'history_max_viewed' => 50, 'host_name' => '[[domhost]]', 'id_validation_pattern' => '/^[a-zA-Z0-9_-]*$/i', 'imap_test' => false, 'import_max_execution_time' => 3600, 'import_max_records_per_file' => 100, 'import_max_records_total_limit' => '', 'installer_locked' => true, 'jobs' => array ( 'min_retry_interval' => 30, 'max_retries' => 5, 'timeout' => 86400, ), 'js_custom_version' => 1, 'js_lang_version' => 1, 'languages' => array ( 'en_us' => 'English (US)', ), 'large_scale_test' => false, 'lead_conv_activity_opt' => 'donothing', 'legacy_email_behaviour' => false, 'list_max_entries_per_page' => 20, 'list_max_entries_per_subpanel' => 10, 'lock_default_user_name' => false, 'lock_homepage' => false, 'lock_subpanels' => false, 'log_dir' => '.', 'log_file' => 'suitecrm.log', 'log_memory_usage' => false, 'logger' => array ( 'level' => 'fatal', 'file' => array ( 'ext' => '.log', 'name' => 'suitecrm', 'dateFormat' => '%c', 'maxSize' => '10MB', 'maxLogs' => 10, 'suffix' => '', ), ), 'login_language' => true, 'max_dashlets_homepage' => '15', 'name_formats' => array ( 's f l' => 's f l', 'f l' => 'f l', 's l' => 's l', 'l, s f' => 'l, s f', 'l, f' => 'l, f', 's l, f' => 's l, f', 'l s f' => 'l s f', 'l f s' => 'l f s', ), 'oauth2_encryption_key' => '[[oauth2_encryption_key]]', 'passwordsetting' => array ( 'SystemGeneratedPasswordON' => '', 'generatepasswordtmpl' => '[[generatepasswordtmpl]]', 'lostpasswordtmpl' => '[[lostpasswordtmpl]]', 'factoremailtmpl' => '[[factoremailtmpl]]', 'forgotpasswordON' => false, 'linkexpiration' => '1', 'linkexpirationtime' => '30', 'linkexpirationtype' => '1', 'systexpiration' => '1', 'systexpirationtime' => '7', 'systexpirationtype' => '1', 'systexpirationlogin' => '', ), 'pdf' => array ( 'defaultEngine' => 'TCPDFEngine', ), 'portal_view' => 'single_user', 'require_accounts' => true, 'resource_management' => array ( 'special_query_limit' => 50000, 'special_query_modules' => array ( 0 => 'AOR_Reports', 1 => 'Export', 2 => 'Import', 3 => 'Administration', 4 => 'Sync', ), 'default_limit' => 20000, ), 'rss_cache_time' => '10800', 'save_query' => 'all', 'search' => array ( 'controller' => 'UnifiedSearch', 'defaultEngine' => 'BasicSearchEngine', 'pagination' => array ( 'min' => 10, 'max' => 50, 'step' => 10, ), 'ElasticSearch' => array ( 'enabled' => false, 'host' => 'localhost', 'user' => '', 'pass' => '', 'index' => '[[es_index]]', 'search_wildcard_char' => '%', 'search_wildcard_infront' => true, ), ), 'search_wildcard_char' => '%', 'search_wildcard_infront' => false, 'securitysuite_additive' => true, 'securitysuite_filter_user_list' => false, 'securitysuite_inherit_assigned' => true, 'securitysuite_inherit_creator' => true, 'securitysuite_inherit_parent' => true, 'securitysuite_popup_select' => false, 'securitysuite_strict_rights' => false, 'securitysuite_user_popup' => true, 'securitysuite_user_role_precedence' => true, 'securitysuite_version' => '6.5.17', 'session_dir' => '', 'session_gc' => array ( 'enable' => true, 'gc_probability' => 1, 'gc_divisor' => 100, ), 'showDetailData' => true, 'showThemePicker' => true, 'site_url' => '[[softurl]]/', 'slow_query_time_msec' => '100', 'stackTrace' => false, 'stack_trace_errors' => false, 'strict_id_validation' => false, 'sugar_version' => '6.5.25', 'sugarbeet' => false, 'suitecrm_version' => '7.14.6', 'system_email_templates' => array ( 'confirm_opt_in_template_id' => '[[email_confirm_opt_in_email_template_id]]', ), 'time_formats' => array ( 'H:i' => '23:00', 'h:ia' => '11:00pm', 'h:iA' => '11:00PM', 'h:i a' => '11:00 pm', 'h:i A' => '11:00 PM', 'H.i' => '23.00', 'h.ia' => '11.00pm', 'h.iA' => '11.00PM', 'h.i a' => '11.00 pm', 'h.i A' => '11.00 PM', ), 'timef' => 'H:i', 'tmp_dir' => 'cache/xml/', 'tracker_max_display_length' => 15, 'translation_string_prefix' => false, 'trusted_hosts' => array ( ), 'unique_key' => '[[unique_key]]', 'upload_badext' => array ( 0 => 'php', 1 => 'php3', 2 => 'php4', 3 => 'php5', 4 => 'php6', 5 => 'php7', 6 => 'php8', 7 => 'pl', 8 => 'cgi', 9 => 'py', 10 => 'asp', 11 => 'cfm', 12 => 'js', 13 => 'vbs', 14 => 'html', 15 => 'htm', 16 => 'phtml', 17 => 'phar', ), 'upload_dir' => 'upload/', 'upload_maxsize' => 30000000, 'use_common_ml_dir' => false, 'use_real_names' => true, 'valid_image_ext' => array ( 0 => 'gif', 1 => 'png', 2 => 'jpg', 3 => 'jpeg', 4 => 'svg', 5 => 'bmp', ), 'valid_imap_ports' => array ( 0 => '110', 1 => '143', 2 => '993', 3 => '995', ), 'vcal_time' => '2', 'verify_client_ip' => true, 'web_to_lead_allowed_redirect_hosts' => array ( ), ); var/softaculous/moodle310/config.php 0000644 00000001351 15037712522 0013370 0 ustar 00 <?php // Moodle configuration file unset($CFG); global $CFG; $CFG = new stdClass(); $CFG->dbtype = '[[dbtype]]'; $CFG->dblibrary = 'native'; $CFG->dbhost = '[[softdbhost]]'; $CFG->dbname = '[[softdb]]'; $CFG->dbuser = '[[softdbuser]]'; $CFG->dbpass = '[[softdbpass]]'; $CFG->prefix = '[[dbprefix]]'; $CFG->dboptions = array ( 'dbpersist' => 0, 'dbport' => '', 'dbsocket' => '', 'dbcollation' => '[[collate]]', ); $CFG->wwwroot = '[[punycode_softurl]]'; $CFG->dataroot = '[[softdatadir]]'; $CFG->admin = 'admin'; $CFG->directorypermissions = 0777; require_once(__DIR__ . '/lib/setup.php'); // There is no php closing tag in this file, // it is intentional because it prevents trailing whitespace problems! var/softaculous/goffice67/config.php 0000644 00000000402 15037715264 0013446 0 ustar 00 <?php $config = array ( 'file_storage_path' => '[[softdatadir]]', 'tmpdir' => '[[softpath]]/tmp', 'db_host' => '[[softdbhost]]', 'db_name' => '[[softdb]]', 'db_user' => '[[softdbuser]]', 'db_pass' => '[[softdbpass]]', 'db_port' => '3306', ); var/softaculous/magento18/config.php 0000644 00000011222 15037716241 0013470 0 ustar 00 <?php return [ 'modules' => [ 'Magento_Store' => 1, 'Magento_AdvancedPricingImportExport' => 1, 'Magento_Directory' => 1, 'Magento_Theme' => 1, 'Magento_Cms' => 1, 'Magento_Eav' => 1, 'Magento_Customer' => 1, 'Magento_Config' => 1, 'Magento_Backup' => 1, 'Magento_AdminNotification' => 1, 'Magento_Indexer' => 1, 'Magento_BundleImportExport' => 1, 'Magento_CacheInvalidate' => 1, 'Magento_Catalog' => 1, 'Magento_Payment' => 1, 'Magento_Quote' => 1, 'Magento_Backend' => 1, 'Magento_CatalogImportExport' => 1, 'Magento_Rule' => 1, 'Magento_CatalogRule' => 1, 'Magento_Msrp' => 1, 'Magento_Search' => 1, 'Magento_CatalogUrlRewrite' => 1, 'Magento_Widget' => 1, 'Magento_SalesSequence' => 1, 'Magento_Sales' => 1, 'Magento_CatalogInventory' => 1, 'Magento_CmsUrlRewrite' => 1, 'Magento_Security' => 1, 'Magento_ConfigurableImportExport' => 1, 'Magento_Checkout' => 1, 'Magento_ConfigurableProduct' => 1, 'Magento_Contact' => 1, 'Magento_Cookie' => 1, 'Magento_Cron' => 1, 'Magento_CurrencySymbol' => 1, 'Magento_Captcha' => 1, 'Magento_User' => 1, 'Magento_CustomerImportExport' => 1, 'Magento_Deploy' => 1, 'Magento_Developer' => 1, 'Magento_Dhl' => 1, 'Magento_Authorization' => 1, 'Magento_Downloadable' => 1, 'Magento_ImportExport' => 1, 'Magento_CardinalCommerce' => 1, 'Magento_Email' => 1, 'Magento_EncryptionKey' => 1, 'Magento_Fedex' => 1, 'Magento_GiftMessage' => 1, 'Magento_GoogleAdwords' => 1, 'Magento_GoogleAnalytics' => 1, 'Magento_Ui' => 1, 'Magento_GroupedImportExport' => 1, 'Magento_GroupedProduct' => 1, 'Magento_DownloadableImportExport' => 1, 'Magento_Bundle' => 1, 'Magento_InstantPurchase' => 1, 'Magento_Integration' => 1, 'Magento_LayeredNavigation' => 1, 'Magento_Marketplace' => 1, 'Magento_MediaStorage' => 1, 'Magento_CatalogRuleConfigurable' => 1, 'Magento_Multishipping' => 1, 'Magento_NewRelicReporting' => 1, 'Magento_Newsletter' => 1, 'Magento_OfflinePayments' => 1, 'Magento_SalesRule' => 1, 'Magento_PageCache' => 1, 'Magento_Authorizenet' => 1, 'Magento_Vault' => 1, 'Magento_Paypal' => 1, 'Magento_PaypalCaptcha' => 1, 'Magento_Persistent' => 1, 'Magento_ProductAlert' => 1, 'Magento_ProductVideo' => 1, 'Magento_AuthorizenetAcceptjs' => 1, 'Magento_Analytics' => 1, 'Magento_ReleaseNotification' => 1, 'Magento_Reports' => 1, 'Magento_RequireJs' => 1, 'Magento_Review' => 1, 'Magento_ReviewAnalytics' => 1, 'Magento_Robots' => 1, 'Magento_Rss' => 1, 'Magento_AuthorizenetCardinal' => 1, 'Magento_CheckoutAgreements' => 1, 'Magento_SalesAnalytics' => 1, 'Magento_SalesInventory' => 1, 'Magento_OfflineShipping' => 1, 'Magento_Braintree' => 1, 'Magento_UrlRewrite' => 1, 'Magento_CatalogSearch' => 1, 'Magento_CustomerAnalytics' => 1, 'Magento_SendFriend' => 1, 'Magento_Shipping' => 1, 'Magento_Signifyd' => 1, 'Magento_Sitemap' => 1, 'Magento_ConfigurableProductSales' => 1, 'Magento_Webapi' => 1, 'Magento_SwaggerWebapi' => 1, 'Magento_Swatches' => 1, 'Magento_SwatchesLayeredNavigation' => 1, 'Magento_Tax' => 1, 'Magento_TaxImportExport' => 1, 'Magento_CatalogAnalytics' => 1, 'Magento_Translation' => 1, 'Magento_GoogleOptimizer' => 1, 'Magento_Ups' => 1, 'Magento_SampleData' => 1, 'Magento_QuoteAnalytics' => 1, 'Magento_Usps' => 1, 'Magento_Variable' => 1, 'MSP_ReCaptcha' => 1, 'Magento_Version' => 1, 'Magento_Swagger' => 1, 'Magento_WebapiSecurity' => 1, 'Magento_Weee' => 1, 'Magento_CatalogWidget' => 1, 'Magento_Wishlist' => 1, 'Magento_WishlistAnalytics' => 1, 'Amazon_Core' => 1, 'Amazon_Login' => 1, 'Amazon_Payment' => 1, 'Dotdigitalgroup_Email' => 1, 'Klarna_Core' => 1, 'Klarna_Ordermanagement' => 1, 'Klarna_Kp' => 1, 'Magento_PaypalReCaptcha' => 1, 'Temando_Shipping' => 1, 'Vertex_Tax' => 1, 'Vertex_AddressValidation' => 1 ] ]; var/softaculous/moodle43/config.php 0000644 00000001351 15040053070 0013301 0 ustar 00 <?php // Moodle configuration file unset($CFG); global $CFG; $CFG = new stdClass(); $CFG->dbtype = '[[dbtype]]'; $CFG->dblibrary = 'native'; $CFG->dbhost = '[[softdbhost]]'; $CFG->dbname = '[[softdb]]'; $CFG->dbuser = '[[softdbuser]]'; $CFG->dbpass = '[[softdbpass]]'; $CFG->prefix = '[[dbprefix]]'; $CFG->dboptions = array ( 'dbpersist' => 0, 'dbport' => '', 'dbsocket' => '', 'dbcollation' => '[[collate]]', ); $CFG->wwwroot = '[[punycode_softurl]]'; $CFG->dataroot = '[[softdatadir]]'; $CFG->admin = 'admin'; $CFG->directorypermissions = 0777; require_once(__DIR__ . '/lib/setup.php'); // There is no php closing tag in this file, // it is intentional because it prevents trailing whitespace problems!
Copyright ©2021 || Defacer Indonesia