Hi, I am new to django-cms, I followed docs and it seems to be working fine (creating pages etc) but I went to do an app hook and that part along with redirect and soft root are missing from the advanced area. I have rebuilt environment a few times and it is still not there. Can anyone help me figure out why this is happening, I am using django 1.4.2 and django-cms 2.3.5. My installed apps look as follows:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'registration_defaults',
'django.contrib.admin',
'django.contrib.admindocs',
'django.contrib.sitemaps',
'cms',
'mptt',
'menus',
'south',
'sekizai',
'cms.plugins.file',
'cms.plugins.flash',
'cms.plugins.googlemap',
'cms.plugins.link',
'cms.plugins.picture',
'cms.plugins.snippet',
'cms.plugins.teaser',
'cms.plugins.text',
'cms.plugins.video',
'cms.plugins.twitter',
'cms_redirects',
'reversion',
'social_auth',
'analytical',
'registration',
)
Thanks in advance for any help