Paul Phillips
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] After the 8.5.0 update, I encountered an errori just commented out line 23 in
/wp-content/plugins/woocommerce/src/Internal/Admin/Marketplace.php
Working again
Forum: Plugins
In reply to: [W3 Total Cache] Brotli compression on PLESK@donlee101 If you enable Gzip via Plesk Nginx settings for the domain then it will use Brotli when it’s supported and fallback to Gzip.
Cool, thanks for the recommendation!
Forum: Plugins
In reply to: [WP fail2ban - Advanced Security] log fileIn CentOS
auth.log
issecure
Use this
logpath = /var/log/secure
Change line 34 of the plugin file to
defined('WP_FAIL2BAN_LOG') ? WP_FAIL2BAN_LOG : LOG_AUTHPRIV);
Forum: Fixing WordPress
In reply to: Pratice or Private BlogI use the GD Press Tools plugin. There’s an option in that to only allow access to the blog once you’ve logged in.
There’s probably other plugins that do the same job too.
Forum: Fixing WordPress
In reply to: Minor problem with sidebar, now Fatal ErrorThat second post isn’t the file causing to error, the clues in the error.
Look for the file that’s calling the art_sidebar function.
Forum: Fixing WordPress
In reply to: photo upload problemsAre you trying to upload a particularly big image? Ie. bigger than you’d normally upload.
Forum: Fixing WordPress
In reply to: #! In linksMaybe try flushing the rewrite records? I can’t remember how to do it manually I’m afraid but it’ll be in in the Codex. I use GD Press Tools plugin.
Forum: Fixing WordPress
In reply to: Can't upload media above 100kbSecond thoughts, if your host has enabled display of the php.ini settings in cPanel you should be able to find them there too!
Forum: Fixing WordPress
In reply to: Can't upload media above 100kbJust create a new file called test.php and stick this in it.
<?php // Shows Max upload size $max_upload = (int)(ini_get('upload_max_filesize')); $max_post = (int)(ini_get('post_max_size')); $memory_limit = (int)(ini_get('memory_limit')); $upload_mb = min($max_upload, $max_post, $memory_limit); echo 'Limit set at: '.$upload_mb;
Then upload it to your host and navigate to it in your browser.
Forum: Fixing WordPress
In reply to: Can't upload media above 100kbHmm, 100kb is very small for a max upload limit. Could you try verifying it?
$max_upload = (int)(ini_get('upload_max_filesize')); $max_post = (int)(ini_get('post_max_size')); $memory_limit = (int)(ini_get('memory_limit')); $upload_mb = min($max_upload, $max_post, $memory_limit); echo 'Limit set at: '.$upload_mb;
Forum: Fixing WordPress
In reply to: Update notifications not working and version missingIt’ll most likely be one of your plugins. One of my sites has a modified version of WP e-Commerce running and I have the same issue, it didn’t do it prior to WordPress 3.3.
As soon as I disable it all the notifications show.
Dashboard > Updates still works though, I can’t remember what the multisite equivalent is.
Any file uploaded to the WordPress install will be in /wp-content/uploads
Pardon me if I’m not correct in guessing your level of understanding. But all the pages that are shown on the WordPress site are held in the database, they are not stored as files on the server. Essentially, you’re loading index.php with every page load and that’s figuring out what content to pull from the database and display from the full URL given to it.
I think this plugin might be what you’re looking for – https://www.ads-software.com/extend/plugins/static-html-output-plugin/
Forum: Fixing WordPress
In reply to: Maximum image upload size 2MB?Hopefully, you sorted that but if not that’s PHP running out of RAM while processing the image. Nothing to do with max upload size. Set this in php.ini
memory_limit = 128M
Forum: Plugins
In reply to: [WP-PostViews] Add the thumbnail ?This has nothing to do with WP-PostViews.
I suggest you search in the codex for this sort of question.
https://codex.www.ads-software.com/Function_Reference/get_the_post_thumbnail