\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: /var/softaculous/phpbook/

Viewing File: config.php

<?php
#################################################################################################
#
#  project           	 : phpBook
#  filename          	 : config.php
#  version           	 : 2.1.0
#  last modified by    : John Bell
#  modify date         : 2006/04/17
#  e-mail            	 : info@smartisoft.com
#  purpose           	 : Configuration File
#
#################################################################################################

// MySql Configuration
$cfg_server   = "[[softdbhost]]";  // Your MySQL Server, most cases "localhost"
$cfg_database = "[[softdb]]";    // Your MySQL Database Name
$cfg_db_user  = "[[softdbuser]]"; // Your MySQL Username
$cfg_db_pass  = "[[softdbpass]]"; // Your MySQL Password

// GB Parameters
$cfg_sitekey        = "[[cfg_sitekey]]"; // Security Key for the image confirmation. DO CHANGE it to whatever you want, as long as you want. Just don't use quotes.
$cfg_adminpass      = "[[admin_pass]]";                      // Password for guestbook administration. CHANGE IT!!!
$cfg_gb_title       = "[[site_name]]";                      // Guestbook page title. Should be no-nonsense descriptive, using more than 60 characters is NOT recommended.
$cfg_gb_head        = "[[site_name]]";                      // Guestbook Header (Name).
$cfg_gb_desc        = "[[site_desc]]";    // Enter your description of the guestbook here.
$cfg_start_url      = "[[softurl]]";     // Absolute guestbook location URL with NO trailing slashes
$cfg_notify_address = "[[admin_email]]";           // Send entry notification to this address when a user adds a guestbook entry, leaving it empty will disable notify.
$cfg_gb_style       = "grayblue.css";                   // Specify the style sheet to use for the guestbook. Available files are: "grayblue.css" and "darkred.css".
$cfg_doctype        = "";                               // Set to "frames" if you plan to add the guestbook to a html frames based site (shame on you if you do ;) ).
$cfg_link_target    = "";                               // Enter e.g. "_blank" to open non-guetsbook related link URL's in a new browser window (NOT XHTML COMPLIANT!!!).

$cfg_censor         = true;  // Censor message based on the bad words list.
$cfg_ask_im_info    = true;  // Ask for Instant Messaging info (Jabber, ICQ, MSN, AIM and Yahoo) on post entry, set to false will also deactive IM icon display.
$cfg_visual_confirm = true;  // Ask for a visual confirmation when posting to reduce the amount of spam.
$cfg_location_text  = false; // If set to false you get a country location dropdown instead of a text input field (see $cfg_locations seeting).
$cfg_show_sysinfo   = false; // Show the system information on every bottom page, ask yourself the follwoing: do users realy need to know this kind of info?
$cfg_ask_http				= false; // Ask for the homepage
$cfg_allow_url			= false; // Allow [url tags in message

$cfg_language  = "english.php";   // For e.g. German enter german.php (see languages sub-dir for supported file names)
$cfg_locations = "worldlong.inc"; // For e.g. Europe enter europe.inc (see locations sub-dir for supported file names)
$cfg_lang_dir  = "languages";			// Language Directory, no trailing slashes
$cfg_loc_dir   = "locations";     // Locations Directory, no trailing slashes
$cfg_image_dir = "images";        // Image Directory, no trailing slashes

$cfg_msg_limit    = array(5 ,1000); // Message Limits (min,max).
$cfg_time_limit   = "30";           // Submit timeout in minutes for flood protection, disabled if "".
$cfg_page_entries = "6";            // How many entries per page do you want to see?
$cfg_entry_pages  = "11";           // How many Page Breaks per page, should be like 5,7,9,11,13
$cfg_table_width  = "600";          // Guestbook table width, enter value in pix (e.g. "600") or in % (e.g. "80%")
$cfg_table_align  = "center";       // To e.g. allign the guestbook table to the center of the page enter "center"
$cfg_date_format  = "eu";           // For european Date & Time Format enter "eu"
$cfg_supportpwd   = "2support";     // pwd for support-info, paranoid-setting is ""


#################################################################################################
#  End Configuration
#################################################################################################

//SOFTACULOUS EDITS
// Emulate register_globals on
if (!ini_get('register_globals')) {
    $superglobals = array($_SERVER, $_ENV,
        $_FILES, $_COOKIE, $_POST, $_GET);
    if (isset($_SESSION)) {
        array_unshift($superglobals, $_SESSION);
    }
    foreach ($superglobals as $superglobal) {
        extract($superglobal, EXTR_SKIP);
    }
}

?>