robbpdx
Forum Replies Created
-
Forum: Plugins
In reply to: Rails 2.0 WP 2.3 = Auto Users Parallel Authentication@abhic I created a plugin that does exactly this.
Forum: Installing WordPress
In reply to: Installing WordPress on existing Rails / Apache serverThis is easy to do with Apache:
- Set up an alias for the URL you want wordpress to have.
- Create a proxy pass exception for that path.
- Proxy everything else to Rails.
That will look like this. Taken from my Apache config:
Alias /blog /home/other_content/blog
<Directory /home/other_content/blog>
AllowOverride All
</Directory>ProxyPass /blog !
ProxyPass / balancer://mycluster/
ProxyPassReverse / balancer://mycluster/BTW, I’ve uploaded a new WordPress plugin to do single sign-on with Rails. Search for ‘rails’ in the plugin directory.
Forum: Plugins
In reply to: Subscribe to comments vs W¨2.6@jd.hartley: Ditto!
@markjaquith: Your comment implies that v 2.1.2 works with WP 2.6. But the plugin page says it does not. ??
Forum: Plugins
In reply to: Image Gallery per userHmm… would there be a way to hack the image viewer to filter out images not uploaded by the current user? Is any metadata, such as the uploading-user, stored with images?
Forum: Fixing WordPress
In reply to: Multiple WP installs, same login for each?Yes, I agree – (for 2.3) – I have two WordPress instances sharing the same database, except for the options table. In the “second” instance, users get the insufficient permissions error. I don’t know how it is discriminating between the two set ups.