Title: Varr @ Integral's Replies | WordPress.org

---

# Varr @ Integral

  [  ](https://wordpress.org/support/users/sewebdev/)

 *   [Profile](https://wordpress.org/support/users/sewebdev/)
 *   [Topics Started](https://wordpress.org/support/users/sewebdev/topics/)
 *   [Replies Created](https://wordpress.org/support/users/sewebdev/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/sewebdev/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/sewebdev/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/sewebdev/engagements/)
 *   [Favorites](https://wordpress.org/support/users/sewebdev/favorites/)

 Search replies:

## Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type Permalinks] It doesn't work at all](https://wordpress.org/support/topic/it-doesnt-work-at-all-2/)
 *  [Varr @ Integral](https://wordpress.org/support/users/sewebdev/)
 * (@sewebdev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/it-doesnt-work-at-all-2/#post-4334425)
 * BTW, I inserted this into the functions.php file and it’s working now:
 *     ```
       function my_custom_add_rewrite_rules( $wp_rewrite )
       {
       	$new_rules = array(
       		'donate/(.+?)/?$' => 'index.php?ch_cause=$matches[1]',
       	);
   
       	$wp_rewrite->rules = $new_rules + $wp_rewrite->rules;
       }
       add_action('generate_rewrite_rules', 'my_custom_add_rewrite_rules');
       ```
   
 * Replace “ch_cause” with your post type and “donate” with the folder structure
   you want.
 * Not great but at least a work around.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type Permalinks] It doesn't work at all](https://wordpress.org/support/topic/it-doesnt-work-at-all-2/)
 *  [Varr @ Integral](https://wordpress.org/support/users/sewebdev/)
 * (@sewebdev)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/it-doesnt-work-at-all-2/#post-4334424)
 * Same issue here. 404’s … oddly enough some links fall through to a similar url
   with a different sublevel. (i.e. I set up a structure for “/donate” and /donate/
   event-name-1 will somehow redirect to /event/event-name-1 if it exists)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot get into Media Library Now with 3.6](https://wordpress.org/support/topic/cannot-get-into-media-library-now-with-36/)
 *  [Varr @ Integral](https://wordpress.org/support/users/sewebdev/)
 * (@sewebdev)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/cannot-get-into-media-library-now-with-36/#post-3993580)
 * I updated to WP 3.6 and was getting the same error:
 * `Call to undefined function wp_get_current_user()`
 * More than likely a plugin is attempting to check for permissions before the pluggable.
   php file has been loaded by core.
 * A quick fix that works well is to force load the pluggable.php file at the top
   of the capabilities.php file like so:
 *     ```
       <?php
       /**
        * WordPress Roles and Capabilities.
        *
        * @package WordPress
        * @subpackage User
        */
       include_once ('pluggable.php');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Admin page inaccessible after plugin update](https://wordpress.org/support/topic/admin-page-inaccessible-after-plugin-update/)
 *  [Varr @ Integral](https://wordpress.org/support/users/sewebdev/)
 * (@sewebdev)
 * [13 years ago](https://wordpress.org/support/topic/admin-page-inaccessible-after-plugin-update/#post-3755374)
 * Very nice! Good to hear!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Admin page inaccessible after plugin update](https://wordpress.org/support/topic/admin-page-inaccessible-after-plugin-update/)
 *  [Varr @ Integral](https://wordpress.org/support/users/sewebdev/)
 * (@sewebdev)
 * [13 years ago](https://wordpress.org/support/topic/admin-page-inaccessible-after-plugin-update/#post-3755298)
 * Also check out the support area for the plugin:
 * [http://wordpress.org/support/plugin/w3-total-cache](http://wordpress.org/support/plugin/w3-total-cache)
 * You may need to revert to 0.9.2.9:
 * [http://wordpress.org/extend/plugins/w3-total-cache/developers/](http://wordpress.org/extend/plugins/w3-total-cache/developers/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Performance droped after update to Plugin 0.9.2.10](https://wordpress.org/support/topic/performance-droped-after-update-to-plugin-09210/)
 *  [Varr @ Integral](https://wordpress.org/support/users/sewebdev/)
 * (@sewebdev)
 * [13 years ago](https://wordpress.org/support/topic/performance-droped-after-update-to-plugin-09210/#post-3750829)
 * You can revert to the prior version 0.9.2.9 to restore functionality until the
   developer has had some time to correct the issues:
 * [http://wordpress.org/extend/plugins/w3-total-cache/developers/](http://wordpress.org/extend/plugins/w3-total-cache/developers/)
 * Scroll to Other Versions.
 * You can also just use this URL to import directly from the dashboard:
 * [http://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.9.zip](http://downloads.wordpress.org/plugin/w3-total-cache.0.9.2.9.zip)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] New update didn't work…W3 Total Cache Error: Files and directories could not b](https://wordpress.org/support/topic/new-update-didnt-workw3-total-cache-error-files-and-directories-could-not-b/)
 *  [Varr @ Integral](https://wordpress.org/support/users/sewebdev/)
 * (@sewebdev)
 * [13 years ago](https://wordpress.org/support/topic/new-update-didnt-workw3-total-cache-error-files-and-directories-could-not-b/#post-3752034)
 * That’s more than my dashboard showed. When I clicked on the FTP “Update via FTP”
   I got a blank box.
 * After reverting to v0.9.2.9 things are back to normal.
 * Make sure you guys post something in the support area for the plugin so the developer
   knows the issue:
 * [http://wordpress.org/support/plugin/w3-total-cache](http://wordpress.org/support/plugin/w3-total-cache)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Admin page inaccessible after plugin update](https://wordpress.org/support/topic/admin-page-inaccessible-after-plugin-update/)
 *  [Varr @ Integral](https://wordpress.org/support/users/sewebdev/)
 * (@sewebdev)
 * [13 years ago](https://wordpress.org/support/topic/admin-page-inaccessible-after-plugin-update/#post-3755277)
 * You may need to go into your .htaccess file and remove all the W3TC sections.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Friends] facebook members box in template file](https://wordpress.org/support/topic/facebook-members-box-in-template-file/)
 *  [Varr @ Integral](https://wordpress.org/support/users/sewebdev/)
 * (@sewebdev)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/facebook-members-box-in-template-file/#post-3263538)
 * Try this:
 * `do_shortcode("as_facebook_mem_likebox_widgets");`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Friends] Members Pics Have Vanished?](https://wordpress.org/support/topic/members-pics-have-vanished/)
 *  [Varr @ Integral](https://wordpress.org/support/users/sewebdev/)
 * (@sewebdev)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/members-pics-have-vanished/#post-3251522)
 * I’m experiencing the same thing. Any ideas?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Google Fonts] [TEMP FIX] Settings won't save after upgrading WP to 3.5](https://wordpress.org/support/topic/temp-fix-settings-wont-save-after-upgrading-wp-to-35/)
 *  Thread Starter [Varr @ Integral](https://wordpress.org/support/users/sewebdev/)
 * (@sewebdev)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/temp-fix-settings-wont-save-after-upgrading-wp-to-35/#post-3324948)
 * I was upgrading from the prior version of WP, 3.4.2 I think. And I think I had
   upgraded WP before the plugin.
 * Incidentally the way my settings were set, the first 2 font spaces weren’t being
   used, but the third was, and it was the only one being used. Not sure if that
   had something to do with it.
 * Either way, it works now.
 * Thanks for the great plugin!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Theme Blvd News Scroller Widget] [Plugin: Theme Blvd News Scroller Widget] custom post-types/taxonomies](https://wordpress.org/support/topic/plugin-theme-blvd-news-scroller-widget-custom-post-typestaxonomies/)
 *  [Varr @ Integral](https://wordpress.org/support/users/sewebdev/)
 * (@sewebdev)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-theme-blvd-news-scroller-widget-custom-post-typestaxonomies/#post-2993811)
 * Check out this fix: [http://wordpress.org/support/topic/resolved-custom-post-types-compatible?replies=1#post-3694300](http://wordpress.org/support/topic/resolved-custom-post-types-compatible?replies=1#post-3694300)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Captcha] [Plugin: Captcha] new update won't let us to change settings](https://wordpress.org/support/topic/plugin-captcha-new-update-wont-let-us-to-change-settings/)
 *  [Varr @ Integral](https://wordpress.org/support/users/sewebdev/)
 * (@sewebdev)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-captcha-new-update-wont-let-us-to-change-settings/#post-2917880)
 * I’m having a the same issue and I can confirm that no settings are getting saved
   into the database.
 * The ‘cptch_options’ entry is there in the wp_options table, but it is set to 
   an empty array ‘a:0:{}’.
 * Thanks for the work around suggestion [@pilatesbu](https://wordpress.org/support/users/pilatesbu/)!

Viewing 13 replies - 1 through 13 (of 13 total)