Home > Net >  Wordpress wp url changed and cannot be fixed
Wordpress wp url changed and cannot be fixed

Time:10-06

I really need help, my stupid brain told me to change the website url to my name (and wordpress is installed in local on my pc) but now wamp don't found it bcs the url is NOAH instead of my local pc name wich is PC-ARNAUD.

I rename it here:

Where i changed it

And now whenever i want to get back to wordpress i got this error: enter image description here

And the link auo change from PC-ARNAUD to NOAH so it don't found anything since wamp name is LOCALHOST or PC name wich is pc-arnaud and not Noah: enter image description here

Do you got any idea of where i can change it back to pc-arnaud please?

CodePudding user response:

I would recommend trying to change this via the method Ektorr offered if not if this is hosted locally this means you have the database locally as well if you locate a file called wp_options this will have these URL's in it that you can change back this should fix the issue for you to change the urls to what you want when you get to that part.

CodePudding user response:

You can see the diferents solutions in this link:

https://wordpress.org/support/article/changing-the-site-url/

Try adding this lines in your wp-config.php

define( 'WP_HOME', 'http://pc-arnaud/vts' );
define( 'WP_SITEURL', 'http://pc-arnaud/vts' );
  • Related