1

(21 replies, posted in Feature requests)

Sounds promising. Thanks.

2

(21 replies, posted in Feature requests)

I made a total integration between Word Press Multi User (Wpmu) and PunBB and it works very well in all Wpmu-themes.

The thing was that Word Press (Wp) and PunBB have a lot of functions in common. This results in a crash while trying to either open Wp environment in PunBB or the other way around.

The trick then was to rename all the functions, and occurrences of that function, in PunBB to a unique name. This means i.e. that new_post() will be named pun_new_post() and redirect() will get the name pun_redirect().

When all that was done the integration was no problem. I made it work with Wpmu so that when you create your new blog you get a punBB forum as well.

Now the problem is that I can't upgrade my installation or install mods and extensions for PunBB because of all the renamed functions. So my suggestion to the Pun Developers is to have unique names on all the functions. to put the prefix "forum_" is enough (as has been done to most of the functions already).

Thx.