Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.154
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
videodb /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2017-07-04 10:30
php53
[ DIR ]
drwxr-xr-x
2017-07-04 10:30
php56
[ DIR ]
drwxr-xr-x
2017-07-04 10:30
config.inc.php
3.81
KB
-rw-r--r--
2013-04-26 08:38
edit.php
4.91
KB
-rw-r--r--
2017-01-10 09:13
edit.xml
433
B
-rw-r--r--
2016-01-25 02:18
fileindex.php
363
B
-rw-r--r--
2012-02-23 10:16
import.php
3.33
KB
-rw-r--r--
2017-01-10 09:13
info.xml
1.92
KB
-rw-r--r--
2017-01-10 07:31
install.js
921
B
-rw-r--r--
2013-04-26 08:38
install.php
4.45
KB
-rw-r--r--
2017-01-10 09:13
install.xml
831
B
-rw-r--r--
2011-07-01 05:58
md5
5.03
KB
-rw-r--r--
2017-01-10 09:13
notes.txt
128
B
-rw-r--r--
2013-04-26 08:38
upgrade.php
3.09
KB
-rw-r--r--
2017-01-10 09:13
upgrade.xml
298
B
-rw-r--r--
2013-04-26 08:38
Save
Rename
<?php /** * Global config file * * Sets database connection Strings and debug option * * @package Setup * @author Andreas Gohr <a.gohr@web.de> * @author Andreas Goetz <cpuidle@gmx.de> * @version $Id: config.sample.php,v 1.10 2012/06/14 17:17:36 andig2 Exp $ */ /* Database configuration */ $config['db_server'] = '[[softdbhost]]'; // database server $config['db_user'] = '[[softdbuser]]'; // DB user for connection $config['db_password'] = '[[softdbpass]]'; // password for above user $config['db_database'] = '[[softdb]]'; // Database name $config['db_prefix'] = '[[dbprefix]]'; // Database table prefix (for use in hosting environments) $config['offline'] = 0; // Use to take videoDB offline /* Debug options */ $config['debug'] = 0; // Usually leave this at 0 $config['httpclientlog'] = 0; // HttpClient logging (debug only) /* Cache configuration */ $config['IMDBage'] = 3600*24*7; // Maximum cache age in seconds $config['hierarchical'] = 1; // Set to 1 to enable hierarchical cache folders (if existing!) $config['cache_pruning'] = 1; // Set to 1 to enable automatical cleanup of cache folders /* Defaults for external data lookup */ $config['lookupdefault_edit'] = 0; // 0=ignore, 1=lookup, 2=overwrite $config['lookupdefault_new'] = 2; // 0=ignore, 1=lookup, 2=overwrite /* * Amount of digits which are automatically generated as DiskID * if "Automatic DiskID" is enabled in the configuration tab */ $config['diskid_digits'] = 4; /* XML Import/Export */ $config['xml'] = 0; // Set to 1 to enable XML data im/export - import requires php5 /* RSS Feed */ $config['rss'] = 1; // Set to 1 to enable RSS Feed /* * Thumbnail configuration * * If you're running videodb over a low bandwidth connection with many users or want to enhance * image quality by applying smooth scaling, use the following settings to control the behavior. * * Define when thumbnails are created and which jpeg quality to use: */ define('TUMB_NO_SCALE', -1); // no scaling - use of thumbnails is disabled define('TUMB_REDUCE_ONLY', 0); // reduce only - create thumbnails when requested image dimensions are smaller than original image define('TUMB_SCALE', 1); // always scale - create thumbnails for all images (applies aliasing when scaling) // or define a positive integer to check filesize - thumbnail is created when existing file is bigger than specified value $config['thumbnail_level'] = TUMB_SCALE; $config['thumbnail_quality'] = 80; /* * To enable PDF export you can uncomment the following line and edit * the settings in pdf.inc.php. * The required FPDF library is bundled in the lib/fpdf folder. */ require_once 'pdf.inc.php'; /* * To enable XLS export you can uncomment the following line and edit * the settings in xls.inc.php. This option requires the additional installation * of "Spreadsheet OLE" and "Spreadsheet Excel Writer". They have to be accessible * from the "include_path" which is set inside "php.ini". * * In the Apache Distribution XAMPP it is included by default. * On gentoo linux systems you can easily add it by typing * emerge dev-php/PEAR-Spreadsheet_Excel_Writer * * Official Website: * http://pear.php.net/package/Spreadsheet_Excel_Writer/ */ // require_once 'xls.inc.php'; /* * To get access to FSK18 rated movies in the german dvdb engine you * have to enter your dvdb user id and password. If you don't have a * user you can go to http://www.dvdb.de and click on 'Neu registrieren'. * Don't forget to enter the identification card id to get FSK18 access! */ $config['dvdb_user'] = ''; $config['dvdb_password'] = ''; ?>