sroyalty
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Amazon Wishlist] List Title link brokenSame results here with .com list used.
Ok, with the latest Developer on Facebook, you to disable the below mentioned setting on the Advanced Tab.
OAuth 2.0 for CanvasWith that being said, now when I click to add a profile tab it throws an error. I am assuming that is, once again, due to a setting on Facebook so I will continue to dig into it when I have time and report back to this thread once I have this one sorted out (but if anyone has info, please share with me, lol).
Forum: Plugins
In reply to: WordPress 2.5 Share users tableSo far it is partly like the 2.3 mod. Below is how my 2.5 shares. Now, this is for the same access across all shared blogs. I have not set it up to give unique access per blog.
wp-config.php in the 2nd, 3rd, etc (not first install though).
Before the line with define(‘ABSPATH’, dirname(__FILE__).’/’);// Let's add the code for sharing a user db table within the wordpress database. // Remember, all blogs must be installed to the same database, with unique prefix's. // These entries point to the single blog's userbase to share. define('CUSTOM_USER_TABLE', 'wp_users'); // Uncomment this to use the same usermeta globally for roles. define('CUSTOM_USER_META_TABLE', 'wp_usermeta');Then I made the following change to wp-includes/wp-capabilities.php
Find the line:
$this->cap_key = $wpdb->prefix . 'capabilities';
Change it too:
$this->cap_key = ‘wp_capabilities’;