Jose Castaneda
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Manual Install created admin accountSounds good. Yeah, really odd it was populated and really crossing my fingers it was just that one time for you.
Hi there,
Have you tried deactivating all plugins to see if that resolves the issue? The one thing I recommend would be to check the error logs. If you don’t know where those reside reach out to your hosting company and they should be able to point you in the right direction.
Forum: Installing WordPress
In reply to: Manual Install created admin accountSomething like this: https://docs.platform.sh/guides/wordpress/composer/migrate.html
It’s a decent way of automating things too like plugin updates and sometimes core updates too.
Forum: Installing WordPress
In reply to: Manual Install created admin accountOh, that is super weird.
I’ve seen GoDaddy do something similar, and even on my Dreamhost when I went to create a random one it had some pre-populated things but never a user like that. I’ve only ever seen that when using a Composer build.
Forum: Installing WordPress
In reply to: Manual Install created admin accountHi there,
Those fields are not populated. It might be a hosting level type of thing though so I’d reach out to them to get some clarity as well.
Forum: Fixing WordPress
In reply to: Can not upload ThemeHi there,
Have you tried de-activating all plugins to see if that resolves the issue?
One way could be by using an SFTP program like FileZilla or CyberDuck to upload the theme. If you don’t know the connection details, you can reach out to your hosting company about that and they can point you in the right direction for that.
Forum: Fixing WordPress
In reply to: Parse error: syntax errorHi there,
What version of WordPress is the site currently on? The most recent version’s version of that file does not have that as you can see from this file: https://github.com/WordPress/WordPress/blob/6.2/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php
I highly recommend you try to re-install core using an SFTP program like FileZilla or CyberDuck. You can follow a guide like: https://help.dreamhost.com/hc/en-us/articles/360028822932-Reinstall-WordPress-core-files-in-an-existing-site#option2
Let us know if you have any other questions
Hey there,
Yes, I don’t see why that wouldn’t work. If you really wanted to be super cautious about it just be sure to make a backup before doing all of that.
Forum: Fixing WordPress
In reply to: Cannot Install UpdatesYay, glad you were able to get things updated.
Yeah, I definitely feel that pain of having to do those one at a time. It hurts. Deep. ??
Forum: Developing with WordPress
In reply to: Redirect after login
Didn’t copy/paste it all as it was an example.add_filter( 'login_redirect', 'ur_redirect_after_login', 10, 3 );
Forum: Fixing WordPress
In reply to: Captcha Image not showed, Can’t Access /wp-admin LoginHi,
If those images aren’t showing, I suggest reaching out to the plugin’s developer about that. Odds are they might know more about what could be happening or if any others have had a similar experience with that.
Forum: Developing with WordPress
In reply to: Redirect after loginI have a weird feeling that might not be the correct filter so it’s not redirecting. I think the one you want is the
login_redirect
filter instead. So it would beadd_filter( 'login_redirect', 'ur_redirect_after_login', );
This is a good example of that as well https://developer.www.ads-software.com/reference/hooks/login_redirect/#comment-2074
Forum: Developing with WordPress
In reply to: Redirect after loginHi there,
From a quick look at the code you have provided it could the character you might be using for the quotes. What are you using in order to edit the files?
Forum: Fixing WordPress
In reply to: Cannot Install UpdatesHi there,
That
.maintenance
file can be typically found in the site’s root folder. Meaning it can usually be found in the same folder thewp-config.php
resides in. If you are using FileZilla, not sure if you have the “Force show hidden files” checked off but that is something I sometimes have to do.Are you running all plugin updates at once? If that’s the case that might be part of the reason as well. I’ve seen instances where doing a lot of updates can have it hang like that so I would do one at a time. Very time consuming but at least it got them updated.
Let us know if you have any other questions.
Forum: Fixing WordPress
In reply to: get_post_status() return the wrong statusNo worries, life happens ??
Glad to see you were able to track and narrow it down though.