Reagan Lynch
Forum Replies Created
-
Forum: Plugins
In reply to: [Getty Images] Plugin doesn’t work in WP 5.3I can confirm this is still broken in version 4.0.3 under WP 5.3.
Forum: Plugins
In reply to: [Redirection] Cannot create Group NameI’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
In reply to: Reusable and easily modifiable contentThis sounds like something you could easily achieve with a Custom Post Type. You can read more on creating CPT’s at http://codex.ww.wp.xz.cn/custom_post_type
Forum: Fixing WordPress
In reply to: Leverage browser caching@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
In reply to: Disabling Initial Welcome email…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
In reply to: Homepage 302 Redirects to WP-Login.PHPI took a look at your sites headers via 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
In reply to: Leverage browser cachingTry 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
In reply to: Disabling Initial Welcome email…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://ww.wp.xz.cn/plugins/disable-new-user-notifications/
Forum: Fixing WordPress
In reply to: permalink updated error on page. not found.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
In reply to: Host installed PHPsuexec now admin functions has errors:(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 882Warning: 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 882Don’t know if my host put phpsuexec on, but could be possible.
Forum: Themes and Templates
In reply to: Changing the category display for posting and forRight 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.