~fabiocbalbuquerque/sahana-agasti/web-services

« back to all changes in this revision

Viewing changes to INSTALL

  • Committer: Usman Akeju
  • Date: 2011-05-26 16:55:44 UTC
  • mto: (1.26.1 push-trunk) (7.1.1 mayon)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: usman.akeju@mail.cuny.edu-20110526165544-5xjkltqrqmehmd3u
- minor code & doc cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
INSTALLATION INSTRUCTIONS
5
5
 
6
 
Updated: 2011-05-17
 
6
Updated: 2011-05-26
7
7
 
8
8
*** IMPORTANT NOTE: ***
9
9
 
54
54
 
55
55
  $ sudo chgrp -R WEB_GROUP cache/ log/ config/ apps/*/config/ data/search/ \
56
56
      data/sql/ data/uploads/ web/wiki/conf/ web/wiki/data/
57
 
  $ sudo chmod -cR g+wr config/ apps/*/config/ data/search/ data/sql/ data/uploads/ \
 
57
  $ chmod -cR g+wr config/ apps/*/config/ data/search/ data/sql/ data/uploads/ \
58
58
      web/wiki/conf/ web/wiki/data/
59
 
  $ sudo ./symfony project:permissions
 
59
  $ ./symfony project:permissions
60
60
 
61
61
  * NOTE: Replace WEB_GROUP with the group associated with the Apache user, e.g.
62
62
    www-data or apache.
225
225
 
226
226
  http://localhost/agasti/install.php
227
227
 
228
 
  * NOTES: The install script by default only installs the standard 
229
 
    data for the application to operate.  Sample data are provided in 
230
 
    [AG_ROOT]/data/samples.  To execute both standard and sample data,
231
 
    modify the script [AG_ROOT]/web/install.inc.php
232
 
    by replacing the line
233
 
 
234
 
       Doctrine_Core::loadData(sfConfig::get('sf_data_dir') . '/fixtures', false);
235
 
 
236
 
    with the following three lines
237
 
 
238
 
        $dataDirectories = array(sfConfig::get('sf_data_dir') . '/fixtures',
239
 
                                 sfConfig::get('sf_data_dir') . '/samples');
240
 
        Doctrine_Core::loadData($dataDirectories, false);
241
 
 
242
 
         
243
 
    in the doInstall method.
244
 
 
245
228
Follow the instructions on each screen, making modifications to your system in
246
229
response to any reported misconfigurations and entering appropriate information
247
230
when prompted.