Plugin info

Total downloads: 1,134
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 2/14/2010 (5797 days ago)
Added to WordPress: 1/7/2010 (15 years old)
Minimum WordPress version: 2.8.0
Tested up to WordPress version: 2.9.2
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 5797 days ago

20/100

Is WP Rails Authenticate abandoned?

Possibly abandoned (last update 5797 days ago).

Compatibility

Requires WordPress: 2.8.0
Tested up to: 2.9.2
Requires PHP: f

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Email Login
Rating 4.9/5 (27 reviews)Active installs 6,000
Require Auth Users REST Endpoint
Rating 0.0/5 (0 reviews)Active installs 30
Magento User Compatibility
Rating 4.3/5 (3 reviews)Active installs 20
Prestashop User Compatibility
Rating 5.0/5 (2 reviews)Active installs 20
WP OpenId Selector
Rating 0.0/5 (0 reviews)Active installs 20
Deactivate WordPress Users
Rating 4.0/5 (1 reviews)Active installs 10

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

Frequently Asked Questions

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.

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.0

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