Title: pcushing's Replies | WordPress.org

---

# pcushing

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Error message on all pages](https://wordpress.org/support/topic/error-message-on-all-pages-2/)
 *  [pcushing](https://wordpress.org/support/users/pcushing/)
 * (@pcushing)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/error-message-on-all-pages-2/#post-10101111)
 * Hello.
 * It appears as though your wp-config.php has more than 1 place where WP_CRON_LOCK_TIMEOUT
   is being set. Reference [https://codex.wordpress.org/Editing_wp-config.php](https://codex.wordpress.org/Editing_wp-config.php)
   if you’re unsure how to edit your wp-config.php file and ensure that each constant
   is defined just once.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bootstrap for Contact Form 7] Broken after CF7 update](https://wordpress.org/support/topic/broken-after-cf7-update/)
 *  [pcushing](https://wordpress.org/support/users/pcushing/)
 * (@pcushing)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/broken-after-cf7-update/#post-8516984)
 * Thanks for the fix [@rumores](https://wordpress.org/support/users/rumores/)
 * I’ve found the previous solution to work for returning Bootstrap functionality.
   The form does send the email too. However, the response for the user now fails.
 * I get a 500 response at [http://www.mysite.com/mypage/?_wpcf7_is_ajax_call=1&_wpcf7=15168&_wpcf7_request_ver=1480967644772](http://www.mysite.com/mypage/?_wpcf7_is_ajax_call=1&_wpcf7=15168&_wpcf7_request_ver=1480967644772)
 * I’ll see if I can track it down, but any help is greatly appreciated.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bootstrap for Contact Form 7] Broken after CF7 update](https://wordpress.org/support/topic/broken-after-cf7-update/)
 *  [pcushing](https://wordpress.org/support/users/pcushing/)
 * (@pcushing)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/broken-after-cf7-update/#post-8516745)
 * For those of you with command line access on Linux, use:
 *     ```
       find . -type f -exec sed -i 's/WPCF7_Shortcode/WPCF7_FormTag/g' {} +
   
       find . -type f -exec sed -i 's/wpcf7_add_shortcode/wpcf7_add_form_tag/g' {} +
   
       find . -type f -exec sed -i 's/wpcf7_scan_shortcode/wpcf7_add_scan_tags/g' {} +
       ```
   
 * within the root of the plugin’s folder.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Theme Editor Writes Blank File When Updating File](https://wordpress.org/support/topic/theme-editor-writes-blank-file-when-updating-file/)
 *  Thread Starter [pcushing](https://wordpress.org/support/users/pcushing/)
 * (@pcushing)
 * [10 years ago](https://wordpress.org/support/topic/theme-editor-writes-blank-file-when-updating-file/#post-7326331)
 * Found the solution. 🙂
 * It turns out that I have run out of space on my server, disallowing me from adding
   to the WordPress database. I’m not certain how that causes the file to be written
   blank, but it does seem to be the cause.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Password field not validating after Billie update](https://wordpress.org/support/topic/password-field-not-validating-after-billie-update/)
 *  [pcushing](https://wordpress.org/support/users/pcushing/)
 * (@pcushing)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/password-field-not-validating-after-billie-update/#post-6452847)
 * I can add users from the backend still.
 * If you look through that file, you’ll see a comment at line 184 (I’m using vi)
   that says “Fix a LastPass mismatch issue…” You can search LastPass and you’re
   likely to find it. The comment is designated by /* and */. If you delete the 
   ending */ and replace it below the close of that function, ” } ); “, you will
   be commenting out the function.
 * You’ll be potentially breaking LastPass functionality but for me, I’m not concerned
   with it on my Registration page, and I need the Registration to work more than
   to support LastPass.
 * I haven’t had a chance to test yet, but I believe this would function better 
   if it were run once on page load, and not run again on inputEvent.
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Creating A New Feature Like "Posts"](https://wordpress.org/support/topic/creating-a-new-feature-like-posts-1/)
 *  [pcushing](https://wordpress.org/support/users/pcushing/)
 * (@pcushing)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/creating-a-new-feature-like-posts-1/#post-6549238)
 * You can find plugins to do this or create your own using Custom Post Types. Look
   up Custom Post Type in the plugin repository or look at [https://codex.wordpress.org/Post_Types](https://codex.wordpress.org/Post_Types)
   for more on how to build your own.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Password field not validating after Billie update](https://wordpress.org/support/topic/password-field-not-validating-after-billie-update/)
 *  [pcushing](https://wordpress.org/support/users/pcushing/)
 * (@pcushing)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/password-field-not-validating-after-billie-update/#post-6452842)
 * If it helps, I did narrow the problem down to the Lastpass fix within user-profile.
   js. I ended up commenting out the lines from 184 to 191 and my registration form
   works and doesn’t seem to affect anything else I’m using.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Password field not validating after Billie update](https://wordpress.org/support/topic/password-field-not-validating-after-billie-update/)
 *  [pcushing](https://wordpress.org/support/users/pcushing/)
 * (@pcushing)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/password-field-not-validating-after-billie-update/#post-6452800)
 * As a temporary solution, I’ve replaced the new user-profile.min.js with the one
   from WordPress 4.2 at [https://raw.githubusercontent.com/WordPress/WordPress/4.2-branch/wp-admin/js/user-profile.min.js](https://raw.githubusercontent.com/WordPress/WordPress/4.2-branch/wp-admin/js/user-profile.min.js)
 * I’ll dig into the js when I have time but this works for now.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Password field not validating after Billie update](https://wordpress.org/support/topic/password-field-not-validating-after-billie-update/)
 *  [pcushing](https://wordpress.org/support/users/pcushing/)
 * (@pcushing)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/password-field-not-validating-after-billie-update/#post-6452799)
 * I have the same problem. I’ll start digging but could use a fix if one is available.
   🙂
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Site Stats Seem Cause Problems](https://wordpress.org/support/topic/site-stats-seem-cause-problems/)
 *  Thread Starter [pcushing](https://wordpress.org/support/users/pcushing/)
 * (@pcushing)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/site-stats-seem-cause-problems/#post-3450917)
 * Sorry. I found the problem. I found it a problem only on my older XP system. 
   In doing some more experimenting, I found the canvas element was causing problems
   on XP regardless of browser or site.
    Maybe it’s just resource intensive enough
   that my poor laptop can’t hack it?
 * Thanks a bunch for the great work and help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Site Stats Seem Cause Problems](https://wordpress.org/support/topic/site-stats-seem-cause-problems/)
 *  Thread Starter [pcushing](https://wordpress.org/support/users/pcushing/)
 * (@pcushing)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/site-stats-seem-cause-problems/#post-3450814)
 * It looks like it might be a problem with the script on WordPress.com
 * I’ll update if I find out any more.
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Create new page with content from a submitted form](https://wordpress.org/support/topic/create-new-page-with-content-from-a-submitted-form/)
 *  [pcushing](https://wordpress.org/support/users/pcushing/)
 * (@pcushing)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/create-new-page-with-content-from-a-submitted-form/#post-2627777)
 * It should be rather easy to do using the ability to post via email. Set up an
   email form with the output to your publishing email address and the format you
   want your post in.

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