2008/3/11, James DeVain <[EMAIL PROTECTED]>:

>  $WikiDir = new PageStore('$FarmD/shared.d-Whatever/$FullName');
>
Have you tried $WikiDir = new PageStore($FarmD .
'/shared.d-Whatever/$FullName'); ?

>  Also, if it helps, I'm using this in my farmconfig.php file:
>
>
>  $LockFile = "$FarmD/shared.d/.flock";
>  $WikiLibDirs = array(
>    &$WikiDir,
>       new PageStore('$FarmD/shared.d-Whatever/$FullName', 1),
>       new PageStore('$FarmD/wikilib.d/$FullName'));

I don't know it it can help, but $FarmD is a php variable while
$FullName is not.
So you should probably write :
  $WikiLibDirs = array(
    &$WikiDir,
       new PageStore($FarmD . '/shared.d-Whatever/$FullName', 1),
       new PageStore($FarmD . '/wikilib.d/$FullName'));

JF

_______________________________________________
pmwiki-users mailing list
[email protected]
http://www.pmichaud.com/mailman/listinfo/pmwiki-users

Reply via email to