我正在使用Django 1.11來創建應用程序'cnfs',並且我正在使用MYSQL數據庫。我不斷地面臨這個問題,即我得到這樣的錯誤,當我鍵入下面的代碼: $python manage.py migrate
System check identified some issues: WARNINGS: ?: (mysql.W002) MySQL Strict Mode is not set fo
我目前有一個網站,但我想擴大到Django中使用的幾個網站。 目前,我必須在我的django_sites表中的兩個條目爲我的單點: 1 mysite.com My Site
2 www.mysite.com My Site
現在,我想有多個站點,爲每個子域的多個條目是不可行的了,因爲我想創造出許多與與網站相關聯的對象之間的許多關係。 如何在每個站點使用單個www和根域而不是兩個?
This answer顯示的就是我要找的逆,因爲它允許一個Site有許多Asset對象: # Note: This is not my code. This is opposite of what I want.
# I want the ForeignKey on the Site object.
from django.contrib.sites.models import Site