Changeset 1804


Ignore:
Timestamp:
05/27/2009 02:16:21 PM (3 years ago)
Author:
driehle
Message:

Descriptions modified

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/config.inc.php

    r1798 r1804  
    55 *  
    66 * IMPORTANT: This file does not contain your personal settings, in most cases 
    7  * you do not want to modify this file. 
     7 * you do NOT want to modify this file. 
    88 *  
    99 * This configuration file offers changes to Jlog behaviour to advanced users. 
     
    1212 *  
    1313 * You will probably need to update this file with every update, so keep that 
    14  * in mind if you start manipulating here.  
     14 * in mind if you start hacking Jlog here.  
    1515 **/         
    1616 
     
    3939 * installations.    
    4040 **/         
    41 define ('JLOG_LIBPATH', JLOG_BASEPATH . '/lang'); 
     41define ('JLOG_LANGPATH', JLOG_BASEPATH . '/lang'); 
    4242 
    4343/** 
  • trunk/lib/.htaccess

    r1756 r1804  
    1 # Web-Access to this 
    2 # folder is forbidden 
    3 Order deny,allow 
     1# 
     2#              Jlog Library Folder 
     3# 
     4# By convention this folder must not be reachable via 
     5# HTTP protocol, because files in this folder do not 
     6# require any direct HTTP requests. 
     7# 
     8# DO NOT DELETE THIS FILE! 
     9# 
     10# If you are not using Apache HTTP Webserver please 
     11# see your webservers manual for instructions on how 
     12# to protect this folder. 
     13# 
     14 
     15Order Deny,Allow 
    416Deny from All 
  • trunk/personal/conf/.htaccess

    r1756 r1804  
    1 # Web-Access to this 
    2 # folder is forbidden 
    3 Order deny,allow 
     1# 
     2#               Jlog Config Folder 
     3# 
     4# By convention this folder must not be reachable via 
     5# HTTP protocol, because files in this folder contain 
     6# private data not to be made public. 
     7# 
     8# DO NOT DELETE THIS FILE! 
     9# 
     10# If you are not using Apache HTTP Webserver please 
     11# see your webservers manual for instructions on how 
     12# to protect this folder. 
     13# 
     14 
     15Order Deny,Allow 
    416Deny from All 
  • trunk/plugins/.htaccess

    r1756 r1804  
    1 # Web-Access to this 
    2 # folder is forbidden 
    3 Order deny, allow 
     1# 
     2#               Jlog Plugin Folder 
     3# 
     4# Plugins should not require direct HTTP requests. 
     5# Instead, plugins should use the hooks available, 
     6# to interact with Jlog. 
     7# 
     8# DO NOT DELETE THIS FILE! 
     9# 
     10 
     11Order Deny,Allow 
    412Deny from All 
     13 
     14#  
     15# If you want to allow direct HTTP requests to a 
     16# certain plugin, use the following configuration 
     17# additionally to the configuration above. 
     18#  
     19# <Files "ExamplePlugin.jplug.php"> 
     20#   Allow from All 
     21# </Files> 
     22# 
Note: See TracChangeset for help on using the changeset viewer.