36 lines
1.3 KiB
PHP
36 lines
1.3 KiB
PHP
<?php
|
|
/* ===========================
|
|
|
|
gelato CMS - A PHP based tumblelog CMS
|
|
development version
|
|
http://www.gelatocms.com/
|
|
|
|
gelato CMS is a free software licensed under GPL (General public license)
|
|
|
|
=========================== */
|
|
?>
|
|
<?php
|
|
// MySql configuration
|
|
define('DB_Server', 'localhost'); // Set the MySQL hostname (generally "localhost")
|
|
define('DB_name', 'gelato'); // Set the MySQL database gelato should use
|
|
define('DB_User', 'root'); // Set the MySQL username
|
|
define('DB_Password', 'pass'); // Set the MySQL password
|
|
define('Table_prefix', 'gel_'); // Set the MySQL tables prefixes
|
|
|
|
/* Do not edit below this line */
|
|
|
|
define('Absolute_Path', dirname(__FILE__).DIRECTORY_SEPARATOR);
|
|
|
|
session_start();
|
|
header("Expires: Mon, 26 Jul 1957 05:00:00 GMT");
|
|
header("Last-Modified: " . gmdate("D, d M Y H:i:s ") . " GMT");
|
|
header("Cache-Control: no-store, no-cache, must-revalidate");
|
|
header("Cache-Control: post-check=0, pre-check=0", false);
|
|
header("Pragma: no-cache");
|
|
require_once(Absolute_Path."classes".DIRECTORY_SEPARATOR."mysql_connection.class.php");
|
|
|
|
require_once(dirname(__FILE__).'/classes/streams.php');
|
|
require_once(dirname(__FILE__).'/classes/gettext.php');
|
|
require_once(dirname(__FILE__)."/classes/lang.php");
|
|
initIdioma('en');
|
|
?>
|