Show
Ignore:
Timestamp:
08/10/06 12:22:31 (2 years ago)
Author:
ben
Message:

.htaccess has been renamed to htaccess-dist for distribution. Added check to includes.php (with warning to see the INSTALL file if .htaccess is not found), and notes to both INSTALL and QUICKINSTALL.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel/includes.php

    r477 r482  
    1010        require_once(dirname(__FILE__)."/config.php"); 
    1111 
     12    // Check for .htaccess 
     13        if (!file_exists(dirname(__FILE__)."/.htaccess")) { 
     14            die('Elgg configuration error: .htaccess is missing. Please see INSTALL file.'); 
     15        } 
     16         
    1217    // Check config values make sense 
    1318        require_once(dirname(__FILE__).'/sanitychecks.php');