Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../var/softacul.../ops
File: config.inc.php
; <?php exit; // DO NOT DELETE?>
[0] Fix | Delete
; DO NOT DELETE THE ABOVE LINE!!!
[1] Fix | Delete
; Doing so will expose this configuration file through your web site!
[2] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[3] Fix | Delete
[4] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[5] Fix | Delete
;
[6] Fix | Delete
; config.TEMPLATE.inc.php
[7] Fix | Delete
;
[8] Fix | Delete
; Copyright (c) 2014-2021 Simon Fraser University
[9] Fix | Delete
; Copyright (c) 2003-2021 John Willinsky
[10] Fix | Delete
; Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
[11] Fix | Delete
;
[12] Fix | Delete
; OPS Configuration settings.
[13] Fix | Delete
; Rename config.TEMPLATE.inc.php to config.inc.php to use.
[14] Fix | Delete
;
[15] Fix | Delete
;
[16] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[17] Fix | Delete
[18] Fix | Delete
[19] Fix | Delete
;;;;;;;;;;;;;;;;;;;;
[20] Fix | Delete
; General Settings ;
[21] Fix | Delete
;;;;;;;;;;;;;;;;;;;;
[22] Fix | Delete
[23] Fix | Delete
[general]
[24] Fix | Delete
[25] Fix | Delete
; Set this to On once the system has been installed
[26] Fix | Delete
; (This is generally done automatically by the installer)
[27] Fix | Delete
installed = On
[28] Fix | Delete
[29] Fix | Delete
; The canonical URL to the OPS installation (excluding the trailing slash)
[30] Fix | Delete
base_url = "[[softurl]]"
[31] Fix | Delete
[32] Fix | Delete
; Enable strict mode. This will more aggressively cause errors/warnings when
[33] Fix | Delete
; deprecated behaviour exists in the codebase.
[34] Fix | Delete
strict = Off
[35] Fix | Delete
[36] Fix | Delete
; Session cookie name
[37] Fix | Delete
session_cookie_name = OPSSID
[38] Fix | Delete
[39] Fix | Delete
; Session cookie path; if not specified, defaults to the detected base path
[40] Fix | Delete
; session_cookie_path = /
[41] Fix | Delete
[42] Fix | Delete
; Number of days to save login cookie for if user selects to remember
[43] Fix | Delete
; (set to 0 to force expiration at end of current session)
[44] Fix | Delete
session_lifetime = 30
[45] Fix | Delete
[46] Fix | Delete
; SameSite configuration for the cookie, see possible values and explanations
[47] Fix | Delete
; at https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite
[48] Fix | Delete
; To set the "Secure" attribute for the cookie see the setting force_ssl at the [security] group
[49] Fix | Delete
session_samesite = Lax
[50] Fix | Delete
[51] Fix | Delete
; Enable support for running scheduled tasks
[52] Fix | Delete
; Set this to On if you have set up the scheduled tasks script to
[53] Fix | Delete
; execute periodically
[54] Fix | Delete
scheduled_tasks = Off
[55] Fix | Delete
[56] Fix | Delete
; Site time zone
[57] Fix | Delete
; Please refer to https://www.php.net/timezones for a full list of supported
[58] Fix | Delete
; time zones.
[59] Fix | Delete
; I.e.: "Europe/Amsterdam"
[60] Fix | Delete
; time_zone="Europe/Amsterdam"
[61] Fix | Delete
time_zone = UTC
[62] Fix | Delete
[63] Fix | Delete
; Short and long date formats
[64] Fix | Delete
date_format_short = "Y-m-d"
[65] Fix | Delete
date_format_long = "F j, Y"
[66] Fix | Delete
datetime_format_short = "Y-m-d h:i A"
[67] Fix | Delete
datetime_format_long = "F j, Y - h:i A"
[68] Fix | Delete
time_format = "h:i A"
[69] Fix | Delete
[70] Fix | Delete
; Use fopen(...) for URL-based reads. Modern versions of dspace
[71] Fix | Delete
; will not accept requests using fopen, as it does not provide a
[72] Fix | Delete
; User Agent, so this option is disabled by default. If this feature
[73] Fix | Delete
; is disabled by PHP's configuration, this setting will be ignored.
[74] Fix | Delete
allow_url_fopen = Off
[75] Fix | Delete
[76] Fix | Delete
; Base URL override settings: Entries like the following examples can
[77] Fix | Delete
; be used to override the base URLs used by OPS. If you want to use a
[78] Fix | Delete
; proxy to rewrite URLs to OPS, configure your proxy's URL with this format.
[79] Fix | Delete
; Syntax: base_url[server_path] = http://www.example.com
[80] Fix | Delete
;
[81] Fix | Delete
; Example1: URLs that aren't part of a particular server.
[82] Fix | Delete
; Example1: base_url[index] = http://www.example.com
[83] Fix | Delete
; Example2: URLs that map to a subdirectory.
[84] Fix | Delete
; Example2: base_url[myServer] = http://www.example.com/myServer
[85] Fix | Delete
; Example3: URLs that map to a subdomain.
[86] Fix | Delete
; Example3: base_url[myOtherServer] = http://myOtherServer.example.com
[87] Fix | Delete
[88] Fix | Delete
; Generate RESTful URLs using mod_rewrite. This requires the
[89] Fix | Delete
; rewrite directive to be enabled in your .htaccess or httpd.conf.
[90] Fix | Delete
; See FAQ for more details.
[91] Fix | Delete
restful_urls = Off
[92] Fix | Delete
[93] Fix | Delete
; Restrict the list of allowed hosts to prevent HOST header injection.
[94] Fix | Delete
; See docs/README.md for more details. The list should be JSON-formatted.
[95] Fix | Delete
; An empty string indicates that all hosts should be trusted (not recommended!)
[96] Fix | Delete
; Example:
[97] Fix | Delete
; allowed_hosts = '["myjournal.tld", "anotherjournal.tld", "mylibrary.tld"]'
[98] Fix | Delete
allowed_hosts = "[\"[[domhost]]\"]"
[99] Fix | Delete
[100] Fix | Delete
; Allow the X_FORWARDED_FOR header to override the REMOTE_ADDR as the source IP
[101] Fix | Delete
; Set this to "On" if you are behind a reverse proxy and you control the X_FORWARDED_FOR
[102] Fix | Delete
; Warning: This defaults to "On" if unset for backwards compatibility.
[103] Fix | Delete
trust_x_forwarded_for = Off
[104] Fix | Delete
[105] Fix | Delete
; Set the maximum number of citation checking processes that may run in parallel.
[106] Fix | Delete
; Too high a value can increase server load and lead to too many parallel outgoing
[107] Fix | Delete
; requests to citation checking web services. Too low a value can lead to significantly
[108] Fix | Delete
; slower citation checking performance. A reasonable value is probably between 3
[109] Fix | Delete
; and 10. The more your connection bandwidth allows the better.
[110] Fix | Delete
citation_checking_max_processes = 3
[111] Fix | Delete
[112] Fix | Delete
; Display a message on the site admin and server manager user home pages if there is an upgrade available
[113] Fix | Delete
show_upgrade_warning = On
[114] Fix | Delete
[115] Fix | Delete
; Set the following parameter to off if you want to work with the uncompiled (non-minified) JavaScript
[116] Fix | Delete
; source for debugging or if you are working off a development branch without compiled JavaScript.
[117] Fix | Delete
enable_minified = On
[118] Fix | Delete
[119] Fix | Delete
; Provide a unique site ID and OAI base URL to PKP for statistics and security
[120] Fix | Delete
; alert purposes only.
[121] Fix | Delete
enable_beacon = On
[122] Fix | Delete
[123] Fix | Delete
; Set this to "On" if you would like to only have a single, site-wide Privacy
[124] Fix | Delete
; Statement, rather than a separate Privacy Statement for each server. Setting
[125] Fix | Delete
; this to "Off" will allow you to enter a site-wide Privacy Statement as well
[126] Fix | Delete
; as separate Privacy Statements for each server.
[127] Fix | Delete
sitewide_privacy_statement = Off
[128] Fix | Delete
[129] Fix | Delete
; The number of days a new user has to validate their account
[130] Fix | Delete
; A new user account will be expired and removed if this many days have passed since the user registered
[131] Fix | Delete
; their account, and they have not validated their account or logged in. If the user_validation_period is set to
[132] Fix | Delete
; 0, unvalidated accounts will never be removed. Use this setting to automatically remove bot registrations.
[133] Fix | Delete
user_validation_period = 28
[134] Fix | Delete
[135] Fix | Delete
; Turn sandbox mode to On in order to prevent the software from interacting with outside systems.
[136] Fix | Delete
; Use this for development or testing purposes.
[137] Fix | Delete
sandbox = Off
[138] Fix | Delete
[139] Fix | Delete
[140] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;
[141] Fix | Delete
; Database Settings ;
[142] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;
[143] Fix | Delete
[144] Fix | Delete
[database]
[145] Fix | Delete
[146] Fix | Delete
driver = mysqli
[147] Fix | Delete
host = [[softdbhost]]
[148] Fix | Delete
username = [[softdbuser]]
[149] Fix | Delete
password = [[softdbpass]]
[150] Fix | Delete
name = [[softdb]]
[151] Fix | Delete
[152] Fix | Delete
; Set the non-standard port and/or socket, if used
[153] Fix | Delete
; port = 3306
[154] Fix | Delete
; unix_socket = /var/run/mysqld/mysqld.sock
[155] Fix | Delete
[156] Fix | Delete
; Database collation
[157] Fix | Delete
; collation = utf8_general_ci
[158] Fix | Delete
[159] Fix | Delete
; Enable database debug output (very verbose!)
[160] Fix | Delete
debug = Off
[161] Fix | Delete
[162] Fix | Delete
;;;;;;;;;;;;;;;;;;
[163] Fix | Delete
; Cache Settings ;
[164] Fix | Delete
;;;;;;;;;;;;;;;;;;
[165] Fix | Delete
[166] Fix | Delete
[cache]
[167] Fix | Delete
[168] Fix | Delete
; Choose the type of object data caching to use. Options are:
[169] Fix | Delete
; - memcache: Use the memcache server configured below
[170] Fix | Delete
; - xcache: Use the xcache variable store
[171] Fix | Delete
; - apc: Use the APC variable store
[172] Fix | Delete
; - none: Use no caching.
[173] Fix | Delete
object_cache = none
[174] Fix | Delete
[175] Fix | Delete
; Enable memcache support
[176] Fix | Delete
memcache_hostname = localhost
[177] Fix | Delete
memcache_port = 11211
[178] Fix | Delete
[179] Fix | Delete
; For site visitors who are not logged in, many pages are often entirely
[180] Fix | Delete
; static (e.g. About, the home page, etc). If the option below is enabled,
[181] Fix | Delete
; these pages will be cached in local flat files for the number of hours
[182] Fix | Delete
; specified in the web_cache_hours option. This will cut down on server
[183] Fix | Delete
; overhead for many requests, but should be used with caution because:
[184] Fix | Delete
; 1) Things like server metadata changes will not be reflected in cached
[185] Fix | Delete
; data until the cache expires or is cleared, and
[186] Fix | Delete
; 2) This caching WILL NOT RESPECT DOMAIN-BASED SUBSCRIPTIONS.
[187] Fix | Delete
; However, for situations like hosting high-volume open access servers, it's
[188] Fix | Delete
; an easy way of decreasing server load.
[189] Fix | Delete
;
[190] Fix | Delete
; When using web_cache, configure a tool to periodically clear out cache files
[191] Fix | Delete
; such as CRON. For example, configure it to run the following command:
[192] Fix | Delete
; find .../ops/cache -maxdepth 1 -name wc-\*.html -mtime +1 -exec rm "{}" ";"
[193] Fix | Delete
web_cache = Off
[194] Fix | Delete
web_cache_hours = 1
[195] Fix | Delete
[196] Fix | Delete
[197] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;;;;;
[198] Fix | Delete
; Localization Settings ;
[199] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;;;;;
[200] Fix | Delete
[201] Fix | Delete
[i18n]
[202] Fix | Delete
[203] Fix | Delete
; Default locale
[204] Fix | Delete
locale = [[language]]
[205] Fix | Delete
[206] Fix | Delete
; Database connection character set
[207] Fix | Delete
connection_charset = utf8
[208] Fix | Delete
[209] Fix | Delete
[210] Fix | Delete
;;;;;;;;;;;;;;;;;
[211] Fix | Delete
; File Settings ;
[212] Fix | Delete
;;;;;;;;;;;;;;;;;
[213] Fix | Delete
[214] Fix | Delete
[files]
[215] Fix | Delete
[216] Fix | Delete
; Complete path to directory to store uploaded files
[217] Fix | Delete
; (This directory should not be directly web-accessible)
[218] Fix | Delete
; Windows users should use forward slashes
[219] Fix | Delete
files_dir = [[softdatadir]]
[220] Fix | Delete
[221] Fix | Delete
; Path to the directory to store public uploaded files
[222] Fix | Delete
; (This directory should be web-accessible and the specified path
[223] Fix | Delete
; should be relative to the base OPS directory)
[224] Fix | Delete
; Windows users should use forward slashes
[225] Fix | Delete
public_files_dir = public
[226] Fix | Delete
[227] Fix | Delete
; The maximum allowed size in kilobytes of each user's public files
[228] Fix | Delete
; directory. This is where user's can upload images through the
[229] Fix | Delete
; tinymce editor to their bio. Editors can upload images for
[230] Fix | Delete
; some of the settings.
[231] Fix | Delete
; Set this to 0 to disallow such uploads.
[232] Fix | Delete
public_user_dir_size = 5000
[233] Fix | Delete
[234] Fix | Delete
; Permissions mask for created files and directories
[235] Fix | Delete
umask = 0022
[236] Fix | Delete
[237] Fix | Delete
; The minimum percentage similarity between filenames that should be considered
[238] Fix | Delete
; a possible revision
[239] Fix | Delete
filename_revision_match = 70
[240] Fix | Delete
[241] Fix | Delete
[242] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[243] Fix | Delete
; Fileinfo (MIME) Settings ;
[244] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[245] Fix | Delete
[246] Fix | Delete
[finfo]
[247] Fix | Delete
; mime_database_path = /etc/magic.mime
[248] Fix | Delete
[249] Fix | Delete
[250] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;
[251] Fix | Delete
; Security Settings ;
[252] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;
[253] Fix | Delete
[254] Fix | Delete
[security]
[255] Fix | Delete
[256] Fix | Delete
; Force SSL connections site-wide and also sets the "Secure" flag for session cookies
[257] Fix | Delete
; See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#secure
[258] Fix | Delete
force_ssl = Off
[259] Fix | Delete
[260] Fix | Delete
; Force SSL connections for login only
[261] Fix | Delete
force_login_ssl = Off
[262] Fix | Delete
[263] Fix | Delete
; This check will invalidate a session if the user's IP address changes.
[264] Fix | Delete
; Enabling this option provides some amount of additional security, but may
[265] Fix | Delete
; cause problems for users behind a proxy farm (e.g., AOL).
[266] Fix | Delete
session_check_ip = On
[267] Fix | Delete
[268] Fix | Delete
; The encryption (hashing) algorithm to use for encrypting user passwords
[269] Fix | Delete
; Valid values are: md5, sha1
[270] Fix | Delete
; NOTE: This hashing method is deprecated, but necessary to permit gradual
[271] Fix | Delete
; migration of old password hashes.
[272] Fix | Delete
encryption = sha1
[273] Fix | Delete
[274] Fix | Delete
; The unique salt to use for generating password reset hashes
[275] Fix | Delete
salt = "YouMustSetASecretKeyHere!!"
[276] Fix | Delete
[277] Fix | Delete
; The unique secret used for encoding and decoding API keys
[278] Fix | Delete
api_key_secret = ""
[279] Fix | Delete
[280] Fix | Delete
; The number of seconds before a password reset hash expires (defaults to 7200 / 2 hours)
[281] Fix | Delete
reset_seconds = 7200
[282] Fix | Delete
[283] Fix | Delete
; Allowed HTML tags for fields that permit restricted HTML.
[284] Fix | Delete
; Use e.g. "img[src,alt],p" to allow "src" and "alt" attributes to the "img"
[285] Fix | Delete
; tag, and also to permit the "p" paragraph tag. Unspecified attributes will be
[286] Fix | Delete
; stripped.
[287] Fix | Delete
allowed_html = "a[href|target|title],em,strong,cite,code,ul,ol,li[class],dl,dt,dd,b,i,u,img[src|alt],sup,sub,br,p"
[288] Fix | Delete
[289] Fix | Delete
; Allowed HTML tags for submission titles only
[290] Fix | Delete
; Unspecified attributes will be stripped.
[291] Fix | Delete
allowed_title_html = "b,i,u,sup,sub"
[292] Fix | Delete
[293] Fix | Delete
;N.b.: The implicit_auth parameter has been removed in favor of plugin implementations such as shibboleth
[294] Fix | Delete
[295] Fix | Delete
;;;;;;;;;;;;;;;;;;
[296] Fix | Delete
; Email Settings ;
[297] Fix | Delete
;;;;;;;;;;;;;;;;;;
[298] Fix | Delete
[299] Fix | Delete
[email]
[300] Fix | Delete
[301] Fix | Delete
; Default method to send emails
[302] Fix | Delete
; Available options: sendmail, smtp, log, phpmailer
[303] Fix | Delete
default = sendmail
[304] Fix | Delete
[305] Fix | Delete
; Path to the sendmail, -bs argument is for using SMTP protocol
[306] Fix | Delete
sendmail_path = "/usr/sbin/sendmail -bs"
[307] Fix | Delete
[308] Fix | Delete
; Use SMTP for sending mail instead of mail()
[309] Fix | Delete
; smtp = On
[310] Fix | Delete
[311] Fix | Delete
; SMTP server settings
[312] Fix | Delete
; smtp_server = mail.example.com
[313] Fix | Delete
; smtp_port = 25
[314] Fix | Delete
[315] Fix | Delete
; Enable SMTP authentication
[316] Fix | Delete
; Supported smtp_auth: ssl, tls (see PHPMailer SMTPSecure)
[317] Fix | Delete
; smtp_auth = ssl
[318] Fix | Delete
; smtp_username = username
[319] Fix | Delete
; smtp_password = password
[320] Fix | Delete
[321] Fix | Delete
; Enable suppressing SSL/TLS peer verification by SMTP transports
[322] Fix | Delete
; Note: this is not recommended for security reasons
[323] Fix | Delete
; smtp_suppress_cert_check = On
[324] Fix | Delete
[325] Fix | Delete
; Allow envelope sender to be specified
[326] Fix | Delete
; (may not be possible with some server configurations)
[327] Fix | Delete
; allow_envelope_sender = Off
[328] Fix | Delete
[329] Fix | Delete
; Default envelope sender to use if none is specified elsewhere
[330] Fix | Delete
; default_envelope_sender = my_address@my_host.com
[331] Fix | Delete
[332] Fix | Delete
; Force the default envelope sender (if present)
[333] Fix | Delete
; This is useful if setting up a site-wide no-reply address
[334] Fix | Delete
; The reply-to field will be set with the reply-to or from address.
[335] Fix | Delete
; force_default_envelope_sender = Off
[336] Fix | Delete
[337] Fix | Delete
; Force a DMARC compliant from header (RFC5322.From)
[338] Fix | Delete
; If any of your users have email addresses in domains not under your control
[339] Fix | Delete
; you may need to set this to be compliant with DMARC policies published by
[340] Fix | Delete
; those 3rd party domains.
[341] Fix | Delete
; Setting this will move the users address into the reply-to field and the
[342] Fix | Delete
; from field wil be rewritten with the default_envelope_sender.
[343] Fix | Delete
; To use this you must set force_default_enveloper_sender = On and
[344] Fix | Delete
; default_envelope_sender must be set to a valid address in a domain you own.
[345] Fix | Delete
; force_dmarc_compliant_from = Off
[346] Fix | Delete
[347] Fix | Delete
; The display name to use with a DMARC compliant from header
[348] Fix | Delete
; By default the DMARC compliant from will have an empty name but this can
[349] Fix | Delete
; be changed by adding a text here.
[350] Fix | Delete
; You can use '%n' to insert the users name from the original from header
[351] Fix | Delete
; and '%s' to insert the localized sitename.
[352] Fix | Delete
; dmarc_compliant_from_displayname = '%n via %s'
[353] Fix | Delete
[354] Fix | Delete
; If enabled, email addresses must be validated before login is possible.
[355] Fix | Delete
require_validation = Off
[356] Fix | Delete
[357] Fix | Delete
; Maximum number of days before an unvalidated account expires and is deleted
[358] Fix | Delete
validation_timeout = 14
[359] Fix | Delete
[360] Fix | Delete
[361] Fix | Delete
;;;;;;;;;;;;;;;;;;;
[362] Fix | Delete
; Search Settings ;
[363] Fix | Delete
;;;;;;;;;;;;;;;;;;;
[364] Fix | Delete
[365] Fix | Delete
[search]
[366] Fix | Delete
[367] Fix | Delete
; Minimum indexed word length
[368] Fix | Delete
min_word_length = 3
[369] Fix | Delete
[370] Fix | Delete
; The maximum number of search results fetched per keyword. These results
[371] Fix | Delete
; are fetched and merged to provide results for searches with several keywords.
[372] Fix | Delete
results_per_keyword = 500
[373] Fix | Delete
[374] Fix | Delete
; The number of hours for which keyword search results are cached.
[375] Fix | Delete
result_cache_hours = 1
[376] Fix | Delete
[377] Fix | Delete
; Paths to helper programs for indexing non-text files.
[378] Fix | Delete
; Programs are assumed to output the converted text to stdout, and "%s" is
[379] Fix | Delete
; replaced by the file argument.
[380] Fix | Delete
; Note that using full paths to the binaries is recommended.
[381] Fix | Delete
; Uncomment applicable lines to enable (at most one per file type).
[382] Fix | Delete
; Additional "index[MIME_TYPE]" lines can be added for any mime type to be
[383] Fix | Delete
; indexed.
[384] Fix | Delete
[385] Fix | Delete
; PDF
[386] Fix | Delete
; index[application/pdf] = "/usr/bin/pstotext -enc UTF-8 -nopgbrk %s - | /usr/bin/tr '[:cntrl:]' ' '"
[387] Fix | Delete
; index[application/pdf] = "/usr/bin/pdftotext -enc UTF-8 -nopgbrk %s - | /usr/bin/tr '[:cntrl:]' ' '"
[388] Fix | Delete
[389] Fix | Delete
; PostScript
[390] Fix | Delete
; index[application/postscript] = "/usr/bin/pstotext -enc UTF-8 -nopgbrk %s - | /usr/bin/tr '[:cntrl:]' ' '"
[391] Fix | Delete
; index[application/postscript] = "/usr/bin/ps2ascii %s | /usr/bin/tr '[:cntrl:]' ' '"
[392] Fix | Delete
[393] Fix | Delete
; Microsoft Word
[394] Fix | Delete
; index[application/msword] = "/usr/bin/antiword %s"
[395] Fix | Delete
; index[application/msword] = "/usr/bin/catdoc %s"
[396] Fix | Delete
[397] Fix | Delete
[398] Fix | Delete
;;;;;;;;;;;;;;;;
[399] Fix | Delete
; OAI Settings ;
[400] Fix | Delete
;;;;;;;;;;;;;;;;
[401] Fix | Delete
[402] Fix | Delete
[oai]
[403] Fix | Delete
[404] Fix | Delete
; Enable OAI front-end to the site
[405] Fix | Delete
oai = On
[406] Fix | Delete
[407] Fix | Delete
; OAI Repository identifier. This setting forms part of OAI-PMH record IDs.
[408] Fix | Delete
; Changing this setting may affect existing clients and is not recommended.
[409] Fix | Delete
repository_id = "ops.[[domhost]]"
[410] Fix | Delete
[411] Fix | Delete
; Maximum number of records per request to serve via OAI
[412] Fix | Delete
oai_max_records = 100
[413] Fix | Delete
[414] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;;
[415] Fix | Delete
; Interface Settings ;
[416] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;;
[417] Fix | Delete
[418] Fix | Delete
[interface]
[419] Fix | Delete
[420] Fix | Delete
; Number of items to display per page; can be overridden on a per-server basis
[421] Fix | Delete
items_per_page = 25
[422] Fix | Delete
[423] Fix | Delete
; Number of page links to display; can be overridden on a per-server basis
[424] Fix | Delete
page_links = 10
[425] Fix | Delete
[426] Fix | Delete
[427] Fix | Delete
;;;;;;;;;;;;;;;;;;;;
[428] Fix | Delete
; Captcha Settings ;
[429] Fix | Delete
;;;;;;;;;;;;;;;;;;;;
[430] Fix | Delete
[431] Fix | Delete
[captcha]
[432] Fix | Delete
[433] Fix | Delete
; Whether or not to enable ReCaptcha
[434] Fix | Delete
recaptcha = off
[435] Fix | Delete
[436] Fix | Delete
; Public key for reCaptcha (see http://www.google.com/recaptcha)
[437] Fix | Delete
recaptcha_public_key = your_public_key
[438] Fix | Delete
[439] Fix | Delete
; Private key for reCaptcha (see http://www.google.com/recaptcha)
[440] Fix | Delete
recaptcha_private_key = your_private_key
[441] Fix | Delete
[442] Fix | Delete
; Whether or not to use Captcha on user registration
[443] Fix | Delete
captcha_on_register = on
[444] Fix | Delete
[445] Fix | Delete
; Whether or not to use Captcha on user login
[446] Fix | Delete
captcha_on_login = on
[447] Fix | Delete
[448] Fix | Delete
; Validate the hostname in the ReCaptcha response
[449] Fix | Delete
recaptcha_enforce_hostname = Off
[450] Fix | Delete
[451] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;
[452] Fix | Delete
; External Commands ;
[453] Fix | Delete
;;;;;;;;;;;;;;;;;;;;;
[454] Fix | Delete
[455] Fix | Delete
[cli]
[456] Fix | Delete
[457] Fix | Delete
; These are paths to (optional) external binaries used in
[458] Fix | Delete
; certain plug-ins or advanced program features.
[459] Fix | Delete
[460] Fix | Delete
; Using full paths to the binaries is recommended.
[461] Fix | Delete
[462] Fix | Delete
; perl (used in paracite citation parser)
[463] Fix | Delete
perl = /usr/bin/perl
[464] Fix | Delete
[465] Fix | Delete
; tar (used in backup plugin, translation packaging)
[466] Fix | Delete
tar = /bin/tar
[467] Fix | Delete
[468] Fix | Delete
; On systems that do not have libxsl/xslt libraries installed, or for those who
[469] Fix | Delete
; require a specific XSLT processor, you may enter the complete path to the
[470] Fix | Delete
; XSLT renderer tool, with any required arguments. Use %xsl to substitute the
[471] Fix | Delete
; location of the XSL stylesheet file, and %xml for the location of the XML
[472] Fix | Delete
; source file; eg:
[473] Fix | Delete
; /usr/bin/java -jar ~/java/xalan.jar -HTML -IN %xml -XSL %xsl
[474] Fix | Delete
xslt_command = ""
[475] Fix | Delete
[476] Fix | Delete
;;;;;;;;;;;;;;;;;;
[477] Fix | Delete
; Proxy Settings ;
[478] Fix | Delete
;;;;;;;;;;;;;;;;;;
[479] Fix | Delete
[480] Fix | Delete
[proxy]
[481] Fix | Delete
[482] Fix | Delete
; The HTTP proxy configuration to use
[483] Fix | Delete
; http_proxy = "http://username:password@192.168.1.1:8080"
[484] Fix | Delete
; https_proxy = "https://username:password@192.168.1.1:8080"
[485] Fix | Delete
[486] Fix | Delete
[487] Fix | Delete
;;;;;;;;;;;;;;;;;;
[488] Fix | Delete
; Debug Settings ;
[489] Fix | Delete
;;;;;;;;;;;;;;;;;;
[490] Fix | Delete
[491] Fix | Delete
[debug]
[492] Fix | Delete
[493] Fix | Delete
; Display a stack trace when a fatal error occurs.
[494] Fix | Delete
; Note that this may expose private information and should be disabled
[495] Fix | Delete
; for any production system.
[496] Fix | Delete
show_stacktrace = Off
[497] Fix | Delete
[498] Fix | Delete
; Display an error message when something goes wrong.
[499] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function