Server IP : 103.53.40.154 / Your IP : 18.222.20.3 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /var/softaculous/faveo/../abante/../hubzilla/../ocs/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
; <?php exit(); // DO NOT DELETE ?> ; DO NOT DELETE THE ABOVE LINE!!! ; Doing so will expose this configuration file through your web site! ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; config.TEMPLATE.inc.php ; ; Copyright (c) 2000-2012 John Willinsky ; Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. ; ; OCS Configuration settings. ; Rename config.TEMPLATE.inc.php to config.inc.php to use. ; ; $Id$ ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;; ; General Settings ; ;;;;;;;;;;;;;;;;;;;; [general] ; Set this to On once the system has been installed ; (This is generally done automatically by the installer) installed = On ; The canonical URL to the OCS installation (excluding the trailing slash) base_url = "[[softurl]]" ; Path to the registry directory (containing various settings files) ; Although the files in this directory generally do not contain any ; sensitive information, the directory can be moved to a location that ; is not web-accessible if desired registry_dir = registry ; Session cookie name session_cookie_name = OCSSID ; Number of days to save login cookie for if user selects to remember ; (set to 0 to force expiration at end of current session) session_lifetime = 30 ; Enable support for running scheduled tasks ; Set this to On if you have set up the scheduled tasks script to ; execute periodically scheduled_tasks = Off ; Short and long date formats date_format_trunc = "%m-%d" date_format_short = "%Y-%m-%d" date_format_long = "%B %e, %Y" datetime_format_short = "%Y-%m-%d %I:%M %p" datetime_format_long = "%B %e, %Y - %I:%M %p" time_format = "%I:%M %p" ; Use URL parameters instead of CGI PATH_INFO. This is useful for ; broken server setups that don't support the PATH_INFO environment ; variable. disable_path_info = Off ; Use fopen(...) for URL-based reads. Modern versions of dspace ; will not accept requests using fopen, as it does not provide a ; User Agent, so this option is disabled by default. If this feature ; is disabled by PHP's configuration, this setting will be ignored. allow_url_fopen = Off ; Base URL override settings: Entries like the following examples can ; be used to override the base URLs used by OCS. If you want to use a ; proxy to rewrite URLs to OCS, configure your proxy's URL here. ; Syntax: base_url[conference_path] = http://www.myUrl.com ; To override URLs that aren't part of a particular conference, use a ; conference_path of "index". ; Examples: ; base_url[index] = http://www.myUrl.com ; base_url[myConference] = http://www.myUrl.com/myConference ; base_url[myOtherConference] = http://myOtherConference.myUrl.com ; Generate RESTful URLs using mod_rewrite. This requires the ; rewrite directive to be enabled in your .htaccess or httpd.conf. ; See FAQ for more details. restful_urls = Off ; Allow javascript files to be served through a content delivery network (set to off to use local files) enable_cdn = On ;;;;;;;;;;;;;;;;;;;;; ; Database Settings ; ;;;;;;;;;;;;;;;;;;;;; [database] driver = mysql host = [[softdbhost]] username = [[softdbuser]] password = [[softdbpass]] name = [[softdb]] ; Enable persistent connections (recommended) persistent = On ; Enable database debug output (very verbose!) debug = Off ;;;;;;;;;;;;;;;;;; ; Cache Settings ; ;;;;;;;;;;;;;;;;;; [cache] ; The type of data caching to use. Options are: ; - memcache: Use the memcache server configured below ; - file: Use file-based caching; configured below ; - none: Use no caching. This may be extremely slow. ; This setting affects locale data, conference settings, and plugin settings. cache = file ; Choose the type of object data caching to use. Options are: ; - memcache: Use the memcache server configured below ; - xcache: Use the xcache variable store ; - apc: Use the APC variable store ; - none: Use no caching. object_cache = none ; Enable memcache support memcache_hostname = localhost memcache_port = 11211 ;;;;;;;;;;;;;;;;;;;;;;;;; ; Localization Settings ; ;;;;;;;;;;;;;;;;;;;;;;;;; [i18n] ; Default locale locale = en_US ; Client output/input character set client_charset = utf-8 ; Database connection character set ; Must be set to "Off" if not supported by the database server ; If enabled, must be the same character set as "client_charset" ; (although the actual name may differ slightly depending on the server) connection_charset = Off ; Database storage character set ; Must be set to "Off" if not supported by the database server database_charset = Off ; Enable character normalization to utf-8 (recommended) ; If disabled, strings will be passed through in their native encoding ; Note that client_charset and database collation must be set ; to "utf-8" for this to work, as characters are stored in utf-8 charset_normalization = On ; Default time zone ; default_timezone = ;;;;;;;;;;;;;;;;; ; File Settings ; ;;;;;;;;;;;;;;;;; [files] ; Complete path to directory to store uploaded files ; (This directory should not be directly web-accessible) files_dir = [[softdatadir]]/files ; Path to the directory to store public uploaded files ; (This directory should be web-accessible and the specified path ; should be relative to the base OCS directory) public_files_dir = public ; Permissions mask for created files and directories umask = 0022 ;;;;;;;;;;;;;;;;;;;;; ; Security Settings ; ;;;;;;;;;;;;;;;;;;;;; [security] ; Force SSL connections site-wide force_ssl = Off ; Force SSL connections for login only force_login_ssl = Off ; This check will invalidate a session if the user's IP address changes. ; Enabling this option provides some amount of additional security, but may ; cause problems for users behind a proxy farm (e.g., AOL). session_check_ip = On ; The encryption (hashing) algorithm to use for encrypting user passwords ; Valid values are: md5, sha1 ; Note that sha1 requires PHP >= 4.3.0 encryption = sha1 ; Allowed HTML tags for fields that permit restricted HTML. ; For PHP 5.0.5 and greater, allowed attributes must be specified individually ; e.g. <img src|alt> to allow "src" and "alt" attributes. Unspecified ; attributes will be stripped. For PHP below 5.0.5 attributes may not be ; specified in this way. allowed_html = "<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <b> <i> <u> <img src|alt> <sup> <sub> <br> <p>" ; Prevent VIM from attempting to highlight the rest of the config file ; with unclosed tags: ; </p></sub></sup></u></i></b></dd></dt></dl></li></ol></ul></code></cite></strong></em></a> ;;;;;;;;;;;;;;;;;; ; Email Settings ; ;;;;;;;;;;;;;;;;;; [email] ; Use SMTP for sending mail instead of mail() ; smtp = On ; SMTP server settings ; smtp_server = mail.example.com ; smtp_port = 25 ; Enable SMTP authentication ; Supported mechanisms: PLAIN, LOGIN, CRAM-MD5, and DIGEST-MD5 ; smtp_auth = PLAIN ; smtp_username = username ; smtp_password = password ; Allow envelope sender to be specified ; (may not be possible with some server configurations) ; allow_envelope_sender = Off ; Enable attachments in the various "Send Email" pages. ; (Disabling here will not disable attachments on features that ; require them, e.g. attachment-based reviews) enable_attachments = On ; Amount of time required between attempts to send non-editorial emails ; in seconds. This can be used to help prevent email relaying via OCS. time_between_emails = 3600 ; Maximum number of recipients that can be included in a single email ; (either as To:, Cc:, or Bcc: addresses) for a non-priveleged user max_recipients = 10 ; If enabled, email addresses must be validated before login is possible. require_validation = Off ; Maximum number of days before an unvalidated account expires and is deleted validation_timeout = 14 ;;;;;;;;;;;;;;;;;;; ; Search Settings ; ;;;;;;;;;;;;;;;;;;; [search] ; Minimum indexed word length min_word_length = 3 ; The maximum number of search results fetched per keyword. These results ; are fetched and merged to provide results for searches with several keywords. results_per_keyword = 500 ; The number of hours for which keyword search results are cached. result_cache_hours = 1 ; Paths to helper programs for indexing non-text files. ; Programs are assumed to output the converted text to stdout, and "%s" is ; replaced by the file argument. ; Note that using full paths to the binaries is recommended. ; Uncomment applicable lines to enable (at most one per file type). ; Additional "index[MIME_TYPE]" lines can be added for any mime type to be ; indexed. ; PDF ; index[application/pdf] = "/usr/bin/pstotext -enc UTF-8 -nopgbrk %s - | /usr/bin/tr '[:cntrl:]' ' '" ; index[application/pdf] = "/usr/bin/pdftotext -enc UTF-8 -nopgbrk %s - | /usr/bin/tr '[:cntrl:]' ' '" ; PostScript ; index[application/postscript] = "/usr/bin/pstotext -enc UTF-8 -nopgbrk %s - | /usr/bin/tr '[:cntrl:]' ' '" ; index[application/postscript] = "/usr/bin/ps2ascii %s | /usr/bin/tr '[:cntrl:]' ' '" ; Microsoft Word ; index[application/msword] = "/usr/bin/antiword %s" ; index[application/msword] = "/usr/bin/catdoc %s" ;;;;;;;;;;;;;;;; ; OAI Settings ; ;;;;;;;;;;;;;;;; [oai] ; Enable OAI front-end to the site oai = On ; OAI Repository identifier repository_id = "ocs.[[domhost]]" ;;;;;;;;;;;;;;;;;;;;; ; Fileinfo Settings ; ;;;;;;;;;;;;;;;;;;;;; [finfo] mime_database_path = /path/to/magic.mime ;;;;;;;;;;;;;;;;;;;;;; ; Interface Settings ; ;;;;;;;;;;;;;;;;;;;;;; [interface] ; Number of items to display per page; overridable on a per-conference basis items_per_page = 25 ; Number of page links to display; overridable on a per-conference basis page_links = 10 ;;;;;;;;;;;;;;;;;;;; ; Captcha Settings ; ;;;;;;;;;;;;;;;;;;;; [captcha] ; Whether or not to enable Captcha features captcha = off ; Whether or not to use Captcha on user registration / account creation captcha_on_register = on ; Whether or not to use Captcha on user comments captcha_on_comments = on ; Font location for font to use in Captcha images font_location = /usr/share/fonts/truetype/freefont/FreeSerif.ttf ;;;;;;;;;;;;;;;;;;;;; ; External Commands ; ;;;;;;;;;;;;;;;;;;;;; [cli] ; These are paths to (optional) external binaries used in ; certain plug-ins or advanced program features. ; Using full paths to the binaries is recommended. ; perl (used in paracite citation parser) perl = /usr/bin/perl ; tar (used in backup plugin, translation packaging) tar = /bin/tar ; On systems that do not have PHP4's Sablotron/xsl or PHP5's libxsl/xslt ; libraries installed, or for those who require a specific XSLT processor, ; you may enter the complete path to the XSLT renderer tool, with any ; required arguments. Use %xsl to substitute the location of the XSL ; stylesheet file, and %xml for the location of the XML source file; eg: ; /usr/bin/java -jar ~/java/xalan.jar -HTML -IN %xml -XSL %xsl xslt_command = "" ;;;;;;;;;;;;;;;;;; ; Proxy Settings ; ;;;;;;;;;;;;;;;;;; [proxy] ; Note that allow_url_fopen must be set to Off before these proxy settings ; will take effect. ; The HTTP proxy configuration to use ; http_host = localhost ; http_port = 80 ; proxy_username = username ; proxy_password = password ;;;;;;;;;;;;;;;;;; ; Debug Settings ; ;;;;;;;;;;;;;;;;;; [debug] ; Display execution stats in the footer show_stats = Off ; Display a stack trace when a fatal error occurs. ; Note that this may expose private information and should be disabled ; for any production system. show_stacktrace = Off ; Display an error message when something goes wrong. display_errors = Off ; Display deprecation warnings deprecation_warnings = Off