This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

WP Rails Authenticate

Description

Many people use wordpress to run blogs alongside their Ruby on Rails applications. And many
Ruby on Rails applications use very similar login systems, derived from the restful_authentication
or clearance plugins. This plugin provides hooks so that your wordpress blog can read your rails
app’s database.yml file, connect to that database and authenticate the user against your rails app.

This plugin requires the syck PHP extension for parsing yaml. Instructions for installing syck are available at
http://trac.symfony-project.org/wiki/InstallingSyck

To Do

  • Add automated tests
  • Solicit user feedback on further options

Installation

  1. Upload wp-rails-authenticate to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Go to the WP Rails Authenticate option under Settings and enter the path to your database.yml file

FAQ

I use a different method of encryption to the default. How do I change it?

To change encryption methods you will need to edit the plugin code. Override the function
WP_Rails_Authentication#apply_encryption with your preferred encryption method.

My blog is on the same domain as my rails app? Can I share sessions between them (single sign-on)?

Due to ruby and PHP using different serialisation approaches we’ve not (yet) got an easy way to share
sessions.

My blog runs on a different server from my rails app. How do I share accounts between them?

Providing your blog server can access the database, you simply need an appropriate database.yml file.

Are there other approaches to this problem?

Since this plugin was developed, the Rails Integration API
plugin has been released. That requires you to add some API code to your rails app, but
may be easier if you want to keep all the encryption logic solely in rails or can’t add an extra
module to PHP.

Reviews

There are no reviews for this plugin.

Contributors & Developers

“WP Rails Authenticate” is open source software. The following people have contributed to this plugin.

Contributors

Changelog

1.0

  • Consolidated code in use in various projects
  • Prepared for first release