<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Techy Things &#187; django</title>
	<atom:link href="https://tech.yipp.ca/category/django/feed/" rel="self" type="application/rss+xml" />
	<link>https://tech.yipp.ca</link>
	<description>Just another Yipp.ca Blogs site</description>
	<lastBuildDate>Thu, 01 May 2025 18:06:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>settings.DATABASES is improperly configured. Please supply the ENGINE value.</title>
		<link>https://tech.yipp.ca/django/settings-databases-improperly-configured-please-supply-engine-value/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=settings-databases-improperly-configured-please-supply-engine-value</link>
		<comments>https://tech.yipp.ca/django/settings-databases-improperly-configured-please-supply-engine-value/#comments</comments>
		<pubDate>Sat, 06 Sep 2014 22:08:18 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[django]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=992</guid>
		<description><![CDATA[<p>django.core.exceptions.ImproperlyConfigured Problem : File "c:\python27\lib\site-packages\django\db\backends\dummy\base.py", line 15, in complain raise ImproperlyConfigured("settings.DATABASES is improperly configured. " django.core.exceptions.ImproperlyConfigured: settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more details. Solution : Either&#46;&#46;&#46;</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/django/settings-databases-improperly-configured-please-supply-engine-value/">settings.DATABASES is improperly configured. Please supply the ENGINE value.</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h2>django.core.exceptions.ImproperlyConfigured</h2>
<p>Problem :</p>
<p>File "c:\python27\lib\site-packages\django\db\backends\dummy\base.py", line 15, in complain<br />
raise ImproperlyConfigured("settings.DATABASES is improperly configured. "<br />
django.core.exceptions.ImproperlyConfigured: settings.DATABASES is improperly configured. Please supply<br />
the ENGINE value. Check settings documentation for more details.</p>
<p>Solution :</p>
<p>Either your declaration inside settings.py for the DATABASE is not properly declared, or manage.py cannot find settings.py.</p>
<p>If you use the old format of DATABASE_ENGINE, you need to change this :</p>
<pre><code>DATABASE_ENGINE = 'django.db.backends.postgresql_psycopg2'      
DATABASE_NAME = 'mydatabase' 
DATABASE_USER = 'sarahr6'
DATABASE_PASSWORD = ''
DATABASE_HOST = ''
DATABASE_PORT = ''</code><code> </code></pre>
<p>to this :</p>
<pre><code>DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'mydatabase',
        'USER': 'sarahr6',
        'PASSWORD': '',
        'HOST': '',
        'PORT': ''
    }
}</code></pre>
<p>Note: After you do your fix, you might need to re-install the module with $&gt; sudo python setup.py install</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/django/settings-databases-improperly-configured-please-supply-engine-value/">settings.DATABASES is improperly configured. Please supply the ENGINE value.</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://tech.yipp.ca/django/settings-databases-improperly-configured-please-supply-engine-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix TypeError: __init__() got an unexpected keyword argument &#039;verify_exists&#039;</title>
		<link>https://tech.yipp.ca/django/fix-typeerror-__init__-got-unexpected-keyword-argument-verify_exists/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fix-typeerror-__init__-got-unexpected-keyword-argument-verify_exists</link>
		<comments>https://tech.yipp.ca/django/fix-typeerror-__init__-got-unexpected-keyword-argument-verify_exists/#comments</comments>
		<pubDate>Sat, 06 Sep 2014 21:27:03 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[django]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=985</guid>
		<description><![CDATA[<p>Problem: TypeError: __init__() got an unexpected keyword argument 'verify_exists' Solution : Change this: link = models.URLField(verify_exists=True, max_length=255, null=True, blank=True) to this: link = models.URLField(max_length=255, null=True, blank=True)</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/django/fix-typeerror-__init__-got-unexpected-keyword-argument-verify_exists/">How to fix TypeError: __init__() got an unexpected keyword argument 'verify_exists'</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h2>Problem:</h2>
<pre>TypeError: __init__() got an unexpected keyword argument 'verify_exists'</pre>
<h2>Solution :</h2>
<p>Change this:</p>
<p>link = models.URLField(verify_exists=True, max_length=255, null=True, blank=True)</p>
<p>to this:</p>
<p>link = models.URLField(max_length=255, null=True, blank=True)</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/django/fix-typeerror-__init__-got-unexpected-keyword-argument-verify_exists/">How to fix TypeError: __init__() got an unexpected keyword argument 'verify_exists'</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://tech.yipp.ca/django/fix-typeerror-__init__-got-unexpected-keyword-argument-verify_exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
