• 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                         'spider',
00076                         'robot',
00077                         'slurp',
00078                         'fast',
00079                         'altavista',
00080                         'teoma',
00081                         );
00082 
00083     // Deactivate Static URL's for these Robots
00084     $this->aRobotsExcept = array();
00085 
00086     // IP addresses for which session/cookie id match and user agent change checks are off
00087     $this->aTrustedIPs = array();
00088 
00100     $this->iBasketReservationCleanPerRequest = 200;
00101 
00102     // Trusted shops buyer protection wsdl url
00103     $this->sTsProtectionUrl = "https://protection.trustedshops.com/ts/protectionservices/ApplicationRequestService?wsdl";
00104     // This is only needed for testing during integration
00105     $this->sTsTestProtectionUrl = "https://protection-qa.trustedshops.com/ts/protectionservices/ApplicationRequestService?wsdl";
00106 
00107     // Trusted Shops Ratings login info
00108     // Do not change credentials unless instructed otherwise by Trusted Shops!
00109     $this->sTsUser = "oxid_esales";
00110     $this->sTsPass = "V1AoGEXm";
00111 
00112     // Trusted Shops Ratings configuration array
00113     $this->aTsConfig = array( "blTestMode"   => false, // set TRUE to enable testing mode
00114                               "sTsUrl"       => "https://www.trustedshops.com", // Trusted Shops Rating main url
00115                               "sTsTestUrl"   => "https://qa.trustedshops.com",  // Trusted Shops Rating test url
00116                               "sTsWidgetUri" => array( "bewertung/widget/widgets/%s.gif" ), // rating widget url
00117                               "sTsInfoUri"   => array( "de" => "bewertung/info_%s.html",  // DE rating info url
00118                                                        "en" => "buyerrating/info_%s.html" // EN rating info url
00119                                                      ),
00120                               "sTsRatingUri" => array( "de" => "bewertung/bewerten_%s.html", // DE rating url
00121                                                        "en" => "buyerrating/rate_%s.html"    // EN rating url
00122                                                      )
00123                              );
00124     // Trusted Shops Ratings service wsdl
00125     $this->sTsServiceWsdl = "https://www.trustedshops.de/ts/services/TsRating?wsdl";
00126 
00127     // Trusted Shops Ratings test service wsdl
00128     $this->sTsServiceTestWsdl = "https://qa.trustedshops.de/ts/services/TsRating?wsdl";
00129 
00134     $this->blDebugTemplateBlocks = false;
00135 
00140     $this->blSeoLogging = false;
00141 
00147     $this->aUserComponentNames = null;
00148 
00152     $this->blDeprecatedSubshopsInSessions = false;

Generated by  doxygen 1.7.1