[pmwiki-users] Mailposts messages not arriving at $MailPostsTo list

Patrick R. Michaud pmichaud at pobox.com
Thu Aug 25 14:59:27 CDT 2005


On Thu, Aug 25, 2005 at 09:42:25AM +0200, Daniel Scheibler wrote:
> 
> The PerGroup config files are included after execution of local/config.php.
> In my farm I installed a solution where in my local/config.php is a block like
> 
> <config.php>
> 
> [... part before execution of PerGroup and PerPage customization ...]
> 
> if (file_exists("local\$group.php")) {
>   include_once("local\$group.php");
> }
> if (file_exists("local\$group.$page.php")) {
>   include_once("local\$group.$page.php");
> }

Note that this can also be done in config.php with:

    [... part before per-group and per-page customizations...]
    include_once("scripts/pgcust.php");
    [... other parts after per-group and per-page customizations...]

Pm




More information about the pmwiki-users mailing list