Hello everyone,
I've been wanting to share with all you something new and special. I've needed to use Wordpress Multiuser as blogging software (it's supported and has new releases once in a while and people know how to use it) with PRADO. Auxiliary is the integration of BBPress too. Basically, it's a single login system for prado, blogs, and forums.
Here's what it integrates:
- Users management in PRADO uses Wordpress
- User roles in PRADO uses Wordpress
- Permissions and user capabilities in PRADO uses wordpress (more an extension of PRADO)
- User authentication in prado uses itself (sessions) and wordpress (cookies)
- initializes most of the Wordpress code libraries (so you get actions and filters!!)
- includes all the Wordpress plugins
- (and it's relatively easy to integrate!)
It's a neat little system. Once it's all set up you can log in and manipulate permissions, roles, capabilities, and users then go over and blog about it and finally check in to what people are talking about in you forum.
The instructions are not for the taint of heart but if you're using PRADO then you should know enough to do this:
0) download and unzip this package
1) download and unzip Wordpress MU into the root of the package
2) create a symolic link to wordpress called 'blogs', like this:
ln -s wordpress-mu-1.2.4 blogs
3) install Wordpress by going to the blogs directory in your web browser
4) add/change the Wordpress wp-config.php file so that the COOKIEPATH, SITECOOKIEPATH, and
COOKIE_DOMAIN are these values respectively '/', '/', '.mysite.com'
(be sure to have a leading period on the domain or the cookies won't work correctly between
http://www.mysite.com and
http://mysite.com)
5) install 2 Wordpress fixes (necessary up to and including version 1.2.4):
http://wordpress.org/support/topic/131509 -- removing user roles doesn't work
http://wordpress.org/support/topic/132841 -- having multiple roles doesn't work
6) make sure assets and protected/runtime are writable by the php/webserver process
7) change the path to prado in the index.php file

change the application.xml database connection in three places (wordpress, prado, globalization)
9) (optional) install bbpress with the wordpress extension, change the config file for the three cookie variables above to those same values
10) install the Wordpress plugin (and bbpress plugin) so when the user logs out of
either of those two packages then the prado session will be destroyed as well
11) go to the site in your browser, fix any bugs and report them back to me on this prado forum thread
12) Log in and add these permissions to the system:
admin
admin_super
can_become_user
manage_caps
manage_catalogue
manage_pages
manage_perms
manage_roles
manage_user_roles
manage_users
All the best,
Brad
P.S. I almost feel dirty putting these two popular packages together!