jfdelrio 16 years ago
parent
commit
a4e0e35cfb
1 changed files with 21 additions and 0 deletions
  1. 21 0
      config.php

+ 21 - 0
config.php View File

@@ -0,0 +1,21 @@
1
+<?php
2
+if(!defined('entry') || !entry) die('Not a valid page'); 
3
+/* ===========================
4
+
5
+  gelato CMS - A PHP based tumblelog CMS
6
+  development version
7
+  http://www.gelatocms.com/
8
+
9
+  gelato CMS is a free software licensed under the GPL 2.0
10
+  Copyright (C) 2007 by Pedro Santana <pecesama at gmail dot com>
11
+
12
+  =========================== */
13
+
14
+define('DB_Server', 'localhost');
15
+define('DB_name', 'gelato');
16
+define('DB_User', 'maese');
17
+define('DB_Password', 'copito'); 
18
+define('Table_prefix', 'gel_');
19
+define('Absolute_Path', dirname(__FILE__).DIRECTORY_SEPARATOR);
20
+
21
+?>