Re: All good but the tiki-index.php
Ok Thanks to a dev (thomas Goirand from www.gplhost.com) not implicated in the tikiwiki project i found what cost me 2 weeks and force me 3 debian re install !
Using debug line (see below cause you know that it is not my stuff) i surround the 2 lines in tiki-index.php that was crashing my apache.
$fp = fopen("../tmp/logfile.txt","a+"); fwrite($fp,"Debug line ".LINE." file ".FILE."\n"); fclose($fp);
$contributors = $wikilib->get_contributors($page, $info'user');
$fp = fopen("../tmp/logfile.txt","a+"); fwrite($fp,"Debug line ".LINE." file ".FILE."\n"); fclose($fp);
$smarty->assign('contributors',$contributors);
I guess it goes also to lib/wiki/wikilib.php where it geos on.
I have comment the fisrt line the homepage appears with an undefined error, i then comment the second, my home seams to work fine.
Yoni