• 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     // Template theme name, a directory in out/ folder containing all needed resources
00016     $this->sTheme = 'basic';
00017 
00018     // Custom  theme, a directory in out/ folder containing only modified template files
00019     $this->sCustomTheme = null;
00020 
00021     // Uncoment only for former (pre version 4) template compatibility
00022     // $this->blFormerTplSupport = true;
00023     // $this->blFixedWidthLayout = true;
00024 
00025     // UTF-8 mode in shop 0 - off, 1 - on
00026     $this->iUtfMode  = '<iUtfMode>';
00027 
00028     // File type whitelist for file upload
00029     $this->aAllowedUploadTypes = array('jpg', 'gif', 'png', 'pdf', 'mp3', 'avi', 'mpg', 'mpeg', 'doc', 'xls', 'ppt');
00030 
00031     // timezone information
00032     date_default_timezone_set('Europe/Berlin');
00033 
00034     // Search engine friendly URL processor
00035     // After changing this value, you should rename oxid.php file as well
00036     // Always leave .php extension here unless you know what you are doing
00037     $this->sOXIDPHP = "oxid.php";
00038 
00039     //  enable debug mode for template development or bugfixing
00040     // -1 = Logger Messages internal use only
00041     //  0 = off
00042     //  1 = smarty
00043     //  2 = SQL
00044     //  3 = SQL + smarty
00045     //  4 = SQL + smarty + shoptemplate data
00046     //  5 = Delivery Cost calculation info
00047     //  6 = SMTP Debug Messages
00048     //  7 = oxDbDebug SQL parser
00049     $this->iDebug = 0;
00050 
00051     // Log all modifications performed in Admin
00052     $this->blLogChangesInAdmin = false;
00053 
00054     // Force admin email
00055     $this->sAdminEmail = '';
00056 
00057     // in case session must be started on first user page visit (not only on
00058     // session required action) set this option value 1
00059     $this->blForceSessionStart = false;
00060 
00061     // Use browser cookies to store session id (no sid parameter in URL)
00062     $this->blSessionUseCookies = true;
00063 
00064     // The domain that the cookie is available: array( _SHOP_ID_ => _DOMAIN_ );
00065     // check setcookie() documentation for more details @php.net
00066     $this->aCookieDomains = null;
00067 
00068     // The path on the server in which the cookie will be available on: array( _SHOP_ID_ => _PATH_ );
00069     // check setcookie() documentation for more details @php.net
00070     $this->aCookiePaths = null;
00071 
00072     // uncomment the following line if you want to leave euro sign unchanged in output
00073     // by default is set to convert euro sign symbol to html entity
00074     // $this->blSkipEuroReplace = true;
00075 
00076 
00077     // List of all Search-Engine Robots
00078     $this->aRobots = array(
00079                         'googlebot',
00080                         'ultraseek',
00081                         'crawl',
00082                         'spider',
00083                         'fireball',
00084                         'robot',
00085                         'spider',
00086                         'robot',
00087                         'slurp',
00088                         'fast',
00089                         'altavista',
00090                         'teoma',
00091                         );
00092 
00093     // Deactivate Static URL's for these Robots
00094     $this->aRobotsExcept = array();
00095 
00096     // IP addresses for which session/cookie id match and user agent change checks are off
00097     $this->aTrustedIPs = array();
00098 
00099     // disable using and loading the gmp extension for the OpenId library
00100     // as using the dl() function causes problems with suhosin.
00101     define('Auth_OpenID_BUGGY_GMP', true);
00102 
00114     $this->iBasketReservationCleanPerRequest = 200;
00115 
00116     // Trusted shops buyer protection wsdl url
00117     $this->sTsProtectionUrl = "https://protection.trustedshops.com/ts/protectionservices/ApplicationRequestService?wsdl";
00118     // This is only needed for testing during integration
00119     $this->sTsTestProtectionUrl = "https://protection-qa.trustedshops.com/ts/protectionservices/ApplicationRequestService?wsdl";
00120 
00121     // Trusted Shops Ratings login info
00122     // Do not change credentials unless instructed otherwise by Trusted Shops!
00123     $this->sTsUser = "oxid_esales";
00124     $this->sTsPass = "V1AoGEXm";
00125 
00126     // Trusted Shops Ratings configuration array
00127     $this->aTsConfig = array( "blTestMode"   => false, // set TRUE to enable testing mode
00128                               "sTsUrl"       => "https://www.trustedshops.com", // Trusted Shops Rating main url
00129                               "sTsTestUrl"   => "https://qa.trustedshops.com",  // Trusted Shops Rating test url
00130                               "sTsWidgetUri" => array( "bewertung/widget/widgets/%s.gif" ), // rating widget url
00131                               "sTsInfoUri"   => array( "de" => "bewertung/info_%s.html",  // DE rating info url
00132                                                        "en" => "buyerrating/info_%s.html" // EN rating info url
00133                                                      ),
00134                               "sTsRatingUri" => array( "de" => "bewertung/bewerten_%s.html", // DE rating url
00135                                                        "en" => "buyerrating/rate_%s.html"    // EN rating url
00136                                                      )
00137                              );
00138     // Trusted Shops Ratings service wsdl
00139     $this->sTsServiceWsdl = "https://www.trustedshops.de/ts/services/TsRating?wsdl";
00140 
00141     // Trusted Shops Ratings test service wsdl
00142     $this->sTsServiceTestWsdl = "https://qa.trustedshops.de/ts/services/TsRating?wsdl";

Generated by  doxygen 1.7.1