<?php
/*======================================================================*\
|| #################################################################### ||
|| # vbulletin 3.7.2  
|| # ---------------------------------------------------------------- # ||
|| # all php code in this file is ©2000-2008 jelsoft enterprises ltd. # ||
|| # this file may not be redistributed in whole or significant part. # ||
|| # ---------------- vbulletin is not free software ---------------- # ||
|| # 
http://www.vbulletin.com | 
http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/
/*-------------------------------------------------------*\
| ****** note regarding the variables in this file ****** |
+---------------------------------------------------------+
| if you get any errors while attempting to connect to    |
| mysql, you will need to email your webhost because we   |
| cannot tell you the correct values for the variables    |
| in this file.                                           |
\*-------------------------------------------------------*/
 // ****** database type ******
 // this is the type of the database server on which your vbulletin database will be located.
 // valid options are mysql and mysqli, for slave support add _slave.  Try to use mysqli if you are using php 5 and mysql 4.1+
 // for slave options just append _slave to your preferred database type.
$config['database']['dbtype'] = 'mysql';
 // ****** database name ******
 // this is the name of the database where your vbulletin will be located.
 // this must be created by your webhost.
$config['database']['dbname'] = 'mowda_vb';
 // ****** table prefix ******
 // prefix that your vbulletin tables have in the database.
$config['database']['tableprefix'] = '';
 // ****** technical email address ******
 // if any database errors occur, they will be emailed to the address specified here.
 // leave this blank to not send any emails when there is a database error.
$config['database']['technicalemail'] = 
'i3u@hotmail.com';
 // ****** force empty sql mode ******
 // new versions of mysql (4.1+) have introduced some behaviors that are
 // incompatible with vbulletin. Setting this value to "true" disables those
 // behaviors. You only need to modify this value if vbulletin recommends it.
$config['database']['force_sql_mode'] = false;
 
 // ****** master database server name and port ******
 // this is the hostname or ip address and port of the database server.
 // if you are unsure of what to put here, leave the default values.
$config['masterserver']['servername'] = 'localhost';
$config['masterserver']['port'] = 3306;
 // ****** master database username & password ******
 // this is the username and password you use to access mysql.
 // these must be obtained through your webhost.
$config['masterserver']['username'] = 'mowda_vb';
$config['masterserver']['password'] = '00965';
 // ****** master database persistent connections ******
 // this option allows you to turn persistent connections to mysql on or off.
 // the difference in performance is negligible for all but the largest boards.
 // if you are unsure what this should be, leave it off. (0 = off; 1 = on)
$config['masterserver']['usepconnect'] = 0;
 
 // ****** slave database configuration ******
 // if you have multiple database backends, this is the information for your slave
 // server. If you are not 100% sure you need to fill in this information,
 // do not change any of the values here.
$config['slaveserver']['servername'] = '';
$config['slaveserver']['port'] = 3306;
$config['slaveserver']['username'] = '';
$config['slaveserver']['password'] = '';
$config['slaveserver']['usepconnect'] = 0;
 
 // ****** path to admin & moderator control panels ******
 // this setting allows you to change the name of the folders that the admin and
 // moderator control panels reside in. You may wish to do this for security purposes.
 // please note that if you change the name of the directory here, you will still need
 // to manually change the name of the directory on the server.
$config['misc']['admincpdir'] = 'adminmowdaacp';
$config['misc']['modcpdir'] = 'modmowdaacp';
 // prefix that all vbulletin cookies will have
 // keep this short and only use numbers and letters, i.e. 1-9 and a-z
$config['misc']['cookieprefix'] = 'aa';
 // ******** full path to forums directory ******
 // on a few systems it may be necessary to input the full path to your forums directory
 // for vbulletin to function normally. You can ignore this setting unless vbulletin
 // tells you to fill this in. Do not include a trailing slash!
 // example unix:
 //   $config['misc']['forumpath'] = '/home/users/public_html/forums';
 // example win32:
 //   $config['misc']['forumpath'] = 'c:\program files\apache group\apache\htdocs\vb3';
