OwnCloud Config: Difference between revisions

From Lolly's Wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 6: Line 6:
<source lang=php>
<source lang=php>
   'apps_paths' => array (
   'apps_paths' => array (
     0 =>  
     0 => array (
    array (
       'path' => OC::$SERVERROOT.'/apps',
       'path' => OC::$SERVERROOT.'/apps',
       'url' => '/apps',
       'url' => '/apps',
       'writable' => false,
       'writable' => false,
     ),
     ),
     1 =>  
     1 => array (
    array (
       'path' => OC::$SERVERROOT.'/other_apps',
       'path' => OC::$SERVERROOT.'/other_apps',
       'url' => '/other_apps',
       'url' => '/other_apps',

Revision as of 13:48, 4 December 2014

Kategorie:OwnCloud


Seperate self installed apps from bundled apps

In your config add:

  'apps_paths' => array (
    0 => array (
      'path' => OC::$SERVERROOT.'/apps',
      'url' => '/apps',
      'writable' => false,
    ),
    1 => array (
      'path' => OC::$SERVERROOT.'/other_apps',
      'url' => '/other_apps',
      'writable' => true,
    ),
  ),