Login   Register  
PHP Classes
elePHPant
Icontem

File: config.inc.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Dmitry Sheiko  >  Multi-User Tag Cloud  >  config.inc.php  >  Download  
File: config.inc.php
Role: Configuration script
Content type: text/plain
Description: configuration script
Class: Multi-User Tag Cloud
Manage clouds of tags added by multiple users
Author: By
Last change:
Date: 2007-01-26 03:54
Size: 941 bytes
 

Contents

Class file image Download
<?PHP
/*
* Tag Cloud
*
* @package Tag Cloud
* @author $Author: sheiko $  
* @version $Id: config.inc.php, v 1.0 sheiko Exp $ 
* @since v.1.0 
* @copyright (c) Dmitry Sheiko http://www.cmsdevelopment.com 
*/  

// DB connection data
$dbconnect = array(
            
"host"=>"127.0.0.1",
            
"user"=>"root",
            
"password"=>"",
            
"dbname"=>"tagcloud",
            
"dbversion"=>4,
            ); 


define("DEFAULT_LANGUAGE","en");
define("DEFAULT_CHARSET","UTF-8");

// Data of blog users 
// Example of user data: login:test/password:test 
$users_db_dump = array(
    
"test" => array("password"=>"098f6bcd4621d373cade4e832627b4f6""rssurl"=>"http://dsheiko.livejournal.com/data/rss" ),
    
"redgraphic" => array("password"=>"4c1a112a5a72d8691d8976624ae80a5d""rssurl"=>"http://blog.redgraphic.ru/rss/sheiko.xml" ),
    );

// Number of blog's post title per page
define("LINENUMBER",10);
// Name of the user, whose tag clouds is shown by tagcloud.php
define("USERID","test");
?>