Title: Reagan Lynch's Replies | WordPress.org

---

# Reagan Lynch

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Getty Images] Plugin doesn’t work in WP 5.3](https://wordpress.org/support/topic/plugin-doesnt-work-in-wp-3-5/)
 *  [Reagan Lynch](https://wordpress.org/support/users/rdlynch/)
 * (@rdlynch)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/plugin-doesnt-work-in-wp-3-5/#post-12166180)
 * I can confirm this is still broken in version 4.0.3 under WP 5.3.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redirection] Cannot create Group Name](https://wordpress.org/support/topic/cannot-create-group-name/)
 *  [Reagan Lynch](https://wordpress.org/support/users/rdlynch/)
 * (@rdlynch)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/cannot-create-group-name/#post-6623362)
 * I’m having this same issue. Not using multi-site these are single installations.
   If the gethub version fixes this problem then the author needs to update the 
   version here in the WP repo.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Reusable and easily modifiable content](https://wordpress.org/support/topic/post-title-and/)
 *  [Reagan Lynch](https://wordpress.org/support/users/rdlynch/)
 * (@rdlynch)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/post-title-and/#post-7008484)
 * This sounds like something you could easily achieve with a Custom Post Type. 
   You can read more on creating CPT’s at [http://codex.wordpress.org/custom_post_type](http://codex.wordpress.org/custom_post_type)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Leverage browser caching](https://wordpress.org/support/topic/leverage-browser-caching-30/)
 *  [Reagan Lynch](https://wordpress.org/support/users/rdlynch/)
 * (@rdlynch)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/leverage-browser-caching-30/#post-7006370)
 * [@markrh](https://wordpress.org/support/users/markrh/) thanks for catching that
   I didn’t even notice that it was a Google Maps link.
 * it does raise the question as to why Google Pagespeed even flags its own sites.
   I guess if nothing else you can get the information on what is causing slow page
   load times.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Disabling Initial Welcome email…](https://wordpress.org/support/topic/disabling-initial-welcome-email/)
 *  [Reagan Lynch](https://wordpress.org/support/users/rdlynch/)
 * (@rdlynch)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/disabling-initial-welcome-email/#post-7005319)
 * It’s not probably the ideal, but could you use a form plugin like Contact Form
   7 or Custom Contact Forms to build a pre-registration form and then have your
   admins add the person manually as part of the approval process?
 * I don’t know of a way to stop the auto email other than through various plugin
   solutions. I know that some Managed WordPress hosts have this functionality, 
   but I think that is custom code or something that is part of WP multisite.
 * If possible I would consider looking at a pre-registration process like I mention
   above. I know it’s not ideal like I said, but it would fix the issue and probably
   let you collect more information.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Homepage 302 Redirects to WP-Login.PHP](https://wordpress.org/support/topic/homepage-302-redirects-to-wp-loginphp/)
 *  [Reagan Lynch](https://wordpress.org/support/users/rdlynch/)
 * (@rdlynch)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/homepage-302-redirects-to-wp-loginphp/#post-7006337)
 * I took a look at your sites headers via [http://web-sniffer.net/](http://web-sniffer.net/)
   I did not see any redirection code. Can you check your htaccess file? Maybe something
   got inserted in that file. Also see if your server error or access logs are recording
   anything relating to a 302 redirect.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Leverage browser caching](https://wordpress.org/support/topic/leverage-browser-caching-30/)
 *  [Reagan Lynch](https://wordpress.org/support/users/rdlynch/)
 * (@rdlynch)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/leverage-browser-caching-30/#post-7006331)
 * Try this sample code in your .htaccess file. Be sure to back that file up or 
   make a copy before replacing it with this code. Add this code at the top of the
   file. Note also that this code is for almost every type of asset on your site(
   e.g. images, css, js, etc.).
 *     ```
       <IfModule mod_expires.c>
       # Enable expirations
       ExpiresActive On
       # My favicon
       ExpiresByType image/x-icon "access plus 1 year"
       # Images
       ExpiresByType image/gif "access plus 1 month"
       ExpiresByType image/png "access plus 1 month"
       ExpiresByType image/jpg "access plus 1 month"
       ExpiresByType image/jpeg "access plus 1 month"
       # CSS
       ExpiresByType text/css "access plus 1 month"
       # Javascript
       ExpiresByType application/javascript "access plus 30 minutes"
       </IfModule>
       ```
   
 * This code will cache the assets for around 30 days. Except for the javascript
   which should only be cached for 30 minutes.
 * Hopefully Google Pagespeed likes this.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Disabling Initial Welcome email…](https://wordpress.org/support/topic/disabling-initial-welcome-email/)
 *  [Reagan Lynch](https://wordpress.org/support/users/rdlynch/)
 * (@rdlynch)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/disabling-initial-welcome-email/#post-7005315)
 * I can understand how this could be a problem on this kind of site.
 * Try this plugin and see if the issue is not resolved [https://wordpress.org/plugins/disable-new-user-notifications/](https://wordpress.org/plugins/disable-new-user-notifications/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [permalink updated error on page. not found.](https://wordpress.org/support/topic/permalink-updated-error-on-page-not-found/)
 *  [Reagan Lynch](https://wordpress.org/support/users/rdlynch/)
 * (@rdlynch)
 * [20 years, 7 months ago](https://wordpress.org/support/topic/permalink-updated-error-on-page-not-found/#post-266675)
 * I have this same problem using 2.0. .htaccess is not updated at all and every
   page except the home page gives nice 404 errors.
 * I host with Hosting Matters if that makes a difference.
 * Above someone mentioned finding the rewrite rules in the DB. Where are they found
   and could they just be copied to the .htaccess file from the DB?
 * I’ve been struggleing with this for like two hours now and I’m tempted to go 
   get the rewrite rules out of my 1.5.2 .htaccess file.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Host installed PHPsuexec now admin functions has errors:(](https://wordpress.org/support/topic/host-installed-phpsuexec-now-admin-functions-has-errors/)
 *  [Reagan Lynch](https://wordpress.org/support/users/rdlynch/)
 * (@rdlynch)
 * [21 years, 2 months ago](https://wordpress.org/support/topic/host-installed-phpsuexec-now-admin-functions-has-errors/#post-194250)
 * I just experienced this same problem after being gone for a while.
 * Here are to of the numerous warning lines I found not only on my blog home page
   but all over the admin area.
 *  Warning: call_user_func_array(): First argumented is expected to be a valid 
   callback, ‘Array’ was given in /home/blindsch/public_html/wp-includes/functions.
   php
    on line 882
 *  Warning: call_user_func_array(): First argumented is expected to be a valid 
   callback, ‘Array’ was given in /home/blindsch/public_html/wp-includes/functions.
   php
    on line 882
 * Don’t know if my host put phpsuexec on, but could be possible.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Changing the category display for posting and for](https://wordpress.org/support/topic/changing-the-category-display-for-posting-and-for/)
 *  Thread Starter [Reagan Lynch](https://wordpress.org/support/users/rdlynch/)
 * (@rdlynch)
 * [22 years, 2 months ago](https://wordpress.org/support/topic/changing-the-category-display-for-posting-and-for/#post-55592)
 * Right I’ve looked through that, but I don’t know what I need to edit to make 
   the categories and sub-categories an extended select list box not checkboxes.

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