Loading...
 
Français

Français


Re: Re: Intégration de WebSVN avec Tiki

posts: 40 France

Bonjour,

As-tu essayé dans la direction suivante (je n'ai pas essayé):

Dans websvn, dans include/config.php
remplacer la ligne $config->useAuthenticationFile('/path/to/accessfile');
par
include_once('path/to/tiki-setup.php');

Vraisemblablement pour toi:
include_once('../tiki-setup.php');

Puis un test du genre:
if (!$user) {
$smarty->assign('msg', tra('Permission denied you cannot read this page'));
$smarty->display('error.tpl');
die;
}

Ou peut-être plutôt tester:
if ( ! $user || $user == 'Anonymous')

En espérant aider.

There are no comments at this time.