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

Generated by  doxygen 1.7.1