PHP Classes

File: config/config.sample.php

Recommend this page to a friend!
  Classes of Ganesh Kandu   Palette PHP CMS System   config/config.sample.php   Download  
File: config/config.sample.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Palette PHP CMS System
Manage content site edited visually in the browser
Author: By
Last change:
Date: 2 years ago
Size: 631 bytes
 

Contents

Class file image Download
<?php

/*
///////////////////////////////////////////////////
Palatte is a PHP Based Site Builder
Developed By : Ganesh Kandu
Contact Mail : kanduganesh@gmail.com
///////////////////////////////////////////////////
*/

define('DS', DIRECTORY_SEPARATOR);
define('SECRET','SECRET TO BE CHANGE');
define('URL','http://localhost/Palette');
define('PATH', getcwd());
define('VERSION', 'VERSION');
/*
    Change "LANG" value to Change language
    Note : Keep "DEFAULT" value for auto language selection
*/
define('LANG', 'DEFAULT');
define('MULTISITE',false);
$admin = array(
   
'admin'=> md5('admin')
);
define('ADMIN',serialize($admin));

?>