Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../var/softacul.../yourls
File: config.php
<?php
[0] Fix | Delete
/* This is a sample config file.
[1] Fix | Delete
* Edit this file with your own settings and save it as "config.php"
[2] Fix | Delete
*
[3] Fix | Delete
* IMPORTANT: edit and save this file as plain ASCII text, using a text editor, for instance TextEdit on Mac OS or
[4] Fix | Delete
* Notepad on Windows. Make sure there is no character before the opening <?php at the beginning of this file.
[5] Fix | Delete
*/
[6] Fix | Delete
[7] Fix | Delete
/*
[8] Fix | Delete
** MySQL settings - You can get this info from your web host
[9] Fix | Delete
*/
[10] Fix | Delete
[11] Fix | Delete
/** MySQL database username */
[12] Fix | Delete
define( 'YOURLS_DB_USER', '[[softdbuser]]' );
[13] Fix | Delete
[14] Fix | Delete
/** MySQL database password */
[15] Fix | Delete
define( 'YOURLS_DB_PASS', '[[softdbpass]]' );
[16] Fix | Delete
[17] Fix | Delete
/** The name of the database for YOURLS
[18] Fix | Delete
** Use lower case letters [a-z], digits [0-9] and underscores [_] only */
[19] Fix | Delete
define( 'YOURLS_DB_NAME', '[[softdb]]' );
[20] Fix | Delete
[21] Fix | Delete
/** MySQL hostname.
[22] Fix | Delete
** If using a non standard port, specify it like 'hostname:port', e.g. 'localhost:9999' or '127.0.0.1:666' */
[23] Fix | Delete
define( 'YOURLS_DB_HOST', '[[softdbhost]]' );
[24] Fix | Delete
[25] Fix | Delete
/** MySQL tables prefix
[26] Fix | Delete
** YOURLS will create tables using this prefix (eg `yourls_url`, `yourls_options`, ...)
[27] Fix | Delete
** Use lower case letters [a-z], digits [0-9] and underscores [_] only */
[28] Fix | Delete
define( 'YOURLS_DB_PREFIX', '[[dbprefix]]' );
[29] Fix | Delete
[30] Fix | Delete
/*
[31] Fix | Delete
** Site options
[32] Fix | Delete
*/
[33] Fix | Delete
[34] Fix | Delete
/** YOURLS installation URL
[35] Fix | Delete
** All lowercase, no trailing slash at the end.
[36] Fix | Delete
** If you define it to "http://sho.rt", don't use "http://www.sho.rt" in your browser (and vice-versa)
[37] Fix | Delete
** To use an IDN domain (eg http://héhé.com), write its ascii form here (eg http://xn--hh-bjab.com) */
[38] Fix | Delete
define( 'YOURLS_SITE', '[[softurl]]' );
[39] Fix | Delete
[40] Fix | Delete
/** YOURLS language
[41] Fix | Delete
** Change this setting to use a translation file for your language, instead of the default English.
[42] Fix | Delete
** That translation file (a .mo file) must be installed in the user/language directory.
[43] Fix | Delete
** See http://yourls.org/translations for more information */
[44] Fix | Delete
define( 'YOURLS_LANG', '' );
[45] Fix | Delete
[46] Fix | Delete
/** Allow multiple short URLs for a same long URL
[47] Fix | Delete
** Set to true to have only one pair of shortURL/longURL (default YOURLS behavior)
[48] Fix | Delete
** Set to false to allow multiple short URLs pointing to the same long URL (bit.ly behavior) */
[49] Fix | Delete
define( 'YOURLS_UNIQUE_URLS', true );
[50] Fix | Delete
[51] Fix | Delete
/** Private means the Admin area will be protected with login/pass as defined below.
[52] Fix | Delete
** Set to false for public usage (eg on a restricted intranet or for test setups)
[53] Fix | Delete
** Read http://yourls.org/privatepublic for more details if you're unsure */
[54] Fix | Delete
define( 'YOURLS_PRIVATE', true );
[55] Fix | Delete
[56] Fix | Delete
/** A random secret hash used to encrypt cookies. You don't have to remember it, make it long and complicated
[57] Fix | Delete
** Hint: copy from http://yourls.org/cookie */
[58] Fix | Delete
define( 'YOURLS_COOKIEKEY', '[[cook_key]]' );
[59] Fix | Delete
[60] Fix | Delete
/** Username(s) and password(s) allowed to access the site. Passwords either in plain text or as encrypted hashes
[61] Fix | Delete
** YOURLS will auto encrypt plain text passwords in this file
[62] Fix | Delete
** Read http://yourls.org/userpassword for more information */
[63] Fix | Delete
$yourls_user_passwords = [
[64] Fix | Delete
'[[admin_username]]' => '[[admin_pass]]',
[65] Fix | Delete
// 'username2' => 'password2',
[66] Fix | Delete
// You can have one or more 'login'=>'password' lines
[67] Fix | Delete
];
[68] Fix | Delete
[69] Fix | Delete
/** URL shortening method: either 36 or 62
[70] Fix | Delete
** 36: generates all lowercase keywords (ie: 13jkm)
[71] Fix | Delete
** 62: generates mixed case keywords (ie: 13jKm or 13JKm)
[72] Fix | Delete
** For more information, see https://yourls.org/urlconvert */
[73] Fix | Delete
define( 'YOURLS_URL_CONVERT', 36 );
[74] Fix | Delete
[75] Fix | Delete
/** Debug mode to output some internal information
[76] Fix | Delete
** Default is false for live site. Enable when coding or before submitting a new issue */
[77] Fix | Delete
define( 'YOURLS_DEBUG', false );
[78] Fix | Delete
[79] Fix | Delete
/**
[80] Fix | Delete
* Reserved keywords (so that generated URLs won't match them)
[81] Fix | Delete
* Define here negative, unwanted or potentially misleading keywords.
[82] Fix | Delete
*/
[83] Fix | Delete
$yourls_reserved_URL = [
[84] Fix | Delete
'porn', 'faggot', 'sex', 'nigger', 'fuck', 'cunt', 'dick',
[85] Fix | Delete
];
[86] Fix | Delete
[87] Fix | Delete
/*
[88] Fix | Delete
** Personal settings would go after here.
[89] Fix | Delete
*/
[90] Fix | Delete
[91] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function