1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
Template: libapache-sessionx-perl/priv_keys
Type: string
Description: For internal use only
Keys used to find configured stores.
Template: libapache-sessionx-perl/action
Type: select
#flag:translate!:3
__Choices: Finished, Add New, ${stores}
Default: Finished
_Description: Action:
Choose "Add New" to add a new session storage method, or choose an already
configured store to modify or delete it.
.
Choose "Finished" when done.
Template: libapache-sessionx-perl/store_action
Type: select
__Choices: Modify, Delete
Default: Modify
_Description: Action to perform on ${store}:
Template: libapache-sessionx-perl/store_type
Type: select
Choices: File, FileFile, DB_File, Mysql, MysqlMysql, Oracle, Sybase, Postgres
_Description: Session storage method:
Please select the storage method you wish to use:
File: File-based, using semaphores for locking.
FileFile: File-based, using lockfiles.
DB_File: DBM file storage, using lockfiles.
Mysql: MySQL storage, using semaphores for locking.
MysqlMysql: MySQL storage, using MySQL for locking.
Oracle: Oracle storage and locking.
Sybase: Sybase storage and locking.
Postgres: PostgreSQL storage and locking.
.
The file-based methods are the simplest to configure, but don't scale to
the needs of a high-volume site.
.
Semaphore locking is faster than file-based locking, but cannot be shared
between multiple hosts; in such a situation, you probably should be using
one of the database backends anyway.
Template: libapache-sessionx-perl/store_name
Type: string
_Description: Store name:
Please choose the name you will use when referring to this storage method.
Template: libapache-sessionx-perl/store_file_directory
Type: string
_Description: File storage directory:
Please choose the directory in which to store session data. Each
session will be a new file in this directory.
Template: libapache-sessionx-perl/store_file_lockdirectory
Type: string
_Description: Lockfile storage directory:
Please choose the directory in which to store session locks. Each
lock is a new file in this directory.
.
The filenames are chosen such that they will not conflict with session
data, so you may repeat a file storage directory here.
Template: libapache-sessionx-perl/store_dbfile_filename
Type: string
_Description: Database file:
Please enter the DBM file used to store sessions.
Template: libapache-sessionx-perl/store_mysql_datasource
Type: string
Default: dbi:mysql:sessions
_Description: MySQL data source:
Please choose the MySQL data source used for storing session data, in
the form of a Perl DBI DSN (see the DBI manpage).
.
The general form is "dbi:mysql:<database>". See the DBD::mysql manpage for
more details.
Template: libapache-sessionx-perl/store_mysql_username
Type: string
_Description: MySQL username:
Please enter the username used to access the session database. If
left blank, the current user's login will be used.
Template: libapache-sessionx-perl/store_mysql_password
Type: password
_Description: MySQL password:
Please enter the password used to access the session database. May be
left blank if no password is needed.
Template: libapache-sessionx-perl/store_mysql_lockdatasource
Type: string
Default: dbi:mysql:sessions
_Description: MySQL lock data source:
Please enter the MySQL data source used for locking, in the form of a
Perl DBI DSN (see the DBI manpage). Locking is performed using
MySQL's GET_LOCK and RELEASE_LOCK functions.
.
The general form is "dbi:mysql:<database>". See the DBD::mysql manpage for
more details.
.
You will almost certainly want to use the same value you used for the
session data.
Template: libapache-sessionx-perl/store_mysql_lockusername
Type: string
_Description: MySQL username for locking:
Please enter the username used to access the database for locking. If
left blank, the current user's login will be used.
Template: libapache-sessionx-perl/store_mysql_lockpassword
Type: password
_Description: MySQL password for locking:
Please enter the password used to access the database for
locking. May be left blank if no password is needed.
Template: libapache-sessionx-perl/store_oracle_datasource
Type: string
Default: dbi:Oracle:sessions
_Description: Oracle data source:
Please enter the Oracle data source used for storing session data, in
the form of a Perl DBI DSN (see the DBI manpage). The general
form is "dbi:Oracle:<database>". See the DBD::Oracle manpage for more
details.
Template: libapache-sessionx-perl/store_oracle_username
Type: string
_Description: Oracle username:
Please enter the username used to access the session database. If
left blank, the current user's login will be used.
Template: libapache-sessionx-perl/store_oracle_password
Type: password
_Description: Oracle password:
Please enter the password used to access the session database. May be left blank if no
password is needed.
Template: libapache-sessionx-perl/store_sybase_datasource
Type: string
Default: dbi:Sybase:database=sessions
_Description: Sybase data source:
Please enter the Sybase data source used for storing session data, in
the form of a Perl DBI DSN (see the DBI manpage).
.
The general form is "dbi:Sybase:database=<database>;server=<server>". See
the DBD::Sybase manpage for more details.
Template: libapache-sessionx-perl/store_sybase_username
Type: string
_Description: Sybase username:
Please enter the username used to access the session database. If
left blank, the current user's login will be used.
Template: libapache-sessionx-perl/store_sybase_password
Type: password
_Description: Sybase password:
Please enter the password used to access the session database. May be
left blank if no password is needed.
Template: libapache-sessionx-perl/store_postgres_datasource
Type: string
Default: dbi:Pg:dbname=sessions
_Description: PostgreSQL data source:
Please enter the PostgreSQL data source used for storing session
data, in the form of a Perl DBI DSN (see the DBI manpage).
.
The general form is "dbi:Pg:dbname=<database>;host=<server>". See the
DBD::Pg manpage for more details.
Template: libapache-sessionx-perl/store_postgres_username
Type: string
_Description: PostgreSQL username:
Please enter the username used to access the session database. If left blank, the current
user's login will be used.
Template: libapache-sessionx-perl/store_postgres_password
Type: password
_Description: PostgreSQL password:
Please enter the password used to access the session database. May be
left blank if no password is needed.
Template: libapache-sessionx-perl/default_store
Type: select
Choices: ${stores}
_Description: Default storage method:
Please choose the storage method that will be used by default if you
don't specify a particular storage method at run time.
|