Install directories as chown -R www-data:www-data ./dokuwiki

Modify local/config/config.inc.php using LocalFiles Editor

<?php

/* The file does not exist until some information is entered 
below. Once information is entered and saved, the file will be created. */

$conf['show_iptc_mapping'] = array(
  'iptc_keywords'        => '2#025',    
  'iptc_caption_writer'  => '2#122',
  'iptc_byline_title'    => '2#085',
  'iptc_caption'         => '2#120'
  );

$conf['use_iptc'] = true;


$conf['use_iptc_mapping'] = array(
  'keywords'        => '2#025',
  'date_creation'   => '2#055',
  'author'          => '2#122',
  'name'            => '2#005',
  'comment'         => '2#120'
  );

//added 2011-09-17

$conf['use_iptc_mapping'] = array(
  'name'            => '2#105',
  'comment'         => '2#120'
  );


$conf['use_iptc'] = true;

$conf['use_iptc_mapping'] = array(
  'keywords'        => '2#025',
  );?>
);

$conf['smtp_host'] = 'mail.argets.com:26';

$conf['smtp_user'] = 'jlarget@argets.com';

$conf['smtp_password'] = 'P!w!g0469';

?&gt;

In functions.php

function pwg_URL()

{

$urls = array(

'HOME'       =&gt; PHPWG_URL,

'WIKI'       =&gt; PHPWG_URL.'/doc/doku.php',

'DEMO'       =&gt; PHPWG_URL.'/demo',

'FORUM'      =&gt; PHPWG_URL.'/forum',

'BUGS'       =&gt; PHPWG_URL.'/bugs',

'EXTENSIONS' =&gt; PHPWG_URL.'/ext',

);

return $urls;

}