Changeset 1290
- Timestamp:
- 11/13/07 19:17:40 (1 year ago)
- Files:
-
- devel/htaccess-dist (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/htaccess-dist
r1261 r1290 11 11 </Files> 12 12 13 # Don't listing directory 14 Options -Indexes 15 16 # Follow symbolic links 13 17 Options +FollowSymLinks 18 19 # Default handler 20 DirectoryIndex index.php 14 21 15 22 # Whether to display PHP error messages in page output. Recommended to be off for production systems. … … 25 32 26 33 # Elgg can be more of a RAM lover than PHP's default of 8 meg. E.g. 16 meg: 27 php_value memory_limit 1677721634 #php_value memory_limit 16777216 28 35 29 36 # Not really necessary, just to be clean … … 31 38 # Forgot that anyone might still have this turned on 32 39 #php_flag register_globals off 40 41 # php 4, apache 1.x 42 <IfModule mod_php4.c> 43 php_value memory_limit 16777216 44 php_value register_globals 0 45 </IfModule> 46 47 # php 4, apache 2 48 <IfModule sapi_apache2.c> 49 php_value memory_limit 16777216 50 php_value register_globals 0 51 </IfModule> 52 53 # php 5, apache 1 and 2 54 <IfModule mod_php5.c> 55 php_value memory_limit 16777216 56 php_value register_globals 0 57 </IfModule> 33 58 34 59 <IfModule mod_rewrite.c>
