Title: Atomix's Replies | WordPress.org

---

# Atomix

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wordfence Security - Firewall, Malware Scan, and Login Security] Scan gets stuck](https://wordpress.org/support/topic/scan-gets-stuck/)
 *  [Atomix](https://wordpress.org/support/users/atomixdesign/)
 * (@atomixdesign)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/scan-gets-stuck/#post-8766911)
 * What steps have you taken to try to troubleshoot this so far?
    [https://docs.wordfence.com/en/Troubleshooting_and_Common_Errors#Scanning_and_Scan_Results](https://docs.wordfence.com/en/Troubleshooting_and_Common_Errors#Scanning_and_Scan_Results)
 * What server are you using? IIS? Apache? Nginx? Litespeed?
    Which version of PHP?
 * For us, to ensure scans always complete we’ve had to add a few lines to our .
   htaccess file (specific to Litespeed Web Server), and also change the maximum
   memory limit and maximum time per step in the Options page. Since then all scans
   have been successful.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wordfence Security - Firewall, Malware Scan, and Login Security] Hackers able to update posts anonymously with Wordfence activated and configured](https://wordpress.org/support/topic/hackers-able-to-update-posts-anonymously-with-wordfence-activated-and-configured/)
 *  [Atomix](https://wordpress.org/support/users/atomixdesign/)
 * (@atomixdesign)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/hackers-able-to-update-posts-anonymously-with-wordfence-activated-and-configured/#post-8760843)
 * A couple of things to check:
    - Are you running Wordfence Premium? If not, the firewall rules may be out of
      date (unless you’re definitely running the latest Wordfence plugin).
    - Check the Firewall page and scroll to the end of the list of rules. Does it
      include the latest 4.7.X rules (auth-bypass)? If not, Wordfence doesn’t have
      the information it needs to protect your site from these attacks.
    - Also, is the Firewall definitely active? (Does it say “Protecting” or is it
      still in “Learning Mode”?). We had an issue where the firewall reverted to
      Learning Mode after the wp-content/wflogs/ directory was accidentally deleted
      during a deployment.
    - Which version of WordPress are you running? Was it below 4.7.2 at the time
      of the attack?
    - Could it be one of your plugins? Have you tried searching for them on wpvulndb.
      com to see if any have known vulnerabilities?
 *  -  This reply was modified 9 years, 5 months ago by [Atomix](https://wordpress.org/support/users/atomixdesign/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Fat Zebra Gateway] BUG: 1.5.2 breaks Direct Post](https://wordpress.org/support/topic/bug-152-breaks-direct-post/)
 *  Thread Starter [Atomix](https://wordpress.org/support/users/atomixdesign/)
 * (@atomixdesign)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/bug-152-breaks-direct-post/#post-6756272)
 * I have made several critical fixes to the plugin and submitted a Pull Request:
   
   [https://github.com/fatzebra/FatZebra-WooCommerce/pull/4](https://github.com/fatzebra/FatZebra-WooCommerce/pull/4)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] PHP Notice after updating to version 0.9.4](https://wordpress.org/support/topic/php-notice-after-updating-to-version-094/)
 *  [Atomix](https://wordpress.org/support/users/atomixdesign/)
 * (@atomixdesign)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/php-notice-after-updating-to-version-094/#post-4790106)
 * We had this too, try going to the W3TC (“Performance”) admin menu, there’s some
   new settings available (a message will appear at the top of the page). Once you
   save the settings again it will add the missing data and the notices should disappear.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Beta Tester] Not updating from 3.8 to 3.9b](https://wordpress.org/support/topic/not-updating-from-38-to-39b/)
 *  [Atomix](https://wordpress.org/support/users/atomixdesign/)
 * (@atomixdesign)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/not-updating-from-38-to-39b/#post-4741964)
 * Did you go to Tools=>Beta Testing and switch to “Bleeding Edge Nightlies”? As
   soon as you do that it should appear in the update screen, I was able to upgrade
   from 3.8.1 to 3.9b2 without any trouble.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Event Calendar: Private Category] Language / label changes?](https://wordpress.org/support/topic/language-label-changes/)
 *  [Atomix](https://wordpress.org/support/users/atomixdesign/)
 * (@atomixdesign)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/language-label-changes/#post-4264251)
 * This is actually controlled by the WordPress core, inside the get_the_title()
   function.
 * Try this hook in your theme functions file:
 *     ```
       /**
        * Tribe Events: Replace 'Private: ' title prefix from events
        */
       function tribe_events_remove_post_status($title, $id) {
   
         $cpt = get_post_type();
         if($cpt == 'tribe_events') {
           $title = str_ireplace('Private:', 'Internal Only:', $title);
         }
         return $title;
       }
       add_filter('the_title', 'tribe_events_remove_post_status', 10, 2);
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Menu Wizard Widget] 2.0.0 and WP 3.6.1 is BROKEN](https://wordpress.org/support/topic/200-and-wp-361-is-broken/)
 *  [Atomix](https://wordpress.org/support/users/atomixdesign/)
 * (@atomixdesign)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/200-and-wp-361-is-broken/#post-4145605)
 * Confirmed broken in 3.6.1 as well, had to downgrade.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Permalink / Breadcrumb structure issue with Page > CPTC > Post](https://wordpress.org/support/topic/permalink-breadcrumb-structure-issue-with-page-cptc-post/)
 *  Thread Starter [Atomix](https://wordpress.org/support/users/atomixdesign/)
 * (@atomixdesign)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/permalink-breadcrumb-structure-issue-with-page-cptc-post/#post-3838026)
 * Bump! – Can anyone help!?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Admin UI Customize] Multisite Bug with Custom Post Types](https://wordpress.org/support/topic/multisite-bug-with-custom-post-types/)
 *  Thread Starter [Atomix](https://wordpress.org/support/users/atomixdesign/)
 * (@atomixdesign)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/multisite-bug-with-custom-post-types/#post-3767425)
 * Thanks for the response,
 * all fixed!

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