First time here? Check out the FAQ!

madaerodog's profile - activity

2016-02-16 19:38:18 -0500 received badge Famous Question (source)
2016-01-08 05:01:41 -0500 received badge Teacher ( source )
2016-01-08 05:01:41 -0500 received badge Necromancer ( source )
2015-03-03 04:20:23 -0500 asked a question moderation-queue link leads to 404

While being logged in as admin moderation link leads to a 404, is this the correct path /moderation-queue/ ? Has someone encountered/solved this?

Thank you.

2015-01-14 07:00:31 -0500 received badge Enthusiast
2015-01-07 10:14:25 -0500 answered a question How do I make "ground" (the footer) always on the bottom?

Place this in the extra.css (found in askbot/media/style) as a quick, clean workaround to have a nice sticky footer:

html {
    position: relative;
    min-height: 100%;
}
body {
    margin: 0 0 100px; /* bottom = footer height */
}
#ground {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100px;
    width: 100%;
}
2015-01-06 11:32:18 -0500 commented answer Where to set APP_URL?

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