Platon Technologies
not logged in Login Registration
EnglishSlovak
open source software development celebrating 10 years of open source development! Tuesday, April 16, 2024

File: [Platon] / mylist / mylist.config.php (download)

Revision 1.2, Fri Mar 25 23:35:19 2005 UTC (19 years ago) by nepto

Changes since 1.1: +4 -1 lines

Added $Platon$ tag into the header

<?php

    // $Platon$

    // data source name and options for PHP PEAR DB
    $db_user    = "mylist";
    $db_password = "mailinglist";
    $db_hostname = "localhost";
    $db_name = "mylist";
    $db_type = "mysql";
    
    $dsn = "$db_type://$db_user:$db_password@$db_hostname/$db_name";
    $options = array (
        'debug' => 2,
        'portability' => DB_PORTABILITY_ALL
        );

    // email domains (suffixes of accepted mailing lists);
    $email_domains = Array("lists.platon.sk", "mylist.platon.sk", "platon.sk");
    
    
    // local table and column names of specific tables
    // db (database), tb (table), cl(column)
    
    // TABLE OF ALL LOCAL USERS
    $db_users = "";
    $tb_users = "users";
    $cl_users_id = "id";
    $cl_users_username = "name";
    $cl_users_email = "reg_email";
    
    
    // TABLE OF ALL LOCAL PROJECTS
    $db_projects = "";
    $tb_projects = "projects";
    $cl_projects_id = "id";
    $cl_projects_name = "name";
    
    
    // LOCAL SIGN-IN FILE
    $fl_sign_in = "sign-in.php";    // e.g. sign-in.php
    
?>

Platon Group <platon@platon.org> http://platon.org/
Copyright © 2002-2006 Platon Group
Site powered by Metafox CMS
Go to Top