Changeset 482
- Timestamp:
- 08/10/06 12:22:31 (2 years ago)
- Files:
-
- devel/INSTALL (modified) (2 diffs)
- devel/QUICKINSTALL (modified) (3 diffs)
- devel/htaccess-dist (moved) (moved from devel/.htaccess)
- devel/includes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/INSTALL
r437 r482 2 2 3 3 Ben Werdmuller <ben@elgg.net> 4 8 May20064 10 August 2006 5 5 6 6 … … 57 57 the root of your web server account. 58 58 59 ENSURE YOU HAVE INCLUDED .htaccess files - on Linux and Unix systems 60 (including Mac OS X) you may not be able to see these. In particular, 61 there should be a file called .htaccess in the root of your Elgg install. 62 63 IF YOU ARE UPGRADING, you may wish to retain your existing 64 config.php file. 59 Rename htaccess-dist to .htaccess. 65 60 66 61 devel/QUICKINSTALL
r328 r482 1 1 Quick Elgg 0.6 install file 2 by Bill Fitzgerald3 --------------------------- 2 originally by Bill Fitzgerald 3 ----------------------------- 4 4 5 5 1. Create a database. … … 18 18 directory can be named whatever you want. 19 19 20 5. Open config-dist.php (found in the root directory of the Elgg 20 5. Rename htaccess-dist to .htaccess. 21 22 6. Open config-dist.php (found in the root directory of the Elgg 21 23 directory structure). Rename this file config.php. 22 24 23 6. In config.php, edit the following values to get started. The25 7. In config.php, edit the following values to get started. The 24 26 config.php file also contains good instructions: 25 27 … … 57 59 58 60 59 7. Navigate to the url of the site. The database tables will be created,61 8. Navigate to the url of the site. The database tables will be created, 60 62 and you should see a long line of messages indicating success. At the 61 63 bottom of the page, you will see a "Continue" button -- click it. 62 64 63 8. This will bring you the Elgg home screen. The main site admin is65 9. This will bring you the Elgg home screen. The main site admin is 64 66 already created: Username "News"; password "password". Log in as this 65 67 user and change the password to something more secure. Welcome to your devel/includes.php
r477 r482 10 10 require_once(dirname(__FILE__)."/config.php"); 11 11 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 12 17 // Check config values make sense 13 18 require_once(dirname(__FILE__).'/sanitychecks.php');
