\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/crafty/

Viewing File: config.php

<?php
//===========================================================================
//* --    ~~                CRAFTY SYNTAX Live Help                ~~    -- *
//===========================================================================
//           URL:   https://lupopedia.com/    EMAIL: salessyntax@gmail.com
//         Copyright (C) 2003-2016 Eric Gerdes   (https://lupopedia.com )
// ----------------------------------------------------------------------------
// Please check https://lupopedia.com/ or REGISTER your program for updates
// --------------------------------------------------------------------------
// NOTICE: Do NOT remove the copyright and/or license information any files. 
//         doing so will automatically terminate your rights to use program.
//         If you change the program you MUST clause your changes and note
//         that the original program is CRAFTY SYNTAX Live help or you will 
//         also be terminating your rights to use program and any segment 
//         of it.        
// --------------------------------------------------------------------------
// LICENSE:
//     This program is free software; you can redistribute it and/or
//     modify it under the terms of the GNU General Public License
//     as published by the Free Software Foundation; 
//     This program is distributed in the hope that it will be useful,
//     but WITHOUT ANY WARRANTY; without even the implied warranty of
//     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//     GNU General Public License for more details.
//
//     You should have received a copy of the GNU General Public License
//     along with this program in a file named LICENSE.txt .
//===========================================================================

// set this to true if false you will be re-directed to the setup page
$installed=true;  

if(empty($_SERVER)){ $_SERVER = $HTTP_SERVER_VARS; }

// if this program has not been installed and this is not the setup.php
// re-direct to that page to setup database..
if( ($installed == false) && (!preg_match("/setup.php/", $_SERVER['PHP_SELF'])) ){ 
 header("Location: setup.php",TRUE,307);
 exit;
}

// if this file has insecure permissions:
if($installed==true){
 $perm = @stat("config.php");
 if(!(empty($perm[2]))){
  if( ($perm[2] == "33279") || ($perm[2] == "33278") || ($perm[2] == "33270")  ){
  	@chmod("config.php", 0755);
  	$perm = @stat("config.php");
    if(!(empty($perm[2]))){
      if( ($perm[2] == "33279") || ($perm[2] == "33278") || ($perm[2] == "33270")  ){
  	      print "<font color=990000>You must secure this program. Insecure permissions on config.php</font>";
  	      print "<br>While installing CSLH you might of needed to change the permissions of config.php so ";
  	      print "that it is writable by the web server. config.php no longer needs to be written to so ";
  	      print " please chmod config.php to not have write permissions for everyone. you can do this by";
  	      print " UNCHECKING the box that reads write permissions for the file:";
          print "<br><br><img src=directions2.gif>";    
          exit;
       }
     }
    }      
  }
 } 
 
 // dbtype either is either:
 // mysql       - this is for Mysql support
 // txt-db-api  - txt database support. 
 $dbtype = 'mysql';

 //database connections for MYSQL 
 $server = '[[softdbhost]]';
 $database = '[[softdb]]';
 $datausername = '[[softdbuser]]';
 $password = '[[softdbpass]]';

 // change this to the full SERVER path to your files 
 // on the server .. not the HTTP PATH.. for example enter in
 // $application_root = "/usr/local/apache/htdocs/livehelp/"
 // not /livehelp/
 // keep ending slash.
 // WINDOWS would look something like:
 // $application_root = "D:\\virtual www customers\\craftysyntax\\livehelp_1_6\\";
 $application_root = '[[softpath]]/';

 // if using txt-db-api need the path to the txt databases directory
 $DB_DIR = '[[softpath]]/txt-database/';
 // if using txt-db-api need to have the full path to the txt-db-api
 // you must set this property to something like /home/website/livehelp/txt-db-api/ 
 $API_HOME_DIR = '[[softpath]]/' . 'txt-db-api/';
 
	

?>