OscarGuy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to Update WordPress/PluginsAlso of note, I have other installation of wordpress on the same server and other servers and those appear to be working just fine.
Forum: Fixing WordPress
In reply to: No Auto-Update OptionI worked with my host and we got the login issues fixed, and I manually uploaded everything for the new edition, so I don’t think I’ll know until the next update if I have the ability to update again.
Forum: Fixing WordPress
In reply to: No Auto-Update OptionI don’t know how to do it without having access to my login. I found a .php file that had a weird name and it seemed to have a function in it to change my password and I’m wondering if that’s what’s happening. I’m going to re-delete everything in there and then try uploading all those files again (it’s hard to do because for some reason my FTP doesn’t work and that’s a problem with my host, not with this). I just have to use the control panel file manager to manually upload them. The issue is you can’t upload entire file structures that way.
Forum: Fixing WordPress
In reply to: No Auto-Update OptionI use Updraft and it has a save from the 18th. Would that have the ability to restore what needs to be restored?
Forum: Fixing WordPress
In reply to: No Auto-Update OptionI tried that and I’m still not able to stay logged in. I will initially get to the dashboard, go elsewhere and it will ask me to sign in again. I put in my username and password and it then keeps asking for it and won’t log me in anymore.
Forum: Fixing WordPress
In reply to: No Auto-Update OptionI tried, but now I can’t seem to stay logged in. I’ll log in, it goes to my dashboard, then I try to go anywhere else, it pops up the password page again and then it won’t let me back in.
Forum: Fixing WordPress
In reply to: No Auto-Update OptionIs there a way to re-install WordPress on the back end rather than through WordPress itself?
Forum: Fixing WordPress
In reply to: No Auto-Update OptionI went into my files on the site and deleted all the unused plugins manually. I then went into my site’s Plugins and deactivated everything. None of that ended up changing my inability to update, so I’m not sure what else to do.
Forum: Fixing WordPress
In reply to: No Auto-Update OptionI had BBPress installed, but they never added support for the import of the program I’m currently using, so I deactivated it. I also used Ultimate Member, but their usage instructions are garbage, so I could never get it to work right. I also deactivated it. That said, I had both installed during prior upgrade windows and was able to upgrade the edition then.
That said, I went in to delete any of the deactivated plugins that I haven’t used in awhile and I have no ability to delete them, so my admin abilities are affected.
Forum: Fixing WordPress
In reply to: No Auto-Update OptionI show Administrator, Keymaster.
Forum: Fixing WordPress
In reply to: No Auto-Update OptionI logged out and re-logged into it, so I’m pretty sure.
Forum: Fixing WordPress
In reply to: No Auto-Update OptionIn the wp_usermeta table, I went down to the wp_capabilities and there were four rows, the first one had a user_id that matched my id, so I assume that’s the right line. This is what it shows as the value:
a:1:{s:13:”administrator”;b:1;}
That looks like what you wrote, so I assume that’s correct.
Forum: Fixing WordPress
In reply to: No Auto-Update OptionI am on 5.6. It says is “WordPress 5.6.1 is available! Please notify the site administrator.” It won’t let me update to it. I was meaning that until that version, I always got an option to go and update to the latest version. It won’t let me update to 5.6.1 as there’s no update page to go to. I am logged in via the “admin” account, so I’m not sure why it says that.
Forum: Fixing WordPress
In reply to: Problem Getting Child Theme Functions.php RightI apologize for not responding sooner. I have consistently not found any time to work on this. That seems to have fixed the problem. Thank you.
Now I just have to figure out how to get some of other changes I’ve made into my style sheet because apparently, I’ve made some others and I’m not sure where the differences are…that, though, might just take a line-by-line comparison of the base style sheet and the one I later created…
Forum: Fixing WordPress
In reply to: Problem Getting Child Theme Functions.php RightHere’s how it currently looks (I may have modified it at some point) and I have changed it to show frontier-style where indicated and it still does not appear to work.
<?php add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); function my_theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); function my_theme_enqueue_styles() { $parent_style = 'frontier-style'; wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'frontier-child', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), wp_get_theme()->get('Version') ); } add_filter( 'the_content_more_link', 'modify_read_more_link' ); function modify_read_more_link() { return 'Click here to continue reading this article'; } ?>