First time here? Check out the FAQ!
3

sitemap.xml is using example.com
 

http://asksci.com/sitemap.xml

The sitemap.xml is using example.com instead of the real domain name.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
updated 14 years ago
DealsVistaCom's avatar
137
DealsVistaCom
asked 14 years ago

Comments

see more comments

1 Answer

5

This is set through the django admin interface at the moment, the url is /admin accessible only to the site administrators, go to that url, scroll to sites, click on "example.com" and change to "asksci.com".

Not so convenient, I've retagged your question as the "feature-request" and will remember to make this setting easier to find.

This is a screenshot of our "sites" admin page:

image description

And the site record itself:

image description

Also, it is important that SITE_ID setting value in your settings.py is the same as the ID of the intended record in the admin panel:

SITE_ID = 1 #site id is 1 in our case - it is part of url in the above image

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
updated 14 years ago, updated 13 years ago
link

Comments

Nice I just used that to!
xdot's avatar xdot (14 years ago)

I tried with your solution, i.e. changing 'example.com' to my domain name - but the /sitemap.xml still shows links with example.com. Pls help.

str's avatar str (13 years ago)
1

@str, just edited the post above, if this does not help you - try restarting the app - perhaps there is a caching issue. If you are running multiple processes for the web application - you will need to set up memcached or redis cache. Default setting is locmem://

Evgeny's avatar Evgeny (13 years ago)

Yes - restarting the app solved the problem. Many thanks.

str's avatar str (13 years ago)

Had the same issue, your answer helped :)

You should add it in docs I think.

Chankey Pathak's avatar Chankey Pathak (11 years ago)
see more comments