I had read everything about this topic without results. This what i did:
I think that the problem could be that the django-cms is not inside the newsite project folder. What should i do next? where im supossed to put the django-cms files? Best regards to all of you, Iván asked 16 Jul '13, 08:13 divxpr |
The error seems to suggest it is missing a plugin or module which a plugin requires. If you submit a support ticket we can check your account in real-time and troubleshoot further. answered 16 Jul '13, 19:55 johns I dont think is that, those are the modules i added in the INSTALLED APPS section at the settings.py file:
The problem must be that the django-cms files aren't installing at the application folder (html/myusername/webapps/django/lib/python2.7/) that is the reason why they are missing.
(17 Jul '13, 05:09)
divxpr
Please open a ticket at our support site, and we'll help you find the cause of the issue.
(17 Jul '13, 08:09)
timg ♦♦
|
I would recommend installing the django-cms files directly into your application using pip. Once you have installed, check that they are on your path using:
If Django-CMS imports without error, then try to run "python2.7 manage.py syncdb" again.
Also check our this related post about installing Django-CMS.
I tried what you said without success, i did this:
I Run
pip-2.7 install --install-option="--install-scripts=$PWD/bin" --install-option=" --install-lib=$PWD/lib" django-cms
This are my results:
Requirement already satisfied (use --upgrade to upgrade): django-cms in /home/myusername/lib/python2.7
Requirement already satisfied (use --upgrade to upgrade): Django>=1.4,<1.6 in /home/myusername/lib/python2.7 (from django-cms)
Requirement already satisfied (use --upgrade to upgrade): django-classy-tags>=0.3.4.1 in /home/myusername/lib/python2.7 (from django-cms)
Requirement already satisfied (use --upgrade to upgrade): south>=0.7.2 in /home/myusername/lib/python2.7 (from django-cms)
Requirement already satisfied (use --upgrade to upgrade): html5lib in /home/myusername/lib/python2.7 (from django-cms)
Requirement already satisfied (use --upgrade to upgrade): django-mptt>=0.5.1,<0.5.3 in /home/myusername/lib/python2.7 (from django-cms)
Requirement already satisfied (use --upgrade to upgrade): django-sekizai>=0.7 in /home/myusername/lib/python2.7 (from django-cms)
Requirement already satisfied (use --upgrade to upgrade): six in /home/myusername/lib/python2.7 (from html5lib->django-cms)
Cleaning up...
I noticed it installed at the default installation directory (/home/myusername/lib/python2.7) but not in the application directory (/home/myusername/webapps/django/lib/python2.7)
I run python2.7 manage.py shell, this was the result:
ImportError: No module named flashcms.plugins.googlemapcms.plugins.linkcms.plugins.textcms.plugins.twitterfilercmsplugin_filer_filecmsplugin_filer_foldercmsplugin_filer_imagecmsplugin_filer_teasercmsplugin_filer_videoreversion
Im not sure how to install the pip modules on the application directory.