Ignore:
Timestamp:
Dec 29, 2011, 6:48:16 AM (12 years ago)
Author:
rvelices
Message:

fetaure 2542 replace $conflocal_data_dir with $confdata_location and move combined files and image derivatives from local to _data

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/config_default.inc.php

    r12796 r12802  
    720720$conf['light_slideshow'] = true;
    721721
    722 // the local data directory is used to store data such as compiled templates
    723 // or other plugin variables etc
    724 $conf['local_data_dir'] = dirname(dirname(__FILE__)).'/_data';
     722// the local data directory is used to store data such as compiled templates,
     723// plugin variables, combined css/javascript or resized images. Beware of
     724// mandatory trailing slash.
     725$conf['data_location'] = '_data/';
    725726
    726727// where should the API/UploadForm add photos? This path must be relative to
     
    757758$conf['derivative_url_style']=0;
    758759
    759 $conf['chmod_value']=0777;
    760 
     760$conf['chmod_value']= substr_compare(PHP_SAPI, 'apa', 0, 3)==0 ? 0777 : 0755;
    761761?>
Note: See TracChangeset for help on using the changeset viewer.