I started learning web development at a company, and was tasked with making a simple app in cookiecutter django, and then integrating django-cms into it.
I used django cookie-cutter to start a project, and then integrated django-cms into the project following this guide :
https://github.com/pydanny/cookiecutter-django
http://docs.django-cms.org/en/latest/how_to/install.html
After some initial trouble, I managed to get it going. After that, the next step was to add my "polls" app to the project and integrate Django CMS in it aswell.
For that I followed this tutorial :
I managed to get all the way to the end of the last link, and then on step 6, this happens.
Every time I try to delete a plugin from my site, or when I click create on the CMS toolbar i get this error (note: if I log in to /admin, I can create the page, but not via the cms menu bar on the actual website) :
The form could not be loaded. Please check that the server is running correctly.
The server is all good. No errors there.
And in the console :
Refused to display 'http://127.0.0.1:8000/cms_wizard/create/?page=5&language=en&edit&cms_path=/home/?edit&language=en&structure' in a frame because it set 'X-Frame-Options' to 'deny'.
bundle.toolbar.min.js:1 [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
I have been googling for the past two days, and I just cannot figure it out. Any help would be greatly appreciated !
I have pushed the files I changed on my github, if you need any other info please let me know, I will include it right away.
https://github.com/sandilukez/cms-django-cookie
I tried everything I could find online, with no luck !