User78342324
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-admin is a blank pageI would try manually disabling all of your plugins and see if that helps.
https://www.wpbeginner.com/plugins/how-to-deactivate-all-plugins-when-not-able-to-access-wp-admin/
Forum: Fixing WordPress
In reply to: mod_deflate only partially workingOk, lets try this. This mod_deflate .htaccess code will minify all code and font files. Photos should already be compressed so mod_deflate shouldn’t deflate them.
<IfModule mod_deflate.c> <filesMatch "\.(js|css|html|php|woff2|woff)$"> SetOutputFilter DEFLATE </filesMatch> </IfModule> # Drop problematic browsers BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html # Make sure proxies don't deliver the wrong content Header append Vary User-Agent env=!dont-vary
To compress your images, install this plugin Compress JPEG & PNG images. There is a little bit of setup, but it is entirely worth it.
https://www.ads-software.com/plugins/tiny-compress-images/Additionally, I recommend setting up CloudFlare on your website too. But this is entirely optional and up to you (but strongly suggested).
https://www.cloudflare.com/Forum: Fixing WordPress
In reply to: mod_deflate only partially workingSorry about the late reply. I took a look at the webpagetest.org results and it looks like I forgot to deflate the other file types on your website. Here is a new version with your website’s included file types.
<IfModule mod_deflate.c> <filesMatch "\.(js|css|html|php|jpg|png|gif|woff2|woff)$"> SetOutputFilter DEFLATE </filesMatch> # Drop problematic browsers BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html # Make sure proxies don't deliver the wrong content Header append Vary User-Agent env=!dont-vary </IfModule>
Forum: Fixing WordPress
In reply to: mod_deflate only partially workingDelete your old mod_deflate code and replace it with option one. If that doesn’t work, try option two.
Link: https://stackoverflow.com/questions/13216095/gzip-compression-not-working
Option 1
#Gzip <ifmodule mod_deflate.c> AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x- javascript application/javascript </ifmodule> #End Gzip
Option 2
<IFModule mod_deflate.c> <filesmatch "\.(js|css|html|jpg|png|php)$"> SetOutputFilter DEFLATE </filesmatch> </IFModule>
Forum: Fixing WordPress
In reply to: mod_deflate only partially workingCould you please post a link to your website so I can take a look?
Forum: Plugins
In reply to: [Wordpress 2-step verification] Help! Locked out!Glad to hear you fixed your site. Always happy to help ??
Forum: Fixing WordPress
In reply to: Login Error CokiesIt is usually because there are spaces, new lines, or other stuff before an opening <?php tag or after a closing ?> tag, typically in wp-config.php.
Your wp-config.php file should look something like this: https://github.com/WordPress/WordPress/blob/master/wp-config-sample.php
Forum: Fixing WordPress
In reply to: mod_deflate only partially workingHave you tried this code posted in the WordPress Codex?
https://codex.www.ads-software.com/Output_Compression
<IfModule mod_deflate.c> # Insert filters AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE text/xml AddOutputFilterByType DEFLATE text/css AddOutputFilterByType DEFLATE application/xml AddOutputFilterByType DEFLATE application/xhtml+xml AddOutputFilterByType DEFLATE application/rss+xml AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/x-javascript AddOutputFilterByType DEFLATE application/x-httpd-php AddOutputFilterByType DEFLATE application/x-httpd-fastphp AddOutputFilterByType DEFLATE image/svg+xml # Drop problematic browsers BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html # Make sure proxies don't deliver the wrong content Header append Vary User-Agent env=!dont-vary </IfModule>
Forum: Plugins
In reply to: [Wordpress 2-step verification] SSL PagesI’ve had this same issue too. I just forced WordPress to serve all pages over SSL, and the issue went away.
Forum: Plugins
In reply to: [Wordpress 2-step verification] Help! Locked out!If you’re still having this issue, you can try manually disabling the plugin by logging into your hosting account.
Open up their file manager, then open up your “wp-content” folder, click on “plugins”. Look for the folder labledwordpress-2-step-verification, and rename it.
Then you should be able to login to WordPress again.
Thanks for the response Jeremy, I’ll look into Jetpack’s Development mode.
Thank you so much for fixing the upload quota problem!
I was wondering how long it would take for the storage space amount to change after I upload a file?
Thanks,
-MarcForum: Networking WordPress
In reply to: Problem logging in to sites!From what I can see your wp-config.php file looks fine too. Are you running multisite on a VPS?
Forum: Fixing WordPress
In reply to: FORCE_SSL_LOGIN not workingThis may be of some help.
https://codex.www.ads-software.com/Installing_on_Microsoft_IIS
Forum: Fixing WordPress
In reply to: Password protection ineffectiveThese may be worth checking out.