• Main Page
  • Related Pages
  • Classes
  • Files
  • Directories
  • File List
  • File Members

config.inc.php

Go to the documentation of this file.
00001 <?php
00002 
00004         $this->dbHost = '<dbHost_ce>'; // database host name
00005         $this->dbName = '<dbName_ce>'; // database name
00006         $this->dbUser = '<dbUser_ce>'; // database user name
00007         $this->dbPwd  = '<dbPwd_ce>'; // database user password
00008         $this->dbType = 'mysql';
00009         $this->sShopURL     = '<sShopURL_ce>'; // eShop base url, required
00010         $this->sSSLShopURL  = null;            // eShop SSL url, optional
00011         $this->sAdminSSLURL = null;            // eShop Admin SSL url, optional
00012         $this->sShopDir     = '<sShopDir_ce>';
00013         $this->sCompileDir  = '<sCompileDir_ce>';
00014 
00015     // UTF-8 mode in shop 0 - off, 1 - on
00016     $this->iUtfMode  = '<iUtfMode>';
00017 
00018     // File type whitelist for file upload
00019     $this->aAllowedUploadTypes = array('jpg', 'gif', 'png', 'pdf', 'mp3', 'avi', 'mpg', 'mpeg', 'doc', 'xls', 'ppt');
00020 
00021     // timezone information
00022     date_default_timezone_set('Europe/Berlin');
00023 
00024     // Search engine friendly URL processor
00025     // After changing this value, you should rename oxid.php file as well
00026     // Always leave .php extension here unless you know what you are doing
00027     $this->sOXIDPHP = "oxid.php";
00028 
00029     //  enable debug mode for template development or bugfixing
00030     // -1 = Logger Messages internal use only
00031     //  0 = off
00032     //  1 = smarty
00033     //  2 = SQL
00034     //  3 = SQL + smarty
00035     //  4 = SQL + smarty + shoptemplate data
00036     //  5 = Delivery Cost calculation info
00037     //  6 = SMTP Debug Messages
00038     //  7 = oxDbDebug SQL parser
00039     $this->iDebug = 0;
00040 
00041     // Log all modifications performed in Admin
00042     $this->blLogChangesInAdmin = false;
00043 
00044     // Force admin email
00045     $this->sAdminEmail = '';
00046 
00047     // in case session must be started on first user page visit (not only on
00048     // session required action) set this option value 1
00049     $this->blForceSessionStart = false;
00050 
00051     // Use browser cookies to store session id (no sid parameter in URL)
00052     $this->blSessionUseCookies = true;
00053 
00054     // The domain that the cookie is available: array( _SHOP_ID_ => _DOMAIN_ );
00055     // check setcookie() documentation for more details @php.net
00056     $this->aCookieDomains = null;
00057 
00058     // The path on the server in which the cookie will be available on: array( _SHOP_ID_ => _PATH_ );
00059     // check setcookie() documentation for more details @php.net
00060     $this->aCookiePaths = null;
00061 
00062     // uncomment the following line if you want to leave euro sign unchanged in output
00063     // by default is set to convert euro sign symbol to html entity
00064     // $this->blSkipEuroReplace = true;
00065 
00066 
00067     // List of all Search-Engine Robots
00068     $this->aRobots = array(
00069                         'googlebot',
00070                         'ultraseek',
00071                         'crawl',
00072                         'spider',
00073                         'fireball',
00074                         'robot',
00075                         'slurp',
00076                         'fast',
00077                         'altavista',
00078                         'teoma',
00079                         'msnbot',
00080                         'bingbot',
00081                         'yandex',
00082                         'gigabot',
00083                         'scrubby'
00084                         );
00085 
00086     // Deactivate Static URL's for these Robots
00087     $this->aRobotsExcept = array();
00088 
00089     // IP addresses for which session/cookie id match and user agent change checks are off
00090     $this->aTrustedIPs = array();
00091 
00103     $this->iBasketReservationCleanPerRequest = 200;
00104 
00105     // Trusted shops buyer protection wsdl url
00106     $this->sTsProtectionUrl = "https://protection.trustedshops.com/ts/protectionservices/ApplicationRequestService?wsdl";
00107     // This is only needed for testing during integration
00108     $this->sTsTestProtectionUrl = "https://protection-qa.trustedshops.com/ts/protectionservices/ApplicationRequestService?wsdl";
00109 
00110     // Trusted Shops Ratings login info
00111     // Do not change credentials unless instructed otherwise by Trusted Shops!
00112     $this->sTsUser = "oxid_esales";
00113     $this->sTsPass = "V1AoGEXm";
00114 
00115     // Trusted Shops Ratings configuration array
00116     $this->aTsConfig = array( "blTestMode"   => false, // set TRUE to enable testing mode
00117                               "sTsUrl"       => "https://www.trustedshops.com", // Trusted Shops Rating main url
00118                               "sTsTestUrl"   => "https://qa.trustedshops.com",  // Trusted Shops Rating test url
00119                               "sTsWidgetUri" => array( "bewertung/widget/widgets/%s.gif" ), // rating widget url
00120                               "sTsInfoUri"   => array( "de" => "bewertung/info_%s.html",  // DE rating info url
00121                                                        "en" => "buyerrating/info_%s.html" // EN rating info url
00122                                                      ),
00123                               "sTsRatingUri" => array( "de" => "bewertung/bewerten_%s.html", // DE rating url
00124                                                        "en" => "buyerrating/rate_%s.html"    // EN rating url
00125                                                      )
00126                              );
00127     // Trusted Shops Ratings service wsdl
00128     $this->sTsServiceWsdl = "https://www.trustedshops.de/ts/services/TsRating?wsdl";
00129 
00130     // Trusted Shops Ratings test service wsdl
00131     $this->sTsServiceTestWsdl = "https://qa.trustedshops.de/ts/services/TsRating?wsdl";
00132 
00137     $this->blDebugTemplateBlocks = false;
00138 
00143     $this->blSeoLogging = false;
00144 
00150     $this->aUserComponentNames = null;
00151 
00155     $this->blDeprecatedSubshopsInSessions = false;
00156 
00160     $this->sDefaultDatabaseConnection = '';
00161 
00165     $this->aMultiLangTables = null;

Generated by  doxygen 1.7.1