Anonymous
Unregistered
Posted 1 year ago #
I was moving wordpress database to a local server, where port 80 is used by IIS. I have changed siteurl and home fields with phpMyAdmin, using localhost:81 localy everything works fine. However, at blog url http://84.255.241.71:81/wordpress/ no graphics is shown. What seems to be the problem?
Your links to your CSS and other relevant files still show as pointing to localhost:
<link rel="stylesheet" href="http://localhost:81/wordpress/wp-content/themes/default/style.css" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="Silent installers, portables, software RSS Feed" href="http://84.255.241.71:81/wordpress/feed/" />
<link rel="pingback" href="http://localhost:81/wordpress/xmlrpc.php" />
In order for things to show up correctly, you'll need to reference files on the server rather than your local dev machine.
Your actual CSS file (for the default theme) is at:
http://84.255.241.71:81/wordpress/wp-content/themes/default/style.css
Anonymous
Unregistered
Posted 1 year ago #
Many thanks, already much better;)