Skip to content

Latest commit

 

History

History
99 lines (69 loc) · 3.23 KB

config_options.md

File metadata and controls

99 lines (69 loc) · 3.23 KB

##sCSVSign Separator for Im/Export in Enterprise Edition

##sGiCsvFieldEncloser Encloser for Im/Export

##blCheckForUpdates Shop will be checked for version in admin home page only if this option is checked

##sAltImageDir In case if pictures for articles should be loaded from separate server and are available only through http - it's enough to include option in config.inc.php. Then to load picture for article only define the rest http path to the image file. Attention: If this option is set in the configuration file config.inc.php, uploading of product pictures in admin area is not possible!

$this->sAltImageDir = "[http://[path_to_images_dir_on_server]/ http://[path_to_images_dir_on_server]/]";

##sCookieDomain In case you setup different subdomain for SSL/non-SSL pages cookies may not be shared between them. Defines the domain that the cookie is available.

##sAuthOpenIdRandSource define 'Auth_OpenID_RAND_SOURCE' (filename for a source of random bytes)

$this->sAuthOpenIdRandSource  = '/dev/urandom';

##sCookiePath possibility to define path on the server in which the cookie will be available on.

$this->sCookiePath = '/dev/urandom';

##blForceSessionStart Force session start on first page view and for users whose browsers do not accept cookies, append sid parameter to URLs.

$this->blForceSessionStart = "1";

##aTrustedIPs Defines IP addresses, for which session + cookie id match and user agent change checks are off.

##blUseTimeCheck Additionally checks if "oxactivefrom > current date < oxactiveto"

##blUseStock If value is TRUE checks stock state "( oxstock > 0 or ( oxstock <= 0 and ( oxstockflag = 1 or oxstockflag = 4 ) )"

##sCustomTheme

##blLogChangesInAdmin Log all modifications performed in Admin (in oxadminlog table)

$this->blLogChangesInAdmin = 0;

##blMallSharedBasket Common cart for subshops use together with option in main shop configurations (Mall tab): "Allow users from other shops"

##blSeoMode Switch off SEO URLs

$this->blSeoMode = false;

##iPicCount Change number of item pictures

##aModules Some classes can be overloaded, but only by setting up this information in config.inc.php directly

$this->aModules = array(
‘oxutilsobject’ => ‘my_oxutilsobject’
);

##aRequireSessionWithParams

##blUseCron Enables or disables the use of cron jobs in config.inc.php

Implemented with OXID eShop version 4.6.0

$this->blUseCron = true;

##iCreditRating Sets the default value of credit rating

Implemented with OXID eShop version 4.7.3

$this->iCreditRating = 1000;

##blEnterNetPrice Prices will be entered without tax

##blSkipViewUsage If you can't log in to the admin panel, try setting the parameter blSkipViewUsage temproarily to "true".

Implemented with OXID eShop version 4.7

$this->blSkipViewUsage = true;

##sShopLogo Add your own logo image file, upload it to /out/az ure/img/.

Implemented with OXID eShop version 4.8

$this->sShopLogo = 'your_own_image.jpg'

##blDemoShop Enables shop demo mode

$this->blDemoShop= true;

##blDoNotDisableModuleOnError Disable module auto deactivation

Implemented with OXID eShop versions 5.1.2/4.8.2 and 5.0.11/4.7.11

$this->blDoNotDisableModuleOnError = false;