Advertisement
Guest User

Untitled

a guest
Jan 10th, 2017
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.63 KB | None | 0 0
  1. <?php
  2. /**
  3. * This file is part of OXID eShop Community Edition.
  4. *
  5. * OXID eShop Community Edition is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * OXID eShop Community Edition is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with OXID eShop Community Edition. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * @link http://www.oxid-esales.com
  19. * @copyright (C) OXID eSales AG 2003-2016
  20. * @version OXID eShop CE
  21. */
  22.  
  23. /** @name database information */
  24. $this->dbHost = 'localhost'; // database host name
  25. $this->dbName = 'd024bc5c'; // database name
  26. $this->dbUser = 'd024bc5c'; // database user name
  27. $this->dbPwd = '12qwasyxA'; // database user password
  28. $this->dbType = 'mysql';
  29. $this->sShopURL = 'http://vr-brillen-ratgeber.de/'; // eShop base url, required
  30. $this->sSSLShopURL = null; // eShop SSL url, optional
  31. $this->sAdminSSLURL = null; // eShop Admin SSL url, optional
  32. $this->sShopDir = '/www/htdocs/w0150aa3/vr-brillen-ratgeber.de';
  33. $this->sCompileDir = '/www/htdocs/w0150aa3/vr-brillen-ratgeber.de/tmp';
  34.  
  35. // UTF-8 mode in shop 0 - off, 1 - on
  36. $this->iUtfMode = 1;
  37.  
  38. // File type whitelist for file upload
  39. $this->aAllowedUploadTypes = array('jpg', 'gif', 'png', 'pdf', 'mp3', 'avi', 'mpg', 'mpeg', 'doc', 'xls', 'ppt');
  40.  
  41. // timezone information
  42. date_default_timezone_set('Europe/Berlin');
  43.  
  44. // Search engine friendly URL processor
  45. // After changing this value, you should rename oxid.php file as well
  46. // Always leave .php extension here unless you know what you are doing
  47. $this->sOXIDPHP = "oxid.php";
  48.  
  49. // enable debug mode for template development or bugfixing
  50. // -1 = Logger Messages internal use only
  51. // 0 = off
  52. // 1 = smarty
  53. // 2 = SQL The SQL logging feature is deprecated since v5.3.0 (2016-06-07). This feature will be removed.
  54. // 3 = SQL + smarty The SQL logging feature is deprecated since v5.3.0 (2016-06-07). This feature will be removed.
  55. // 4 = SQL + smarty + shoptemplate data The SQL logging feature is deprecated since v5.3.0 (2016-06-07). This feature will be removed.
  56. // 5 = Delivery Cost calculation info
  57. // 6 = SMTP Debug Messages
  58. // 7 = oxDbDebug SQL parser The SQL logging feature is deprecated since v5.3.0 (2016-06-07). This feature will be removed.
  59. // 8 = display smarty template names (requires /tmp cleanup)
  60. $this->iDebug = 0;
  61.  
  62. // Log all modifications performed in Admin
  63. $this->blLogChangesInAdmin = false;
  64.  
  65. // Force admin email
  66. $this->sAdminEmail = '';
  67.  
  68. // in case session must be started on first user page visit (not only on
  69. // session required action) set this option value 1
  70. $this->blForceSessionStart = false;
  71.  
  72. // Use browser cookies to store session id (no sid parameter in URL)
  73. $this->blSessionUseCookies = true;
  74.  
  75. // The domain that the cookie is available: array( _SHOP_ID_ => _DOMAIN_ );
  76. // check setcookie() documentation for more details @php.net
  77. $this->aCookieDomains = null;
  78.  
  79. // The path on the server in which the cookie will be available on: array( _SHOP_ID_ => _PATH_ );
  80. // check setcookie() documentation for more details @php.net
  81. $this->aCookiePaths = null;
  82.  
  83. // uncomment the following line if you want to leave euro sign unchanged in output
  84. // by default is set to convert euro sign symbol to html entity
  85. // $this->blSkipEuroReplace = true;
  86.  
  87.  
  88. // List of all Search-Engine Robots
  89. $this->aRobots = array(
  90. 'googlebot',
  91. 'ultraseek',
  92. 'crawl',
  93. 'spider',
  94. 'fireball',
  95. 'robot',
  96. 'slurp',
  97. 'fast',
  98. 'altavista',
  99. 'teoma',
  100. 'msnbot',
  101. 'bingbot',
  102. 'yandex',
  103. 'gigabot',
  104. 'scrubby'
  105. );
  106.  
  107. // Deactivate Static URL's for these Robots
  108. $this->aRobotsExcept = array();
  109.  
  110. // IP addresses for which session/cookie id match and user agent change checks are off
  111. $this->aTrustedIPs = array();
  112.  
  113. /**
  114. * Works only if basket reservations feature is enabled in admin.
  115. *
  116. * The number specifies how many expired basket reservations are
  117. * cleaned per one request (to the eShop).
  118. * Cleaning a reservation basically means returning the reserved
  119. * stock to the articles.
  120. *
  121. * Keeping this number too low may cause article stock being returned too
  122. * slowly, while too high value may have spiking impact on the performance.
  123. */
  124. $this->iBasketReservationCleanPerRequest = 200;
  125.  
  126. // Trusted shops buyer protection wsdl url
  127. $this->sTsProtectionUrl = "https://protection.trustedshops.com/ts/protectionservices/ApplicationRequestService?wsdl";
  128. // This is only needed for testing during integration
  129. $this->sTsTestProtectionUrl = "https://protection-qa.trustedshops.com/ts/protectionservices/ApplicationRequestService?wsdl";
  130.  
  131. // Trusted Shops Ratings login info
  132. // The public username and password are provided in TrustedShops documentation and helps to identify the functionality provided by OXID eShop
  133. // Do not change this information unless instructed otherwise
  134. $this->sTsUser = "oxid_esales";
  135. $this->sTsPass = "V1AoGEXm";
  136.  
  137. // Trusted Shops Ratings configuration array
  138. $this->aTsConfig = array( "blTestMode" => false, // set TRUE to enable testing mode
  139. "sTsUrl" => "https://www.trustedshops.com", // Trusted Shops Rating main url
  140. "sTsTestUrl" => "https://qa.trustedshops.com", // Trusted Shops Rating test url
  141. "sTsWidgetUri" => array( "bewertung/widget/widgets/%s.gif" ), // rating widget url
  142. "sTsInfoUri" => array( "de" => "bewertung/info_%s.html", // DE rating info url
  143. "en" => "buyerrating/info_%s.html" // EN rating info url
  144. ),
  145. "sTsRatingUri" => array( "de" => "bewertung/bewerten_%s.html", // DE rating url
  146. "en" => "buyerrating/rate_%s.html" // EN rating url
  147. )
  148. );
  149. // Trusted Shops Ratings service wsdl
  150. $this->sTsServiceWsdl = "https://www.trustedshops.de/ts/services/TsRating?wsdl";
  151.  
  152. // Trusted Shops Ratings test service wsdl
  153. $this->sTsServiceTestWsdl = "https://qa.trustedshops.de/ts/services/TsRating?wsdl";
  154.  
  155. /**
  156. * should template blocks be highlighted in frontend ?
  157. * this is mainly intended for module writers in non productive environment
  158. */
  159. $this->blDebugTemplateBlocks = false;
  160.  
  161. /**
  162. * should requests, coming via stdurl and not redirected to seo url be logged to seologs db table?
  163. * note: only active if in productive mode, as the eShop in non productive more will always log such urls
  164. */
  165. $this->blSeoLogging = false;
  166.  
  167. /**
  168. * To override oxubase::_aUserComponentNames use this array option:
  169. * array keys are component(class) names and array values defines if component is cacheable (true/false)
  170. * e.g. array("user_class" => false);
  171. */
  172. $this->aUserComponentNames = null;
  173.  
  174. /**
  175. * Default database connection character set. This option is only used when config option iUtfMode is set to 0.
  176. */
  177. $this->sDefaultDatabaseConnection = 'latin1';
  178.  
  179. /**
  180. * Additional multi language tables
  181. */
  182. $this->aMultiLangTables = null;
  183.  
  184. /**
  185. * Instructs shop that price update is perfomed by cron (time based job sheduler)
  186. */
  187. $this->blUseCron = false;
  188.  
  189.  
  190. /**
  191. * Do not disable module if class from extension path does not exist.
  192. */
  193. $this->blDoNotDisableModuleOnError = false;
  194.  
  195. /**
  196. * Captcha encryption key.
  197. */
  198. $this->captchaKey = 'pb0afiwgjdnnyvb3l2pws39fy8mvtrdi';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement