Name

Limit — set or modify various limits

SYNOPSIS

DESCRIPTION

Table 1. 

Name Default Overview
cart_quantity_per_line none maximum quantity per item in cart
chained_cost_levels 32  
dbm_open_retries 10 number of retries opening DBM file
file_lock_retries 5 number of retries on file locking
ip_session_expire 60 minutes see RobotLimit
no_ship_message    
list_text_overflow    
list_text_size - maximum length of text in lists
lockout_reset_seconds 30 see RobotLimit
logdata_error_length -  
option_list 5000  
override_tag    
robot_expire 1 day see RobotLimit
session_id_length 8 length of session identifier, see session


DIRECTIVE TYPE AND DEFAULT VALUE

Catalog directive

EXAMPLES

Example:

Limit robot_expire 0.01

NOTES

AVAILABILITY

Limit is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 558

['Limit',       'hash',    'option_list 5000 chained_cost_levels 32 robot_expire 1'],

Source: lib/Vend/Config.pm
Line 3188 (context shows lines 3188-3205)

sub parse_hash {
my($item,$settings) = @_;
if (! $settings) {
  return $HashDefaultBlank{$item} ? '' : {};
}

my $c;

if(defined $C) {
  $c = $C->{$item} || {};
}
else {
  no strict 'refs';
  $c = ${"Global::$item"} || {};
}

return hash_string($settings,$c);
}

AUTHORS

Interchange Development Group

SEE ALSO

CookiePattern(7ic), RobotLimit(7ic)

DocBook! Interchange!