First time here? Check out the FAQ!
0

Where to set APP_URL?

Validation emails always point users to http://askbot.org/account/recover/blabla. I was looking for the setting that changes askbot.org to my domain, but no luck.

I tried:

  1. Going to the django admin and changing the site domain (no effect)

  2. Hunting down where this var is set in the source code. Clues lead to APP_URL, but adding that to my settings.py changes nothing either.

Any ideas?

parenthesis's avatar
15
parenthesis
asked 2011-11-07 15:55:03 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

It's in the live settings -> forum parameters and urls.

The default is askbot.org, which is not helpful, we'll need to change that.

Evgeny's avatar
13.2k
Evgeny
answered 2011-11-07 15:57:54 -0500
edit flag offensive 0 remove flag delete link

Comments

thanks Evgeny! for other readers: "live settings" is the settings accessible directly from the forum website (not the admin menu).

parenthesis's avatar parenthesis (2011-11-08 11:56:49 -0500) edit

Sorry, that's right I should have been more clear.

Evgeny's avatar Evgeny (2011-11-08 12:00:15 -0500) edit

'live_settings' mean mysite.com/settings ? I cant find 'forum parameters and urls' there. Hence can't find APP_URL. Any help?

str's avatar str (2012-07-31 22:17:50 -0500) edit

In new versions the url is: mysitte.com/settings/QA_SITE_SETTINGS/

RubenDjOn's avatar RubenDjOn (2014-04-18 05:26:23 -0500) edit

went to mysitte.com/settings/QA_SITE_SETTINGS/ keep getting Site matching query does not exist. as a warning and no base url being set, same for any settings on this page, what could be the problem? fixed by doing this: python manage.py shell from django.contrib.sites.models import Site new_site = Site.objects.create(domain='foo.com', name='foo.com') print new_site.id you should see a 1 in there after print, the same id from your settings file

madaerodog's avatar madaerodog (2015-01-06 11:32:18 -0500) edit
add a comment see more comments