Web General
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changes Not Displaying On Front End/Browser Tab Says Page Not FoundSorry for the late reply, but I’ve found a reasonable solution to fix this problem. I appreciate the help. I’m now closing this topic.
Forum: Fixing WordPress
In reply to: Changes Not Displaying On Front End/Browser Tab Says Page Not FoundOkay, just tried the 2 fixes you suggested. Unfortunately, the problem still persists.
Would you happen to know of any other fixes?
Forum: Fixing WordPress
In reply to: Changes Not Displaying On Front End/Browser Tab Says Page Not FoundYes, I’m aware. Each code is on a separate line on the actual .htaccess file, but on here when I copied and pasted the code on here it appeared the way you see above, but I assure you on the actual .htaccess file, each line of code is on a separate line.
It still does not fix the original problem though.
- This reply was modified 1 year, 9 months ago by Web General.
Forum: Fixing WordPress
In reply to: Changes Not Displaying On Front End/Browser Tab Says Page Not FoundThe same
BEGIN AIRLIFT
AddDefaultCharset utf8
AddType text/html .html_gzip AddEncoding gzip .html_gzip
RewriteEngine On RewriteBase / RewriteCond %{HTTPS} on [OR] RewriteCond %{SERVER_PORT} ^443$ [OR] RewriteCond %{HTTP:X-Forwarded-Proto} https RewriteRule .* - [E=SO_SECURE:-https] RewriteCond %{HTTP:Accept-Encoding} gzip RewriteRule .* - [E=SO_ENCODE:gzip] RewriteCond %{REQUEST_METHOD} GET RewriteCond %{QUERY_STRING} ="" RewriteCond %{HTTP:Cookie} !(wordpress_logged_in|wp-postpass_|wptouch_switch_toggle|comment_author_|comment_author_email_) [NC] RewriteCond %{REQUEST_URI} !^(/(.+/)?feed/?|/(index.php/)?wp-json(/.|$))$ [NC] RewriteCond %{HTTP_USER_AGENT} !^(facebookexternalhit). [NC] RewriteCond "%{DOCUMENT_ROOT}/wp-content/cache/airlift/%{HTTP_HOST}%{REQUEST_URI}/index%{ENV:SO_SECURE}.html%{ENV:SO_ENCODE}" -f RewriteRule .* "%{DOCUMENT_ROOT}/wp-content/cache/airlift/%{HTTP_HOST}%{REQUEST_URI}/index%{ENV:SO_SECURE}.html%{ENV:SO_ENCODE}" [L] END AIRLIFT BEGIN LSCACHE LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block!
RewriteEngine on
CacheLookup on
RewriteRule .* - [E=Cache-Control:no-autoflush]
RewriteRule .litespeed_conf.dat - [F,L] marker ASYNC start
RewriteCond %{REQUEST_URI} /wp-admin/admin-ajax.php
RewriteCond %{QUERY_STRING} action=async_litespeed
RewriteRule .* - [E=noabort:1] marker ASYNC end marker CACHE RESOURCE start
RewriteRule wp-content/./[^/](responsive|css|js|dynamic|loader|fonts).php - [E=cache-control:max-age=3600] marker CACHE RESOURCE end marker DROPQS start
CacheKeyModify -qs:fbclid
CacheKeyModify -qs:gclid
CacheKeyModify -qs:utm*
CacheKeyModify -qs:_ga marker DROPQS end LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! END LSCACHE BEGIN NON_LSCACHE LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! marker BROWSER CACHE start
ExpiresActive on
ExpiresByType application/pdf A31557600
ExpiresByType image/x-icon A31557600
ExpiresByType image/vnd.microsoft.icon A31557600
ExpiresByType image/svg+xml A31557600
ExpiresByType image/jpg A31557600
ExpiresByType image/jpeg A31557600
ExpiresByType image/png A31557600
ExpiresByType image/gif A31557600
ExpiresByType image/webp A31557600
ExpiresByType video/ogg A31557600
ExpiresByType audio/ogg A31557600
ExpiresByType video/mp4 A31557600
ExpiresByType video/webm A31557600
ExpiresByType text/css A31557600
ExpiresByType text/javascript A31557600
ExpiresByType application/javascript A31557600
ExpiresByType application/x-javascript A31557600
ExpiresByType application/x-font-ttf A31557600
ExpiresByType application/x-font-woff A31557600
ExpiresByType application/font-woff A31557600
ExpiresByType application/font-woff2 A31557600
ExpiresByType application/vnd.ms-fontobject A31557600
ExpiresByType font/ttf A31557600
ExpiresByType font/otf A31557600
ExpiresByType font/woff A31557600
ExpiresByType font/woff2 A31557600 marker BROWSER CACHE end LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! END NON_LSCACHE BEGIN WordPress The directives (lines) between "BEGIN WordPress" and "END WordPress" are dynamically generated, and should only be modified via WordPress filters. Any changes to the directives between these markers will be overwritten.
RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] END WordPress Wordfence WAF
php_value auto_prepend_file '/home/u831126664/domains/bunker41.com/public_html/wordfence-waf.php'difference is the wordpress section. Instead of it looking like this:
BEGIN WordPress The directives (lines) between “BEGIN WordPress” and “END WordPress” are dynamically generated, and should only be modified via WordPress filters. Any changes to the directives between these markers will be overwritten.
RewriteEngine On RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] END WordPress
It now looks likes this:
BEGIN WordPress
The directives (lines) between “BEGIN WordPress” and “END WordPress” are dynamically generated, and should only be modified via WordPress filters. Any changes to the directives between these markers will be overwritten.
RewriteEngine On RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]
END WordPress
Forum: Fixing WordPress
In reply to: Changes Not Displaying On Front End/Browser Tab Says Page Not FoundOkay, I just fixed the code but it didn’t help with the pages.
What now?
- This reply was modified 1 year, 9 months ago by Web General.
Forum: Fixing WordPress
In reply to: Changes Not Displaying On Front End/Browser Tab Says Page Not FoundProbably a weird question, am I only supposed to fix the WordPress section or the other sections as well?
Forum: Fixing WordPress
In reply to: Changes Not Displaying On Front End/Browser Tab Says Page Not FoundIf I do this. Will it fix the problem?
Forum: Fixing WordPress
In reply to: Changes Not Displaying On Front End/Browser Tab Says Page Not FoundWell, I guess I don’t have much of a choice since I need this problem fixed.
So here’s the content of .htaccess file
BEGIN AIRLIFT
AddDefaultCharset utf8
AddType text/html .html_gzip AddEncoding gzip .html_gzip
RewriteEngine On RewriteBase / RewriteCond %{HTTPS} on [OR] RewriteCond %{SERVER_PORT} ^443$ [OR] RewriteCond %{HTTP:X-Forwarded-Proto} https RewriteRule .* - [E=SO_SECURE:-https] RewriteCond %{HTTP:Accept-Encoding} gzip RewriteRule .* - [E=SO_ENCODE:gzip] RewriteCond %{REQUEST_METHOD} GET RewriteCond %{QUERY_STRING} ="" RewriteCond %{HTTP:Cookie} !(wordpress_logged_in|wp-postpass_|wptouch_switch_toggle|comment_author_|comment_author_email_) [NC] RewriteCond %{REQUEST_URI} !^(/(.+/)?feed/?|/(index.php/)?wp-json(/.|$))$ [NC] RewriteCond %{HTTP_USER_AGENT} !^(facebookexternalhit). [NC] RewriteCond "%{DOCUMENT_ROOT}/wp-content/cache/airlift/%{HTTP_HOST}%{REQUEST_URI}/index%{ENV:SO_SECURE}.html%{ENV:SO_ENCODE}" -f RewriteRule .* "%{DOCUMENT_ROOT}/wp-content/cache/airlift/%{HTTP_HOST}%{REQUEST_URI}/index%{ENV:SO_SECURE}.html%{ENV:SO_ENCODE}" [L] END AIRLIFT BEGIN LSCACHE LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block!
RewriteEngine on
CacheLookup on
RewriteRule .* - [E=Cache-Control:no-autoflush]
RewriteRule .litespeed_conf.dat - [F,L] marker ASYNC start
RewriteCond %{REQUEST_URI} /wp-admin/admin-ajax.php
RewriteCond %{QUERY_STRING} action=async_litespeed
RewriteRule .* - [E=noabort:1] marker ASYNC end marker CACHE RESOURCE start
RewriteRule wp-content/./[^/](responsive|css|js|dynamic|loader|fonts).php - [E=cache-control:max-age=3600] marker CACHE RESOURCE end marker DROPQS start
CacheKeyModify -qs:fbclid
CacheKeyModify -qs:gclid
CacheKeyModify -qs:utm*
CacheKeyModify -qs:_ga marker DROPQS end LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! END LSCACHE BEGIN NON_LSCACHE LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! marker BROWSER CACHE start
ExpiresActive on
ExpiresByType application/pdf A31557600
ExpiresByType image/x-icon A31557600
ExpiresByType image/vnd.microsoft.icon A31557600
ExpiresByType image/svg+xml A31557600
ExpiresByType image/jpg A31557600
ExpiresByType image/jpeg A31557600
ExpiresByType image/png A31557600
ExpiresByType image/gif A31557600
ExpiresByType image/webp A31557600
ExpiresByType video/ogg A31557600
ExpiresByType audio/ogg A31557600
ExpiresByType video/mp4 A31557600
ExpiresByType video/webm A31557600
ExpiresByType text/css A31557600
ExpiresByType text/javascript A31557600
ExpiresByType application/javascript A31557600
ExpiresByType application/x-javascript A31557600
ExpiresByType application/x-font-ttf A31557600
ExpiresByType application/x-font-woff A31557600
ExpiresByType application/font-woff A31557600
ExpiresByType application/font-woff2 A31557600
ExpiresByType application/vnd.ms-fontobject A31557600
ExpiresByType font/ttf A31557600
ExpiresByType font/otf A31557600
ExpiresByType font/woff A31557600
ExpiresByType font/woff2 A31557600 marker BROWSER CACHE end LITESPEED WP CACHE PLUGIN - Do not edit the contents of this block! END NON_LSCACHE BEGIN WordPress The directives (lines) between "BEGIN WordPress" and "END WordPress" are dynamically generated, and should only be modified via WordPress filters. Any changes to the directives between these markers will be overwritten.
RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] END WordPress Wordfence WAF
php_value auto_prepend_file '/home/u831126664/domains/bunker41.com/public_html/wordfence-waf.php'
php_value auto_prepend_file '/home/u831126664/domains/bunker41.com/public_html/wordfence-waf.php' END Wordfence WAFIs there anything missing?
- This reply was modified 1 year, 9 months ago by Web General.
- This reply was modified 1 year, 9 months ago by Web General.
Forum: Fixing WordPress
In reply to: Changes Not Displaying On Front End/Browser Tab Says Page Not Found- They are all published.
- Before I post the content of my .htaccess file. for security purposes my website is not going to get hacked by some random person on here if they see these files is it?
Forum: Fixing WordPress
In reply to: Changes Not Displaying On Front End/Browser Tab Says Page Not FoundTried that didn’t work but I did read something on the internet that there could be possible code missing from my .htaccess file, but due to my limited knowledge of coding, I chose not to do it since I do not know the proper code to insert for the updating to work properly.
Do you happen to know the knowledge of this?
Forum: Fixing WordPress
In reply to: Changes Not Displaying On Front End/Browser Tab Says Page Not FoundSorry about not adding more context but its not just my shop page. Here is the other pages that are effected as well.
About Page:
Sorry for not adding more context.
Thanks for your help.
Forum: Fixing WordPress
In reply to: TypeError: Cannot read properties of undefinedOkay, the last step you told me to do worked. I appreciate all the help sir, and my sincere apologies if I was getting on your nerves.
Forum: Fixing WordPress
In reply to: TypeError: Cannot read properties of undefinedOkay, trying that now.
Forum: Fixing WordPress
In reply to: TypeError: Cannot read properties of undefinedYes, the error is still there
Here are the new errors:
TypeError: Cannot read properties of undefined (reading ‘page’)
at https://www.bunker41.com/wp-includes/js/dist/edit-post.min.js?ver=d098b8ee5bdffa238c03:7:30074
at https://www.bunker41.com/wp-includes/js/dist/data.min.js?ver=90cebfec01d1a3f0368e:2:11372
at https://www.bunker41.com/wp-includes/js/dist/redux-routine.min.js?ver=d86e7e9f062d7582f76b:9:790
at https://www.bunker41.com/wp-includes/js/dist/data.min.js?ver=90cebfec01d1a3f0368e:2:10206
at Object.dispatch (https://www.bunker41.com/wp-includes/js/dist/data.min.js?ver=90cebfec01d1a3f0368e:2:11315)
at Object.initializeMetaBoxes (https://www.bunker41.com/wp-includes/js/dist/data.min.js?ver=90cebfec01d1a3f0368e:2:18700)
at https://www.bunker41.com/wp-includes/js/dist/edit-post.min.js?ver=d098b8ee5bdffa238c03:7:103729
at Ir (https://www.bunker41.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.2.0:10:73407)
at xl (https://www.bunker41.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.2.0:10:93227)
at https://www.bunker41.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.2.0:10:91969