rompstar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: my Media Library doesn’t load image thumbnailsthanks!!
Forum: Fixing WordPress
In reply to: my Media Library doesn’t load image thumbnailsso another question… I just posted a new Post and the same thing happened, I looked and that .htaccess file was recreated automatically with the wrong settings, so after I delete, something is making it again, what could that be ?
for now I set it to the right setting, so my image works, thanks!
Forum: Fixing WordPress
In reply to: my Media Library doesn’t load image thumbnailsI run my own server, I got tired of godaddy and wanted to get back hands on keyboard to learn.. ??
Forum: Fixing WordPress
In reply to: my Media Library doesn’t load image thumbnailsyay, it works!!! wooohoooo, this calls for a Beer!
Forum: Fixing WordPress
In reply to: my Media Library doesn’t load image thumbnailsI changed it to:
Order Allow,Deny
Deny from allit works now, did I do it right ?
Forum: Fixing WordPress
In reply to: my Media Library doesn’t load image thumbnailsI looked at the error log, and found this, looks like .htaccess issue…
[Fri Oct 11 13:55:53.208823 2024] [core:alert] [pid 68280] [client 87.129.186.254:60502] /srv/www/wordpress/wp-content/uploads/.htaccess: Require not allowed in context, referer: https://kodiakbrewing.com/using-ai-for-beer-recipe-exploration/
[Fri Oct 11 13:55:53.532546 2024] [core:alert] [pid 67953] [client 87.129.186.254:60503] /srv/www/wordpress/wp-content/uploads/.htaccess: Require not allowed in context, referer: https://kodiakbrewing.com/using-ai-for-beer-recipe-exploration/
[Fri Oct 11 13:55:53.537127 2024] [core:alert] [pid 67990] [client 87.129.186.254:60504] /srv/www/wordpress/wp-content/uploads/.htaccess: Require not allowed in context, referer: https://kodiakbrewing.com/using-ai-for-beer-recipe-exploration/
[Fri Oct 11 13:55:56.575385 2024] [core:alert] [pid 67992] [client 87.129.186.254:60506] /srv/www/wordpress/wp-content/uploads/.htaccess: Require not allowed in context, referer: https://kodiakbrewing.com/using-ai-for-beer-recipe-exploration/
[Fri Oct 11 13:59:00.648886 2024] [core:alert] [pid 67998] [client 54.37.23.159:43900] /srv/www/wordpress/wp-content/uploads/.htaccess: Require not allowed in context
[Fri Oct 11 14:02:51.883562 2024] [core:alert] [pid 67953] [client 192.0.114.116:46866] /srv/www/wordpress/wp-content/uploads/.htaccess: Require not allowed in context.htaccess file:
Require all denied
- This reply was modified 1 week, 3 days ago by rompstar.
Forum: Fixing WordPress
In reply to: my Media Library doesn’t load image thumbnailsturning OFF the “Image CDN” makes none of my images work now… so I put that back. and actually when I disable the “Jetpack Boost” plug-in all my images break, any idea ?
- This reply was modified 1 week, 3 days ago by rompstar.
Forum: Fixing WordPress
In reply to: my Media Library doesn’t load image thumbnailsI turned off “Image CDN”, still not working… where would image optimization be ?
Forum: Fixing WordPress
In reply to: my Media Library doesn’t load image thumbnailswhen I click on the image its self I get some error 500 and I see a reference to some wp web site, itsn’t wordpress at war with them, maybe it a plug-in causing that ?
I can delete that crap if so…
Forum: Fixing WordPress
In reply to: my Media Library doesn’t load image thumbnailsForum: Fixing WordPress
In reply to: my Media Library doesn’t load image thumbnailsya, I see smaller versions of the images, I believe those are the thumbnails
thanks I will check those things out / are you using ChatGTP or some other model to generate answers ? its ok if you are, because I am learning that too, recently installed the 7B llama3.1 model, but soon will try the 40B as soon as I get more ram..
??
btw, what does this do ? I have commented this out..
define('ALTERNATE_WP_CRON', true);
ok / I did these two and now I can access on the local host / not sure of which of these two worked… but I can access the site now normally on the server it’s self local host…
but if I try to access it on my other computer on my local LAN, it don’t work, if I type kodiakbrewing.com on my laptop which is connected to the same exact network at the server (internally), it don’t work… and if I do https://10.0.0.87 it sometimes works, but its very slow to load anything, takes forever and then I think, the REWRITE engine kicks in and tried to forward it all to kodiakbrewing.com, so nothing works / but at least on the local-server it works now, which is good, but not on my other laptop, not sure…
also, I am pretty sure my SSL is setup correctly, I did the CertBot and it tested all fine and it works wonders and I even have a Cron line added to renew it every 90 days for free – I wasn’t going to pay godaddy some ridiculous $150 a year for a SSL key, because they don’t want to support open standard as it is not profitable for them.
here is my wordpress.conf file / does it look good to you ?
<VirtualHost *:80>
ServerName kodiakbrewing.com
ServerAlias www.kodiakbrewing.com
DocumentRoot /srv/www/wordpress
<Directory /srv/www/wordpress>
Options FollowSymLinks
AllowOverride Limit Options FileInfo
DirectoryIndex index.php
Require all granted
</Directory>
<Directory /srv/www/wordpress/wp-content>
Options FollowSymLinks
Require all granted
</Directory>
RewriteEngine on
RewriteCond %{SERVER_NAME} =www.kodiakbrewing.com [OR]
RewriteCond %{SERVER_NAME} =kodiakbrewing.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>