$config['misc']['forumpath'] = '';
 // ****** cookie security hash ******
 // this option allows you to encode cookie.
 // you may use any latin and/or any other alphanumeric symbols.
 // leave this blank to use the default value.
 // note: If you change this all users will be logout.
$config['misc']['cookie_security_hash'] = ''; 
 // ****** users with admin log viewing permissions ******
 // the users specified here will be allowed to view the admin log in the control panel.
 // users must be specified by *id number* here. To obtain a user's id number,
 // view their profile via the control panel. If this is a new installation, leave
 // the first user created will have a user id of 1. Seperate each userid with a comma.
$config['specialusers']['canviewadminlog'] = '1';
 // ****** users with admin log pruning permissions ******
 // the users specified here will be allowed to remove ("prune") entries from the admin
 // log. See the above entry for more information on the format.
$config['specialusers']['canpruneadminlog'] = '1';
 // ****** users with query running permissions ******
 // the users specified here will be allowed to run queries from the control panel.
 // see the above entries for more information on the format.
 // please note that the ability to run queries is quite powerful. You may wish
 // to remove all user ids from this list for security reasons.
$config['specialusers']['canrunqueries'] = '';
 // ****** undeletable / unalterable users ******
 // the users specified here will not be deletable or alterable from the control panel by any users.
 // to specify more than one user, separate userids with commas.
$config['specialusers']['undeletableusers'] = '';
 // ****** super administrators ******
 // the users specified below will have permission to access the administrator permissions
 // page, which controls the permissions of other administrators
$config['specialusers']['superadministrators'] = '1';
 // ****** datastore cache configuration *****
 // here you can configure different methods for caching datastore items.
 // vb_datastore_filecache  - to use includes/datastore/datastore_cache.php
 // vb_datastore_apc - to use apc
 // vb_datastore_xcache - to use xcache
 // vb_datastore_memcached - to use a memcache server, more configuration below
// $config['datastore']['class'] = 'vb_datastore_filecache';
 // ******** datastore prefix ******
 // if you are using a php caching system (apc, xcache, eaccelerator) with more
 // than one set of forums installed on your host, you *may* need to use a prefix
 // so that they do not try to use the same variable within the cache.
 // this works in a similar manner to the database table prefix.
// $config['datastore']['prefix'] = '';
 // it is also necessary to specify the hostname or ip address and the port the server is listening on
/*
$config['datastore']['class'] = 'vb_datastore_memcached';
$i = 0;
// first server
$i++;
$config['misc']['memcacheserver'][$i]  = '127.0.0.1';
$config['misc']['memcacheport'][$i]   = 11211;
$config['misc']['memcachepersistent'][$i] = true;
$config['misc']['memcacheweight'][$i]  = 1;
$config['misc']['memcachetimeout'][$i]  = 1;
$config['misc']['memcacheretry_interval'][$i] = 15;
*/
// ****** the following options are only needed in special cases ******
 // ****** mysqli options *****
 // when using mysql 4.1+, mysqli should be used to connect to the database.
 // if you need to set the default connection charset because your database
 // is using a charset other than latin1, you can set the charset here.
 // if you don't set the charset to be the same as your database, you
 // may receive collation errors.  Ignore this setting unless you
 // are sure you need to use it.
// $config['mysqli']['charset'] = 'utf8';
 // optionally, php can be instructed to set connection parameters by reading from the
 // file named in 'ini_file'. Please use a full path to the file.
 // example:
 // $config['mysqli']['ini_file'] = 'c:\program files\mysql\mysql server 4.1\my.ini';
$config['mysqli']['ini_file'] = '';
// image processing options
 // images that exceed either dimension below will not be resized by vbulletin. If you need to resize larger images, alter these settings.
$config['misc']['maxwidth'] = 2592;
$config['misc']['maxheight'] = 1944;
/*======================================================================*\
|| ####################################################################
|| # cvs: $rcsfile$ - $revision: 26534 $
|| ####################################################################
\*======================================================================*/