atom8bit
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: media upload fails – “No image roots defined in config”I had this issue on a site I manage, as well.
Did you, or do you use a plugin that manipulates images, such as WebP Express? Check your htaccess file for rewrite rules involve jpg or png files. I used the above plugin, but it was disabled and the htaccess rules were left in place; trying to redirect images to a page that it couldn’t handle.
Forum: Installing WordPress
In reply to: WordPress and PHP 7.1You should probably open a new ticket about that as it’s off topic.
Forum: Installing WordPress
In reply to: WordPress and PHP 7.1That has nothing to do with anything and is completely off-topic.
FYI to others involved, I did upgrade to php7.1 after this thread and it went well, thank you.
Forum: Installing WordPress
In reply to: WordPress and PHP 7.1Thanks. And yeah, I won’t be running PHP that old…
Forum: Installing WordPress
In reply to: WordPress and PHP 7.1Thanks. I’ll test, then.
When it is official, is there usually an announcement? I do remember something for php 7.0.Forum: Fixing WordPress
In reply to: Changing permalinks for only certain categoriesHowever, this would be a good candidate for a custom post type. You could easily set your permalink structure to do what you want on that post type, and it would be unaffected by the main Permalinks setting.
OK, cool. That’s a start – how I can accomplish this?
Forum: Fixing WordPress
In reply to: Error updating pluginsAs a matter of being thorough; is there a way to see precisely where WordPress is trying to update to?
Forum: Fixing WordPress
In reply to: "If Category Then" on Single Post PageWell, that sort of worked… (isn’t that C syntax you’re using?)
I actually did this and it ended up working, so either way your suggestion did help:<div> <?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) && has_category( 6, $post )) : ?> <?php the_post_thumbnail('full') ?> <?php endif ?> </div>Thank you!
Forum: Themes and Templates
In reply to: Adding a second post feed to a pageJanet, I ‘d far prefer to not use a plugin, if possible