[ Index ] |
|
Code source de eZ Publish 3.9.0 |
1 #?ini charset="iso-8859-1"? 2 # eZ publish configuration file. 3 # 4 # NOTE: It is not recommended to edit this files directly, instead 5 # a file in override should be created for setting the 6 # values that is required for your site. Either create 7 # a file called settings/override/site.ini.append or 8 # settings/override/site.ini.append.php for more security 9 # in non-virtualhost modes (the .php file may already be present 10 # and can be used for this purpose). 11 12 [DatabaseSettings] 13 DatabasePluginPath= 14 # Use either ezmysql or ezpostgresql 15 DatabaseImplementation=ezmysql 16 Server=localhost 17 User=root 18 Password= 19 Database=nextgen 20 # Enable slave servers 21 # The slave servers will only be used for read queries 22 # Useful for load balanced environments 23 UseSlaveServer=disabled 24 #SlaveServerArray[]=localhost 25 #SlaverServerUser[]=nextgen 26 #SlaverServerPassword[]=nextgen 27 #SlaverServerDatabase[]=nextgen 28 # The number of times to reconnect if the first fails 29 ConnectRetries=0 30 # The charset to use for the database connection 31 # If left empty the charset set in i18n.ini will be used, 32 # which is often the most reasonable setting. 33 Charset= 34 # Use charset conversion routines in DB if possible 35 UseBuiltinEncoding=true 36 Socket=disabled 37 # This controls if the queries should have an analysis done 38 # for the debug output (Requires SQLOutput=enabled) 39 # NOTE: Currently this only works for MySQL. 40 QueryAnalysisOutput=disabled 41 SQLOutput=disabled 42 # When this setting is larger than 0 the Queries would only be shown in the 43 # SQLOutput if the execution time took more than <setting> miliseconds. 44 SlowQueriesOutput=0 45 # If enabled the system will store stack traces for all begin/commits in the 46 # system. When an unbalanced nested transactions are detected it will output 47 # all begin/commits with information on where it occured as a deep tree. 48 # This tree can be used to debug the code and find the missing commit. 49 DebugTransactions=disabled 50 51 # Alias for implementations 52 ImplementationAlias[] 53 ImplementationAlias[mysql]=ezmysql 54 ImplementationAlias[postgresql]=ezpostgresql 55 56 UsePersistentConnection=disabled 57 # Use transactions to ensure that integrity of a database is maintained. 58 # MySQL needs transaction safe-tables like the InnoDB table handler. 59 Transactions=enabled 60 61 [ExtensionSettings] 62 ExtensionDirectory=extension 63 # A list of active extensions, add new ones to activate them 64 # The extension itself will then have it's settings directory read (if any) 65 # and any extra configurability is done automatically. 66 ActiveExtensions[] 67 # Same as ActiveExtensions but will be loaded after the siteaccess is chosen. 68 # This allows for activating different extensions on different siteaccesses 69 ActiveAccessExtensions[] 70 71 [InformationCollectionSettings] 72 # Which email collected information is sent to 73 EmailReceiver= 74 75 [Session] 76 # "Remember me" feature of the login. 77 # Number of seconds a session cookie will last, 78 # if an user wants to store current session to the cookie 79 # should click on "Remember me" checkbox on login page. 80 # Empty or 0 means this ability will be disabled and CookieTimeout will be used. 81 RememberMeTimeout= 82 83 # Number of seconds a session will last, 3 days is standard 84 SessionTimeout=259200 85 # Number of seconds before a session is considered inactive/logged out, 1 hour is standard 86 ActivityTimeout=3600 87 # Number of seconds a session cookie will last, 88 # 0 means until browser is closed 89 # Leaving the field empty means to use the default PHP settings (session.cookie_lifetime) 90 CookieTimeout= 91 # Example for 6 minutes 92 #CookieTimeout=360 93 # Decides how the name of the session value is handled. 94 # Possible values are: 95 # default - Let PHP decide the session name, this also rules 96 # out the possiblity for per-siteaccess sessions. 97 # custom - Use SessionNamePrefix for name. per-siteaccess sessions are possible. 98 SessionNameHandler=default 99 # The name of the session ID, is prefixed with the current 100 # siteaccess to provide login per siteaccess. 101 # Note: Will only work if SessionNameHandler is set to custom 102 SessionNamePrefix=eZSESSID 103 # Whether the session name should be unique per siteaccess. 104 # By enabling this you will be able to get one unique login per siteaccess. 105 # Note: Will only work if SessionNameHandler is set to custom 106 SessionNamePerSiteAccess=enabled 107 108 # Controls how baskets are cleaned up when session expires. 109 # It can take on these values: 110 # - cronjob - Cleanup values in a cronjob, Note: runcronjobs.php must be run 111 # - pageload - Cleanup on pageload when the session expires (Controlled by PHP) 112 BasketCleanup=cronjob 113 # Controls the number of seconds the cleanup can run 114 # The default is 2 minutes 115 BasketCleanupTime=120 116 # Controls how many seconds the cleanup will stay idle between 117 # operations. This can be increased to help keep the load down 118 BasketCleanupIdleTime=2 119 # The maximum number of basket entries it will fetch in one batch 120 # Can be increased to improve the amount of time it uses for each 121 # cronjob run or decreased to reduce memory usage and load on server. 122 BasketCleanupFetchLimit=3000 123 # Controls how often baskets are cleaned up in the cronjob 124 # A value of 10 means it will clean up in average 1 out of 125 # 10 times. 126 BasketCleanupAverageFrequency=10 127 128 [DebugSettings] 129 # Master switch for debug, if disabled no debug will be shown 130 # If enabled it's up to the DebugIP and DebugIPList to decide what to do. 131 # Use either enabled or disabled 132 DebugOutput=disabled 133 # Controls which debug types to always log. 134 # This ensures logging even if debug output is off 135 # 136 # Available debug types are: 137 # error - For major errors, very important to log 138 # warning - Smaller errors, important for development but not for live site 139 # debug - Temporary debug, usually only important to see in the web browser 140 # notice - General notices, enabling this can fill up the log files quickly 141 AlwaysLog[] 142 AlwaysLog[]=error 143 # Debug switch for scripts, will only take place if DebugOutput is set to enabled 144 # By default it is off to not give debug for scripts. 145 # Use either enabled or disabled 146 ScriptDebugOutput=disabled 147 # Whether debug is set per IP address. If set to enabled it will user 148 # DebugIPList for valid ips otherwise all ips get debug. 149 # Use either enabled or disabled 150 DebugByIP=disabled 151 # A array with IP addresses or networks which will get debug information 152 DebugIPList[] 153 # Examples 154 #DebugIPList[]=1.2.3.4 155 #DebugIPList[]=192.0.0.42 156 #DebugIPList[]=192.0.0.0/27 157 158 # Whether debug is set per UserID. If set to enabled only users with 159 # IDs (in DebugUserIDList) can get debug. 160 # Use either enabled or disabled 161 DebugByIP=disabled 162 # An array with UserIDs which will get debug information 163 DebugUserIDList[] 164 # Examples 165 #DebugUserIDList[]=14 166 167 168 # Controls how debug is displayed, inline means that the debug is displayed in 169 # page itself while popup will create a new popup window with the debug. 170 # Popup window might not work in all browsers. 171 # Use either disabled, inline or popup 172 # If you use popup you must make sure that a rewrite rules exists for .html files 173 # or that your site is running in non-virtual host mode. Also some browsers 174 # have problems with this feature. 175 Debug=inline 176 # Controls if redirects should be debuggable, set to enable to get a redirect 177 # page with debug info. 178 # This is useful for development while production sites should have it off 179 DebugRedirection=disabled 180 181 # Whether debug warnings/errors should be displayed on the page or not. 182 # If not they will appear in debug log only. 183 DisplayDebugWarnings=disabled 184 185 # Whether to skip showing debug strings in the debug output. 186 DebugLogOnly=disabled 187 188 # Developer toolbar with clear cache and quick settings features 189 DebugToolbar=enabled 190 191 # Quick settings list for the developer toolbar 192 # You can use any enabled/disabled setting 193 QuickSettingsList[] 194 QuickSettingsList[]=DebugSettings;DebugOutput;site.ini;Debug output 195 QuickSettingsList[]=DebugSettings;DebugRedirection;site.ini;Debug redirection 196 QuickSettingsList[]=TemplateSettings;Debug;site.ini;Template debug 197 QuickSettingsList[]=TemplateSettings;ShowXHTMLCode;site.ini;Inline template debug 198 QuickSettingsList[]=TemplateSettings;ShowUsedTemplates;site.ini;List of used templates 199 QuickSettingsList[]=DatabaseSettings;SQLOutput;site.ini;SQL debug output 200 201 [URLTranslator] 202 # Controls whether the url translation is enabled or not. 203 # With url translation enabled you can enter the path of content object 204 # in the url like my/nice/path and get the content object. 205 # Also the url translation allows for custom translations of urls 206 # Use either enabled or disabled 207 Translation=enabled 208 # Controls whether wildcard translation is to be used or not 209 # If enabled wilcard translations will be used if a normal 210 # translation is not available and it is also used to remember 211 # old sub trees. It's recommended to have this enabled 212 # unless you have problems with it. 213 WildcardTranslation=enabled 214 # Controls how many times the wildcard matches can iterate. 215 # The wildcard matcher system will iterate if the translated 216 # url is not a complete url, this allows urls lookup to be 217 # recursive and is required for proper subtree history. 218 MaximumWildcardIterations=20 219 # OBSOLETE: Use Translation setting instead 220 # Enable this if you want to percieve the url as a path element 221 # for the node tree. By entering the path in the url and ending it 222 # with a .html you will get the correct node. 223 NodeTranslation=enabled 224 225 [SiteSettings] 226 # Name of the site, will be used in default templates in titles. 227 SiteName=eZ publish 228 # URL of site, often used to link to site in emails etc. 229 SiteURL=example.com 230 # List of metadata to set in pagelayout 231 MetaDataArray[author]=eZ systems 232 MetaDataArray[copyright]=eZ systems 233 MetaDataArray[description]=Content Management System 234 MetaDataArray[keywords]=cms, publish, e-commerce, content management, development framework 235 Dir= 236 # Which page to show when the root index (/) is accessed 237 IndexPage=/content/view/full/2/ 238 # What to do when a module does not exists, use either defaultpage or displayerror 239 # If defaultpage is used, the DefaultPage will be shown when an error occured 240 ErrorHandler=displayerror 241 # The default page to show, e.g. after user login this will be used for default redirection 242 DefaultPage=/content/view/full/2/ 243 # Default access is needed when uri type matching is done, this is 244 # because with empty urls it's not possible to fetch the access 245 DefaultAccess=admin 246 # How the login page should be handled, use embedded to show inside default pagelayout 247 # or custom for loginpagelayout.tpl 248 LoginPage=custom 249 # The SSL port, the default should be OK for most sites but can be 250 # changed if different. If the port is detect all redirects will 251 # be done with https protocol. 252 SSLPort=443 253 # A list of sites this server provides, this usually the 254 # siteaccess for the user view when installing multiple packages. 255 # e.g. 256 # SiteList[]=news 257 # SiteList[]=plain 258 SiteList[] 259 260 # Enables/Disables 64bit compatibility mode. 261 # Affects some php's functions like crc32. 262 64bitCompatibilityMode=enabled 263 # Use this setting to specify additional URL for login and then use it in your login template 264 # to perform login action to other site then the current one. For example from user site you 265 # can login directly to the admin interfase. Note that standard eZ publish templates do not 266 # support this feature. 267 AdditionalLoginFormActionURL= 268 269 # Settings for the search engine framework in eZ publish 270 [SearchSettings] 271 SearchEngine=eZSearchEngine 272 #SearchEngine=openFts 273 # How the search and advanced search page works, 274 # by default the search view does the search but it's 275 # possible to do the search in pure template code. 276 # Possible values are: 277 # default - The view code does the search and passes result to template 278 # template - The template does the search and passes the result back to the view code 279 SearchViewHandling=default 280 # Whether to log search stats or not 281 LogSearchStats=enabled 282 # The upper value for search limits fetched from HTTP Post variables 283 # This is needed to avoid users on a site to have ridiciously huge limits 284 MaximumSearchLimit=30 285 # Controls whether empty searches are allowed, by default it is disabled 286 # since those kind of searches will take a lot of resources. 287 # If empty searching is enabled you must make sure your template 288 # submits enough limitations to the search, if not expect to really 289 # slow down your site 290 AllowEmptySearch=disabled 291 # Enable or disable wildcard support for search. Note that enabling wildcard search 292 # might heavily influence the performance of the system. 293 EnableWildcard=false 294 # Set minimum number of characters in wildcard search 295 MinCharacterWildcard=3 296 # Only use stop words if total objects is greater than StopWordThresholdValue 297 StopWordThresholdValue=100 298 # Do not search words which are present in more than StopWordThresholdPercent % of total objects 299 StopWordThresholdPercent=60 300 # Controls whether objects are indexed when they are published, or delayed 301 # and processed later by a cronjob 302 DelayedIndexing=disabled 303 304 [UserSettings] 305 # The possibility to deny login after MaxNumberOfFailedLogin failed login attempts. 306 # Max number of failed login attempts. 307 # If the max number is '0' the possibility will be disabled 308 MaxNumberOfFailedLogin=0 309 # An array with IP addresses or networks which will be always allowed to login after a few failed login attempts. 310 TrustedIPList[] 311 #TrustedIPList[]=192.0.0.42 312 #TrustedIPList[]=192.0.0.0/27 313 # If true and failed login attempts of current user execeed MaxNumberOfFailedLogin the user will get a message. 314 ShowMessageIfExceeded=false 315 316 # Minimum password length 317 MinPasswordLength=3 318 # If true it will automatically generate a password if it is empty 319 # and email it to the user. 320 GeneratePasswordIfEmpty=true 321 GeneratePasswordLength=6 322 # The ID of the anonymous user, this user will 323 # be used for everyone who is not logged in. 324 AnonymousUserID=10 325 # Where to store newly self registered users 326 DefaultUserPlacement=12 327 # Which section to place newly self registered users 328 # (Using 0 means that the user will get the section ID 329 # from its new location) 330 DefaultSectionID=0 331 # What kind of feedback is sent back to the site for newly created 332 # users. Use a semi-colon separated list of feedback types. 333 # Currently only email is available. 334 RegistrationFeedback=email 335 # Set to enabled if self registered user accounts 336 # should be verified by e-mail 337 VerifyUserEmail=enabled 338 # Where to send email of newly registered users 339 RegistrationEmail= 340 # Which content class to use for user creation 341 UserClassID=4 342 # Which content class to use for user group creation 343 UserGroupClassID=3 344 # Which class group that has user classes, controls which classes 345 # is shown on the user navigation part. If empty all classes are used. 346 UserClassGroupID=2 347 # Which user is considered the creator 348 UserCreatorID=14 349 # Use either md5_password, md5_user, md5_site or plaintext 350 # md5_password generates password hash from password only. 351 # md5_user generates password hash from user and password. 352 # md5_site generates password hash from site, user and password 353 # plaintext does not generate a hash but has the password as it is, this is not 354 # recommended since it is a huge security risc. 355 # note: password hashes generated with md5_site will not work after 356 # changing the site name. 357 HashType=md5_user 358 # What SiteName should be used when hashing the user_password 359 # with the 'md5_site' HashType 360 SiteName=ez.no 361 # true means update hash to HashType if it differs when logging in 362 # This is useful if you're upgrading from an older eZ publish site 363 # or another system that uses mysql as password type, it will then 364 # update the hash to whather is set. 365 UpdateHash=true 366 # Authenticate match, a list of authenticate fields to use 367 # Available are login and email 368 AuthenticateMatch=login;email 369 # Controls whether a unique email is required for all users, 370 # if set to true and email is set in AuthenticateMatch then only 371 # one email address instance is allowed on the site. 372 # Set to false to disable it 373 #RequireUniqueEmail=true 374 RequireUniqueEmail=false 375 # Controls whether special characters are allowed in passwords in additional to 376 # characters in the range a-z, A-Z and 0-9. 377 UseSpecialCharacters=false 378 # Which url to redirect after a logout 379 LogoutRedirect=/user/login 380 # Text attribute of class 'User' that contains URI where to redirect 381 # the user to after login. 382 #LoginRedirectionUriAttribute[user]=front_page_uri 383 # Text attribute of class 'User group' that contains URI where 384 # to redirect the user belonging to this group to after login. 385 #LoginRedirectionUriAttribute[group]=front_page_uri 386 387 LoginHandler[]=standard 388 #LoginHandler[]=LDAP 389 #LoginHandler[]=textfile 390 391 # Defines the available single sign on handlers. 392 SingleSignOnHandlerArray[] 393 394 # Extension directories for login handlers. Login handler must be placed in 395 # extension/<extension_directory>/login_handler/. , 396 # and should be name 397 ExtensionDirectory[] 398 399 [SiteAccessSettings] 400 # Set to true if you want to force VirualHost mode (with RewriteRules in apache) 401 # If this is set to true nonVirtualHost mode will not work correctly 402 ForceVirtualHost=false 403 # Set to true if you want the setup system to be activated 404 CheckValidity=true 405 # Set the true if you don't want anonymous access to your site 406 RequireUserLogin=true 407 408 # A list over current active siteaccesses 409 AvailableSiteAccessList[]=admin 410 411 # A list of related siteaccesses sharing the same database 412 RelatedSiteAccessList[] 413 414 # Whether access matching should be debugged or not 415 DebugAccess=disabled 416 # Whether some extra information on access matching should be debugged or not 417 DebugExtraAccess=disabled 418 419 # A list of module or module/views that don't require user login 420 AnonymousAccessList[] 421 AnonymousAccessList[]=user/register 422 AnonymousAccessList[]=user/success 423 AnonymousAccessList[]=user/activate 424 AnonymousAccessList[]=user/forgotpassword 425 426 # An array of access types which are tried, possible entries are: host, uri, port and servervar 427 MatchOrder=uri;host;port 428 429 # Possible values: disabled, map, element, text or regexp 430 # disabled - turns off uri matching 431 # map - match URL using URIMatchMapItems array 432 # element - maps a url element to a siteaccess name 433 # text - match URL using pre or post sub-strings (URIMatchSubtextPre, URIMatchSubtextPost) 434 # regexp - match against a regexp and extract a portion of it 435 URIMatchType=element 436 URIMatchElement=1 437 URIMatchRegexp=([^/]+)/ 438 URIMatchRegexpItem=1 439 # Add array entries here if you chose URIMatchType=map 440 # Each entry consists of the uri;accessname 441 URIMatchMapItems[] 442 URIMatchMapItems[]=admin;admin 443 URIMatchMapItems[]=ADMIN;admin 444 445 # Use either disabled, map, element, text or regexp 446 HostMatchType=map 447 HostMatchElement=0 448 HostMatchRegexp=^(.+)\.example\.com$ 449 HostMatchRegexpItem=1 450 HostMatchSubtextPre= 451 HostMatchSubtextPost=.example.com 452 # Add array entries here if you chose HostMatchType=map 453 # Each entry consists of the hostname;accessname 454 #HostMatchMapItems[]=example.com;user 455 #HostMatchMapItems[]=admin.example.com;admin 456 457 458 # Hides this part from the start of the url alias 459 PathPrefix= 460 461 # Which URLs to exclude from being affected by PathPrefix setting. 462 # URLs containing the specified texts after siteaccess name will not be affected by PathPrefix 463 PathPrefixExclude[] 464 #PathPrefixExclude[]=media 465 #PathPrefixExclude[]=users 466 467 # Set name of server variable used to match a siteaccess 468 ServerVariableName=SITEACCESS 469 470 # Whether to show hidden nodes 471 # If set to false, user is not able to see any hidden nodes 472 # Should be overriden for particular siteaccesses 473 ShowHiddenNodes=false 474 475 # Wheter to add siteaccess to the url if current siteaccess 476 # is the same as default siteaccess. Changing this setting will 477 # require clearing the cache. 478 # 479 # For instance if the default siteaccess is 'en' and you enable 480 # this you can access the siteacccess with 'index.php' instead of 481 # 'index.php/en/'. 482 RemoveSiteAccessIfDefaultAccess=disabled 483 484 [PortAccessSettings] 485 # Add entries here if you have port in MatchOrder 486 # Each entry consists of the port=accessname 487 1337=user 488 1338=admin 489 490 [RoleSettings] 491 EnableCaching=true 492 # Which users' policies to cache. enabled means all users, disabled means no 493 # user and a comma separated list of user id's means that only the policies for 494 # those users are cached 495 UserPolicyCache=enabled 496 # A list of modules to omit policy checking on, 497 # You should add 'role' to the list if you loose 498 # access to the role module 499 # You can also specify views by adding a / and the viewname 500 PolicyOmitList[] 501 PolicyOmitList[]=user/login 502 PolicyOmitList[]=user/logout 503 PolicyOmitList[]=user/register 504 PolicyOmitList[]=user/activate 505 PolicyOmitList[]=user/success 506 PolicyOmitList[]=user/forgotpassword 507 PolicyOmitList[]=layout 508 PolicyOmitList[]=manual 509 PolicyOmitList[]=ezinfo 510 PolicyOmitList[]=paypal/notify_url 511 512 # Should we try to show reason for access denied in view 513 ShowAccessDeniedReason=disabled 514 515 # Specifies max level for the 'ParentDepth' limitation. 516 MaxParentDepthLimitation=20 517 518 # If you disable some modules or part of a module you can use the 519 # SiteAccessRules group, this defines a list of rules which are 520 # run in order. 521 # 522 # The following is an example of how to disable content/search 523 # and the rss module 524 # 525 # [SiteAccessRules] 526 # Rules[] 527 # # Set access policy to allowed 528 # Rules[]=access;enable 529 # # Special syntax which means any module 530 # # This means that for now all modules are enabled 531 # Rules[]=moduleall 532 # # Set policy to denied 533 # Rules[]=access;disable 534 # # If content/search module use current policy (denied) 535 # Rules[]=module;content/search 536 # # If rss module use current policy (denied) 537 # Rules[]=module;rss 538 539 [DesignSettings] 540 # The standard design, is used as fallback design 541 # if the element is not in the sitedesign 542 StandardDesign=standard 543 # The design of the site 544 SiteDesign=admin 545 # AdditionalSiteDesignArray contains an array 546 # of sitedesigns. These sitedesigns will be used 547 # if the design was not found in the main 548 # sitedesign. StandardDesign is the fallback design. 549 AdditionalSiteDesignList[] 550 551 [SetupSettings] 552 # The pagelayout to use for first time setups 553 PageLayout=setup_pagelayout.tpl 554 # List of tests to be run, critical tests must pass for the setup to continue 555 CriticalTests=directory_permissions;phpversion;database_extensions;image_conversion;open_basedir;safe_mode;memory_limit;execution_time;magic_quotes_runtime;allow_url_fopen;accept_path_info;php_session;file_upload 556 OptionalTests=php_magicquotes;zlib_extension;mbstring_extension;imagegd_extension;imagemagick_program;database_all_extensions;php_register_globals;texttoimage_functions 557 OverrideSiteDesign=standard 558 559 [RegionalSettings] 560 # The locale for your site 561 Locale=eng-GB 562 # Set this if the http locale in the locale is wrong 563 HTTPLocale= 564 # Set this if you want to run the entire PHP system in a given 565 # locale, this means that PHP will be locale aware when dealing 566 # with strings (e.g making characters in a string into lowercase). (C is a 567 # special locale meaning 7-bit ASCII). Examples for this setting include 568 # "german", "de_DE.ISO-8859-1"; depending on your operating system. 569 SystemLocale= 570 # The default language for content objects 571 # Note: Changing this can have catastrophic consequences 572 # since there might not be any content objects with 573 # the selected language. Instead the content/translations 574 # page should be used for adding/removing translations. 575 ContentObjectLocale=eng-GB 576 # If enabled, ShowUntranslatedObjects will force showing the objects 577 # existing in other languages than those specified in SiteLanguageList 578 ShowUntranslatedObjects=disabled 579 # Prioritized list of languages. Only objects existing in these 580 # languages will be shown (unless ShowUntranslatedObjects is enabled). 581 # If an object exists in more languages, that one which is first in 582 # SiteLanguageList will be used to render it. 583 SiteLanguageList[] 584 # Controls how xml is stored in content objects. 585 # disabled - Store with utf8 586 # enabled - Store with current charset 587 # if any other text is entered it is assumed to be a charset and will be used 588 ContentXMLCharset=enabled 589 # Use either disabled to disable all text translation (faster) or enabled. 590 # Text translation is automatically disabled when the Locale is set to eng-GB 591 TextTranslation=enabled 592 TranslationCache=enabled 593 # Use either enabled to see which locale files are loaded or disabled to supress debug 594 Debug=disabled 595 # By enabling development mode all untranslated texts will be translated 596 # using the bork rules. 597 # See lib/ezi18n/classes/ezborktranslator.php for more information. 598 DevelopmentMode=disabled 599 TranslationRepository=share/translations/ 600 TranslationExtensions[] 601 602 [UnitSettings] 603 # List of units which acts as binary measures 604 BinaryUnits=byte;bit 605 # True means use Ki, Mi etc. for binary measures instead of K, M etc. 606 # This is good if you want to follow proper naming standards. 607 UseSIUnits=false 608 609 [FileSettings] 610 # The directory eZ publish should use when creating temporary files. 611 # e.g when creating an image variation 612 TemporaryDir=/tmp/ 613 # Permission for temporary files, setting it to 0777 means that anyone 614 # can read and write the files and can be considered a security risk. 615 # It's preferred to use 0770 and make sure the web server has correct 616 # user/group access. 617 TemporaryPermissions=0777 618 # Where to place new files for storage, it's relative to var directory 619 StorageDir=storage 620 # Permission for storage directories, setting it to 0777 means that anyone 621 # can read and write the directories and can be considered a security risk. 622 # It's preferred to use 0770 and make sure the web server has correct 623 # user/group access. 624 StorageDirPermissions=0777 625 # Permission for storage files, setting it to 0666 means that anyone 626 # can read and write the files and can be considered a security risk. 627 # It's preferred to use 0660 and make sure the web server has correct 628 # user/group access. 629 StorageFilePermissions=0666 630 # Directory depth for storing files, this means that it will create 631 # directories out of the first n characters to make sure not too 632 # many files are placed in one directory. For instance a file name 633 # newfile.png will be placed in n/e/w/newfile.png. 634 DirDepth=3 635 # The root directory where all log files, cache files 636 # and other stored files are created. 637 VarDir=var 638 # The name of the cache dir, it's a subdir of VarDir 639 # The cache dir can be set absolute, then VarDir will not be prepended 640 # e.g. /var/ezpublish/cache 641 CacheDir=cache 642 # The name of the log dir, it's a subdir of VarDir 643 LogDir=log 644 645 [TemplateSettings] 646 # DEPRECATED: AutoloadPath is deprecated, use AutoloadPathList instead. 647 # This setting may be removed in the future. 648 # Similar to AutoloadPathList but uses a ; (semicolon) separated 649 # list of directories instead of an array. 650 AutoloadPath= 651 # A list of directories to look for eztemplateautoload.php files 652 # These files will be used to automatically load in template functions and operators 653 # You can new ones if you create custom template code. 654 AutoloadPathList[] 655 AutoloadPathList[]=lib/eztemplate/classes/ 656 AutoloadPathList[]=kernel/common/ 657 AutoloadPathList[]=lib/ezpdf/classes/ 658 # A list of extensions which have template autoloads. 659 # Only specify the extension name, not the path. 660 # The extension must contain a subdirectory called autoloads. 661 ExtensionAutoloadPath[] 662 # Use either enabled to see which template files are loaded or disabled to supress debug 663 Debug=disabled 664 # If enabled will add code to display the template name in the browser 665 # If Debug is disabled then nothing happens 666 ShowXHTMLCode=enabled 667 # Whether to show debug of functions and operators when 668 # processing nodes. 669 # This only meant for kernel developers to check which 670 # operators and functions are called. 671 # Note: Will only work when template compiler is off 672 ShowMethodDebug=disabled 673 # If enabled will add a table with templates used to render a page. 674 # DebugOutput should be enabled too. 675 ShowUsedTemplates=disabled 676 # Determines whether the internal node tree should be cached, by enabling this the loading 677 # and parsing of templates is significantly reduced. 678 NodeTreeCaching=disabled 679 # Determines whether the templates should be compiled to PHP code, by enabling this the loading 680 # and parsing of templates is omitted and template processing is significantly reduced. 681 # Note: The first time the templates are compiled it will take a long time, use the 682 # bin/php/eztc.php script to prepare all your templates. 683 TemplateCompile=enabled 684 # Controls whether further optimizations should be performed on compiled 685 # templates 686 TemplateOptimization=enabled 687 # Controls whether to include formatting in compiled templates or not. 688 UseFormatting=disabled 689 # Controls all template base caching mechanisms, if disabled they will never be 690 # used. 691 # The elements currently controlled by this is: 692 # - cache-block 693 TemplateCache=enabled 694 # Controls whether expiried cache-blocks with 'subtree_expiry' parameter will 695 # be removed from disk immediately or not. 696 # If enabled it should increase performance of large sites but you should remove 697 # expiried caches manually or using cronjob 'cronjobs/subtreeexpirycleanup.php'. 698 DelayedCacheBlockCleanup=disabled 699 # Controls whether compiled templates should be stored gzip compressed on disk. 700 # This drastically reduces disk usage. 701 TemplateCompression=disabled 702 # Controls if development is enabled or not. 703 # When enabled the system will perform more checks like modification time on 704 # compiled vs source file and will reduce need for clearing template compiled 705 # files. 706 # Note: Live sites should not have this enabled since it increases file access 707 # and can be slower. 708 # Note: When switching this setting the template compiled files must be cleared. 709 DevelopmentMode=disabled 710 711 # NOTE: 712 # The following settings are for template compilation development only 713 # and are not useful for normal sites. 714 # 715 # Whether to include comments inside cache files or not. 716 CompileComments=disabled 717 # Whether to include debug accumulators. 718 CompileAccumulators=disabled 719 # Whether to include debug timing points. 720 CompileTimingPoints=disabled 721 # Whether to fallback code for resource handling 722 # Should not be needed unless one has to debug the compilation process 723 CompileResourceFallback=disabled 724 # If disabled the template compilation will not include placement information for nodes 725 # The placement information is used to display line and column numbers for warnings and errors. 726 CompileNodePlacements=enabled 727 # If disabled the template compilation files will only be generated but 728 # not executed, this means that the normal template process is used for the result. 729 CompileExecution=enabled 730 # If enabled the templates are always compiled even if a 731 # sufficient cache already exists. 732 CompileAlwaysGenerate=disabled 733 # An array with node trees to include in the compiled template file. 734 # Including them will increase the size of the cache files and 735 # is only useful for template compilation development. 736 # Possible entries are: 737 # transformed - The tree after node transformation has been done 738 # static - The tree after static extraction has been done 739 # combined - The tree after static element combines has been done 740 # original - The originally parsed tree 741 CompileIncludeNodeTree[] 742 #CompileIncludeNodeTree[]=final 743 #CompileIncludeNodeTree[]=transformed 744 #CompileIncludeNodeTree[]=static 745 #CompileIncludeNodeTree[]=combined 746 #CompileIncludeNodeTree[]=original 747 748 [ContentSettings] 749 # Node where all new related objects are default placed 750 # OBSOLETE: See content.ini for more advanced settings 751 SurplusNode=3 752 # Where to place view cache files, it's a subdir of the global cache dir. 753 CacheDir=content 754 # Whether to use view caching or not 755 ViewCaching=enabled 756 # A list of viewmodes which will be cached 757 CachedViewModes=full;sitemap;pdf 758 # A semicolon separated list of the user preferences (possibly with the default value after the '=' sign) 759 # on which the viewmode, determined by an array key, dependes. 760 # Ex.: CachedViewPreferences[full]=show_more_info=0;show_right_menu 761 CachedViewPreferences[] 762 # A list of viewmodes which displays more than just it's immediate children 763 # These viewmodes are too complex to cleanup file by file and needs to 764 # be expired globally. 765 ComplexDisplayViewModes=sitemap 766 # The threshold for file cleanup, if it is exceeded a global expiry is used instead 767 # The value is the number of affected nodes 768 CacheThreshold=60 769 # What to do when editing an object that has draft versions newer than the current version. 770 # Use 'showversions' to select which version to edit, or 'usecurrent' to always edit the current version. 771 EditDirtyObjectAction=showversions 772 # Set to 'enabled' to make eZ publish pre-cache the view cache files on publishing 773 PreViewCache=disabled 774 # List of siteaccesses that will have preview cache generated on publish. 775 PreCacheSiteaccessArray[]=admin 776 PreCacheSiteaccessArray[]=base 777 # A list of users to pre-generate the content cache for 778 # The list should contain the User ID or a special identifier, possible identifiers are: 779 # - 'anonymous' for the anonymous user. 780 # - 'current' for the currently logged in user 781 # The default is to pregenerate for anonymous users 782 PreviewCacheUsers[] 783 PreviewCacheUsers[]=anonymous 784 # Set to 'enabled' to make eZ publish store all published objects as static 785 # HTML. This requires also settings in staticcache.ini and special URL rewrite 786 # rules. 787 StaticCache=disabled 788 789 790 [MailSettings] 791 # The type of transport for emails, can be either sendmail or SMTP 792 # Window users should probably use SMTP 793 # For debug purposes you can use file for sending mail to a log file 794 Transport=sendmail 795 # Configuration for SMTP 796 TransportServer= 797 TransportPort=25 798 TransportUser= 799 TransportPassword= 800 AdminEmail=nospam@ez.no 801 # The address which will be set at the sender of the e-mail as default 802 EmailSender= 803 # Which charset are allowed to send directly, those that do not match 804 # is converted to OutputCharset before being sent. 805 AllowedCharsets[] 806 AllowedCharsets[]=us-ascii 807 AllowedCharsets[]=utf-8 808 AllowedCharsets[]=iso-8859-1 809 AllowedCharsets[]=iso-8859-15 810 AllowedCharsets[]=cp1252 811 # Which charset to convert emails to if they are not in correct format 812 OutputCharset=utf-8 813 # Content type of mails, for instance text/plain or text/html 814 ContentType=text/plain 815 # The line endings used for headers in mail messages. If you need to use 816 # control characters like LF or CR you need to use it's urlencoded value, for 817 # example %0A for LF and %0D for CR. The default setting is what RFC 2045 818 # requires: CRLF 819 # If it contains auto the system will try to determine the line-ending 820 # based on the current operating system. 821 HeaderLineEnding=auto 822 # Set additional sendmail options here. 823 # -f <sender> is default in PHP SafeMode. 824 # Please use a line for every (sub)option. e.g. 825 # SendmailOptions[]=-r 826 # SendmailOptions[]=muchspam@ez.no 827 SendmailOptions[] 828 829 [ShopSettings] 830 # This settings controls when the basket is cleared. 831 # It can contain the following values: 832 # - disabled - Means that the basket is cleared when the shop/checkout 833 # trigger is done. In practice this means when a user 834 # has payed the product and payment system is finished. 835 # This is the default value since it means the user can 836 # cancel the order and go back to the shop with the 837 # basket still intact. 838 # - enabled - Means to clear the basket as soon as the user clicks 839 # confirm in the shop/confirmorder trigger. This may 840 # needed by some payment system, check the documentation 841 # for the system to see if this needs to be enabled. 842 # The inpact on the users is that the basket will not be 843 # available when the payment is cancelled. 844 # 845 # To put it in context the entire checkout process consists of these triggers: 846 # - shop/confirmorder - The user shown the total price with shipping 847 # and other calculations. When the user clicks 848 # confirm the shop/checkout trigger is started. 849 # - shop/checkout - Starts a new temporary order and runs any payment 850 # methods (or other workflows). Once it is done 851 # the order is activated and the basket is cleared. 852 ClearBasketOnCheckout=disabled 853 # This settings is used when a user logs out. 854 # It can contain the following values: 855 # - disabled - Means that the basket will NOT be cleared when a user logs out. 856 # - enabled - Means that the basket will be cleared when a user logs out. 857 ClearBasketOnLogout=disabled 858 # Controls what happens after an item is added to the basket 859 # It can contain one of these entries: 860 # - basket - Redirect back to the basket to show the newly added item 861 # - reload - Redirect back to where the user was previously, this allows 862 # the user to continue shopping. 863 RedirectAfterAddToBasket=basket 864 865 # Controls if we should send an order confirmation email to admin and the user or not 866 # when an order is completed and confirmed. 867 SendOrderEmail=enabled 868 869 [OverrideSettings] 870 Cache=enabled 871 872 [FormProcessSettings] 873 # Whether the form module is allowed or not 874 # The form is by design insecure so don't enable unless you know 875 # what you are doing. 876 Module=disabled 877 878 # 879 # Settings for RSS 880 # 881 [RSSSettings] 882 # RSS import handler Extension settings 883 # Must be placed in <extension directory>/<active extension>/rss/ezrssimporthandler.php 884 ActiveExtensions[] 885 886 # List of numbers of objects being included in the RSS feed. 887 # This list is being shown in the RSS export edit admin interface. 888 NumberOfObjectsList[] 889 NumberOfObjectsList[]=5 890 NumberOfObjectsList[]=10 891 NumberOfObjectsList[]=20 892 NumberOfObjectsList[]=30 893 NumberOfObjectsList[]=40 894 NumberOfObjectsList[]=50 895 # Selected by default in the RSS export edit GUI. 896 NumberOfObjectsDefault=20 897 898 # Cache Time in Seconds 899 # 900 # The timespan a RSS feed is served from the cache in seconds. 901 # After the end of the timespan, the RSS feed is regenerated and 902 # again served from the cache. 903 # 904 # This means that changes to the content being fed show up 905 # after the maximum cache time at the latest. 906 # 907 # "CacheTime = 0" turns off cacheing. 908 CacheTime=1200 909 910 # The list of available RSS versions. 911 AvailableVersionList[] 912 AvailableVersionList[]=1.0 913 AvailableVersionList[]=2.0 914 # Selected by default in the RSS export edit GUI. 915 DefaultVersion=1.0 916 917 [BackwardCompatibilitySettings] 918 # Enables or disables compatibility with admin design from 919 # eZPublish 3.4. Since some of the new features are unavailable from 920 # 3.4 design you can set this setting to 'enabled' to turn 921 # 'new features' off ( e.g. 'locations' will always be visible 922 # during editing an object ) to prevent unexpected situations. 923 UsingDesignAdmin34=disabled 924 925 # Enables or disables the advanced edit interface for the 926 # "ezobjectrelationlist" (aka "Object relations") datatype. 927 # The default setting is "disabled", which means that the 928 # system will provide an interface that is consistent with the 929 # "ezobjectrelation" datatype. When "enabled", the old/advanced 930 # interface will be shown, and thus the datatype will allow 931 # embedded editing of objects. In addition, it will also allow 932 # the creation of new objects (without node assignments). 933 AdvancedObjectRelationList=disabled 934 935 # Enables typing of content object relations 936 # By default uses only common with embedding 937 # When enabled - uses common, embed and link types of relation 938 ObjectRelationTyped=enabled 939 940 # 941 # Settings control amount of mails allowed to to be sent to one email address 942 # 943 [TipAFriend] 944 MaxRequestsPerTimeframe=5 945 TimeFrame=1 946 #in hours 947 # Email used as sender email in tipafriend mails, this is needed when you use 948 # smtp servers with closed relaying 949 # Assign a non-empty value to FromEmail for it to be used as from address. 950 FromEmail= 951 952 953 # 954 # Settings for SSL zones 955 # For more information please look at doc/features/3.8/ssl_zones.txt. 956 # 957 [SSLZoneSettings] 958 # Enable/disable the SSL zones functionality. 959 SSLZones=disabled 960 # Content subtrees we must use SSL for. 961 # (currently, only content/view and content/edit respect this setting) 962 # 963 # Examples: 964 # SSLSubtrees[]=/news 965 # SSLSubtrees[]=/polls 966 SSLSubtrees[] 967 # Default access mode is plain HTTP. 968 # Define a view as 'ssl' to force HTTPS access mode for this view. 969 # If a view is defined as 'keep' then access mode is unknown 970 # for this view, and the previous access mode is kept. 971 # 972 # Examples: 973 # ModuleViewAccessMode[shop/add]=ssl 974 # ModuleViewAccessMode[shop/basket]=ssl 975 # 976 # Do not remove this line unless you know what you're doing: 977 ModuleViewAccessMode[content/*]=keep 978 979 980 [HTTPHeaderSettings] 981 # Enable/disable custom HTTP header data. 982 CustomHeader=disabled 983 984 # Header list. Contains all HTTP which should override standard ones. 985 HeaderList[] 986 HeaderList[]=Cache-Control 987 HeaderList[]=Pragma 988 HeaderList[]=Expires 989 990 # Default Cache-Control header 991 # HTTP Headers are specified using the following format : 992 # <HTTP header>[<eZ publish path|module{/view}>]=<value>{;<depth>{;<level>}} 993 # 994 # Example : 995 # # Set Pragma HTTP header to no-cache for whole site, except /news, and 2 levels below news. 996 # Pragma[] 997 # Pragma[/]=no-cache;2 998 # Pragma[/news]=;2;0 999 1000 # Cache-Control values are set directly 1001 Cache-Control[] 1002 Cache-Control[/]=no-cache, must-revalidate 1003 1004 # Pragma values are set directly 1005 Pragma[] 1006 Pragma[/]=no-cache 1007 1008 # Expires specifies time offset compared to current time 1009 # Default expired 2 hours ago ( no caching ) 1010 Expires[] 1011 Expires[/]=-7200 1012 1013 [TimeZoneSettings] 1014 # Override this value to set timezone to other than OS default. 1015 # See /usr/share/zoneinfo/zone.tab for possible values ( 3rd column ). 1016 # Example: TimeZone=America/Antigua 1017 # 1018 # Notice: This will not work on threaded web servers or on Windows. 1019 # Use only with Apache 1.3 or 2.0 prefork on *nix. 1020 TimeZone= 1021 1022 [eZINISettings] 1023 # Use 'ReadonlySettingList' to set read-only settings. 1024 # usage: 1025 # for specific setting: 1026 # ini-filename/section_name/setting_name 1027 # for all settings in section: 1028 # ini-filename/section_name/* 1029 # for all settings in ini-file: 1030 # ini-filename/* 1031 ReadonlySettingList[] 1032 ReadonlySettingList[]=template.ini/PHP/PHPOperatorList 1033 ReadonlySettingList[]=image.ini/ImageMagick/ExecutablePath 1034 ReadonlySettingList[]=image.ini/ImageMagick/Executable 1035 1036 [ProxySettings] 1037 # If an user wants to use proxy in linkcheck.php/rssimport.php or downloading site packages in "setup wizard". 1038 # If empty proxy will not be used. 1039 # Example: http://<host>:<port> 1040 ProxyServer= 1041 User= 1042 Password= 1043
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sat Feb 24 10:30:04 2007 | par Balluche grâce à PHPXref 0.7 |