Advertisement
Guest User

Untitled

a guest
Apr 20th, 2017
625
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.93 KB | None | 0 0
  1. <?php
  2. class Config {
  3.     public $secret = "DFSJLFSDLJG";
  4.     public $sitename = "shopdvd.ru";
  5.     public $address = "http://shopdvd.ru/";
  6.     public $address_admin = "http://shopdvd.ru/admin/";
  7.     public $db_host = "localhost";
  8.     public $db_user = "root";
  9.     public $db_password = "";
  10.     public $db_name = "shopdvd-local";
  11.     public $db_prefix = "sdvd_";
  12.     public $sym_query = "{?}";
  13.    
  14.     public $admname = "Михаил Русаков";
  15.     public $admemail = "no-reply@myrusakov.ru";
  16.     public $adm_login = "Admin";
  17.     public $adm_password = "6deaff5c019acfc2800e7f83a1a7456f";
  18.    
  19.     public $count_on_page = 8;
  20.     public $count_others = 6;
  21.    
  22.     public $pagination_count = 10;
  23.    
  24.     public $dir_text = "lib/text/";
  25.     public $dir_tmpl = "tmpl/";
  26.     public $dir_tmpl_admin = "admin/tmpl/";
  27.     public $dir_img_products = "images/products/";
  28.    
  29.     public $max_name = 255;
  30.     public $max_title = 255;
  31.     public $max_text = 65535;
  32.    
  33.     public $max_size_img = 102400;
  34.    
  35. }
  36. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement