• 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     //  8 = display smarty template names (requires /tmp cleanup)
00040     $this->iDebug = 0;
00041 
00042     // Log all modifications performed in Admin
00043     $this->blLogChangesInAdmin = false;
00044 
00045     // Force admin email
00046     $this->sAdminEmail = '';
00047 
00048     // in case session must be started on first user page visit (not only on
00049     // session required action) set this option value 1
00050     $this->blForceSessionStart = false;
00051 
00052     // Use browser cookies to store session id (no sid parameter in URL)
00053     $this->blSessionUseCookies = true;
00054 
00055     // The domain that the cookie is available: array( _SHOP_ID_ => _DOMAIN_ );
00056     // check setcookie() documentation for more details @php.net
00057     $this->aCookieDomains = null;
00058 
00059     // The path on the server in which the cookie will be available on: array( _SHOP_ID_ => _PATH_ );
00060     // check setcookie() documentation for more details @php.net
00061     $this->aCookiePaths = null;
00062 
00063     // uncomment the following line if you want to leave euro sign unchanged in output
00064     // by default is set to convert euro sign symbol to html entity
00065     // $this->blSkipEuroReplace = true;
00066 
00067 
00068     // List of all Search-Engine Robots
00069     $this->aRobots = array(
00070                         'googlebot',
00071                         'ultraseek',
00072                         'crawl',
00073                         'spider',
00074                         'fireball',
00075                         'robot',
00076                         'slurp',
00077                         'fast',
00078                         'altavista',
00079                         'teoma',
00080                         'msnbot',
00081                         'bingbot',
00082                         'yandex',
00083                         'gigabot',
00084                         'scrubby'
00085                         );
00086 
00087     // Deactivate Static URL's for these Robots
00088     $this->aRobotsExcept = array();
00089 
00090     // IP addresses for which session/cookie id match and user agent change checks are off
00091     $this->aTrustedIPs = array();
00092 
00104     $this->iBasketReservationCleanPerRequest = 200;
00105 
00106     // Trusted shops buyer protection wsdl url
00107     $this->sTsProtectionUrl = "https://protection.trustedshops.com/ts/protectionservices/ApplicationRequestService?wsdl";
00108     // This is only needed for testing during integration
00109     $this->sTsTestProtectionUrl = "https://protection-qa.trustedshops.com/ts/protectionservices/ApplicationRequestService?wsdl";
00110 
00111     // Trusted Shops Ratings login info
00112     // The public username and password are provided in TrustedShops documentation and helps to identify the functionality provided by OXID eShop
00113     // Do not change this information unless instructed otherwise
00114     $this->sTsUser = "oxid_esales";
00115     $this->sTsPass = "V1AoGEXm";
00116 
00117     // Trusted Shops Ratings configuration array
00118     $this->aTsConfig = array( "blTestMode"   => false, // set TRUE to enable testing mode
00119                               "sTsUrl"       => "https://www.trustedshops.com", // Trusted Shops Rating main url
00120                               "sTsTestUrl"   => "https://qa.trustedshops.com",  // Trusted Shops Rating test url
00121                               "sTsWidgetUri" => array( "bewertung/widget/widgets/%s.gif" ), // rating widget url
00122                               "sTsInfoUri"   => array( "de" => "bewertung/info_%s.html",  // DE rating info url
00123                                                        "en" => "buyerrating/info_%s.html" // EN rating info url
00124                                                      ),
00125                               "sTsRatingUri" => array( "de" => "bewertung/bewerten_%s.html", // DE rating url
00126                                                        "en" => "buyerrating/rate_%s.html"    // EN rating url
00127                                                      )
00128                              );
00129     // Trusted Shops Ratings service wsdl
00130     $this->sTsServiceWsdl = "https://www.trustedshops.de/ts/services/TsRating?wsdl";
00131 
00132     // Trusted Shops Ratings test service wsdl
00133     $this->sTsServiceTestWsdl = "https://qa.trustedshops.de/ts/services/TsRating?wsdl";
00134 
00139     $this->blDebugTemplateBlocks = false;
00140 
00145     $this->blSeoLogging = false;
00146 
00152     $this->aUserComponentNames = null;
00153 
00157     $this->sDefaultDatabaseConnection = '';
00158 
00162     $this->aMultiLangTables = null;
00163 
00167     $this->blUseCron = false;
00168 

Generated by  doxygen 1.7.1