Apache / Django安装:RuntimeError:模型类django.contrib.contenttypes.models.ContentType未声明显式

时间:2016-10-17 17:16:36

标签: python django apache django-models

我在centos7上使用Django 1.9和python 2.7

仅在尝试将Apache与Django一起使用时,我才会收到以下错误。

jQuery.fn.ShowResults = function(s){

$ajax({
    type: 'POST',
    url: "total_groups.php?s="+selector,
    data: $(this).serialize(),
  success: function(data) {

                var total_groups=data; //I obtain total_groups by ajax now.

                              $("#results").load();

                                    $(window).scroll(function() { 

                                                   /*append data code*/

                                                             }//end load scroll
                          }//end success
      });//end ajax
  }//end function

我没有使用Django Web服务器获取错误,我的应用程序在Django Web服务器下工作正常,但我已经读过不使用Django Web服务器而是使用Apache。

我遇到了多个问题,试图让apache与django一起工作,并找到了所有上述问题的解决方案,但无法解决这个问题。

以下是我按此顺序在列表中安装了“RuntimeError: Model class django.contrib.contenttypes.models.ContentType doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS. ”的应用:

django.contrib.contenttypes

...谢谢

0 个答案:

没有答案