Changes between Version 4 and Version 5 of getting-started

Show
Ignore:
Author:
ntj (IP: 141.52.65.213)
Timestamp:
08/26/15 14:12:24 (9 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • getting-started

    v4 v5  
    2020At this point, nothing is working. ADEI requires data in database to be functional. For this purpose, we will setup a test data to launch ADEI. 
    2121 
     224. You'll need to tell ADEI which setup to load, in this tutorial, we will load our test data called autogen. Create a "config.actual.php" with the following content: 
     23 
     24{{{ 
     25<?php 
     26    $ADEI_SETUP = "autogen"; 
     27 
     28    $ADEI_RELEASE = false; 
     29    $LOGGER_LOG_REQUESTS = false; 
     30    $LOGGER_LOG_OUTPUT = false; 
     31 
     32    $ADEI_DB = array ( 
     33        "host" => "localhost", 
     34        "port" => 0, 
     35        "database" => "adei", 
     36        "user" => "adei", 
     37        "password" => "adei" 
     38    ); 
     39?> 
     40}}} 
     41 
     42Notice that $ADEI_SETUP is pointing to autogen. This can be found at /setup under autogen folder. Here I have also created a mysql user called adei with password adei. If you're unfamiliar how to do this, please check this (https://www.digitalocean.com/community/tutorials/how-to-create-a-new-user-and-grant-permissions-in-mysql) 
     43 
     445. After this go to /system and run: 
     45 
     46{{{ 
     47php cache.php 
     48}}} 
     49 
     50This script will load the mock data into our mysql database. 
     51 
     526. Now when you refresh the page you will see this: 
     53 
     54[[Image(http://i947.photobucket.com/albums/ad311/nicolaisi/adei_autogen.png)]] 
     55