I\'ve got a Wordpress site on our home intranet that has run into trouble now that the IP address has changed - The index page loads, but not the CSS and I can\'t log in to
Be careful for the link: https or http !!
in the command line:
mysql -u root -p
in the SQL, set new IP for xxxx
mysql> use wordpress; mysql> select * from wp_options where option_id=1; mysql> update wp_options set option_value="http://xxxx" where option_id=1; exit
mysql> use wordpress;
mysql> select * from wp_options where option_id=1;
mysql> update wp_options set option_value="http://xxxx" where option_id=1; exit
Restart server