Facebook
From Silly Macaque, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 182
  1. <?php
  2. return array(
  3.  
  4.         //Project Variables
  5.     "project"  => array(
  6.         "cookiePath"        => "./app/Cookies/",
  7.         "licenseKey"        => "4f53743e324b5b3b21b058baecb46bf37bd9888e",
  8.         "cronJobToken"      => "goodlike_V21",
  9.         "onlyHttps"         => FALSE,
  10.         "adminPrefix"       => "/admin",
  11.         "resellerPrefix"    => "/bayi",
  12.         "memberLoginPrefix" => "/member",
  13.         "siteID"                        => "999999999"
  14.     ),
  15.  
  16.         //App Variables
  17.     "app"      => array(
  18.         "theme"                 => "default",
  19.         "layout"                => "layout/default",
  20.         "language"              => "en",
  21.         "base_url"              => NULL,
  22.         "handle_errors"         => TRUE,
  23.         "log_errors"            => FALSE,
  24.         "router_case_sensitive" => TRUE
  25.     ),
  26.  
  27.  
  28.         //Database Variables
  29.     "database" => array(
  30.         "DefaultConnection" => array(
  31.                 //mysql, sqlsrv, pgsql are tested connections and work perfect.
  32.             "driver"   => "mysql",
  33.             "host"     => "localhost",
  34.             "port"     => "3306",
  35.             "name"     => "crmwebta_ins",
  36.             "user"     => "crmwebta",
  37.             "password" => "2rA409uvYt"
  38.         )
  39.     )
  40. )
  41.  
  42. ?>