You are not logged in.
I read through the Plugin:Linker page - http://xinha.webfactional.com/wiki/Linker - and can't make sense of how to modify the scan.php file to make a chosen directory tree appear instead of the default directory tree. I'm not a PHP programmer but I do know some PERL programming. But the instructions at the link above don't make sense to this Xinha newbie.
If someone could more explicitly tell me what to do to change the directory tree, that would be great.
Otherwise, I would like to know how to just hide the directory tree from showing, since I think it'll be too difficult for me to try to change it to show a different directory tree.
Any help would be appreciated.
Offline
Hi
Just replace the $dir variable :$dir = dirname(__FILE__)."/../../chosendirectory"; (relative to the scan.php file)
and the $url variable: $url = 'http://www.yoursite.com/chosendirectory';
That must do the trick. At least that was enough for me.
Succes,
webwol
Offline
Correction:
When your Xinha directory is in the root of the site, than is one more directory up;
Just replace the $dir variable :$dir = dirname(__FILE__)."/../../../chosendirectory";
Offline