<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: HOWTO: Django on Windows</title>
	<atom:link href="http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/</link>
	<description>There should be one obvious way to do it.</description>
	<pubDate>Fri, 16 May 2008 06:29:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Mark</title>
		<link>http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-156435</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Mon, 28 Apr 2008 10:08:54 +0000</pubDate>
		<guid isPermaLink="false">http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-156435</guid>
		<description>Hi,
Very nice tutotial. But after all I have problems...

after things like: PythonPath "[r'c:\'] + sys.path" etc doesn't work for me.
Only way is PythonPath "['c:/'] + sys.path" or PythonPath "['c:\\\'] + sys.path". But this is not subject of my problem...

I'm using Winsdows Vista Bus., Apache2.2.8, python2.5.1, mod_python3.3.1.

Now it looks like working, buut: when I'm trying to connect my site i have error: ViewDoesNotExist or TemplateDoesNotExist (when trying to open simgle subpage) and this is untrue because with django server (run server) everything work fine. 

Sorry for me english. Please help</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Very nice tutotial. But after all I have problems&#8230;</p>
<p>after things like: PythonPath &#8220;[r'c:\'] + sys.path&#8221; etc doesn&#8217;t work for me.<br />
Only way is PythonPath &#8220;['c:/'] + sys.path&#8221; or PythonPath &#8220;['c:\\\'] + sys.path&#8221;. But this is not subject of my problem&#8230;</p>
<p>I&#8217;m using Winsdows Vista Bus., Apache2.2.8, python2.5.1, mod_python3.3.1.</p>
<p>Now it looks like working, buut: when I&#8217;m trying to connect my site i have error: ViewDoesNotExist or TemplateDoesNotExist (when trying to open simgle subpage) and this is untrue because with django server (run server) everything work fine. </p>
<p>Sorry for me english. Please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Django on Windows &#124; Tim Almond</title>
		<link>http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-148000</link>
		<dc:creator>Django on Windows &#124; Tim Almond</dc:creator>
		<pubDate>Sun, 23 Mar 2008 23:28:37 +0000</pubDate>
		<guid isPermaLink="false">http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-148000</guid>
		<description>[...] I&#8217;ve followed some of this, while I keep going through the jolly good Django Book. I&#8217;ve not tried the database stuff yet [...]</description>
		<content:encoded><![CDATA[<p>[...] I&#8217;ve followed some of this, while I keep going through the jolly good Django Book. I&#8217;ve not tried the database stuff yet [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-139101</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sat, 16 Feb 2008 00:20:09 +0000</pubDate>
		<guid isPermaLink="false">http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-139101</guid>
		<description>I should also have noted that I'm attempting this with MySQL instead of PostgreSQL.  I don't think that would make a difference for this part of the setup but maybe I'm wrong on that?</description>
		<content:encoded><![CDATA[<p>I should also have noted that I&#8217;m attempting this with MySQL instead of PostgreSQL.  I don&#8217;t think that would make a difference for this part of the setup but maybe I&#8217;m wrong on that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-139100</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sat, 16 Feb 2008 00:18:01 +0000</pubDate>
		<guid isPermaLink="false">http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-139100</guid>
		<description>First of all, hats off to those who created this tutorial and also to all of you who have contributed your efforts on this board.

I'm having the toughest time trying to get my httpd.conf file right.  Here's what I currently have at the end of the file:

  
	SetHandler python-program 
	PythonPath "['C:/django'] + sys.path" 
	PythonHandler django.core.handlers.modpython 
	SetEnv DJANGO_SETTINGS_MODULE testproject.settings 
	PythonDebug On 
 

  
	SetHandler None 
 

  
	SetHandler None 


When I go to restart Apache 2.2, I get an error message that says "The requested operation has failed."  When I remove all of the django config stuff, Apache starts just fine.

Thoughts?</description>
		<content:encoded><![CDATA[<p>First of all, hats off to those who created this tutorial and also to all of you who have contributed your efforts on this board.</p>
<p>I&#8217;m having the toughest time trying to get my httpd.conf file right.  Here&#8217;s what I currently have at the end of the file:</p>
<p>	SetHandler python-program<br />
	PythonPath &#8220;['C:/django'] + sys.path&#8221;<br />
	PythonHandler django.core.handlers.modpython<br />
	SetEnv DJANGO_SETTINGS_MODULE testproject.settings<br />
	PythonDebug On </p>
<p>	SetHandler None </p>
<p>	SetHandler None </p>
<p>When I go to restart Apache 2.2, I get an error message that says &#8220;The requested operation has failed.&#8221;  When I remove all of the django config stuff, Apache starts just fine.</p>
<p>Thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Billy</title>
		<link>http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-108481</link>
		<dc:creator>Billy</dc:creator>
		<pubDate>Mon, 22 Oct 2007 12:23:49 +0000</pubDate>
		<guid isPermaLink="false">http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-108481</guid>
		<description>Thanks for post. Got it going first thing.</description>
		<content:encoded><![CDATA[<p>Thanks for post. Got it going first thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Redza</title>
		<link>http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-96290</link>
		<dc:creator>Redza</dc:creator>
		<pubDate>Thu, 06 Sep 2007 03:55:52 +0000</pubDate>
		<guid isPermaLink="false">http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-96290</guid>
		<description>Hello everyone, 

I'm stuck at the step #8b where I couldn't execute this command:

C:\django_src&#62;python setup.py develop

I really hope someone might show me where did I go wrong...

Thanks

Regards,

Redza</description>
		<content:encoded><![CDATA[<p>Hello everyone, </p>
<p>I&#8217;m stuck at the step #8b where I couldn&#8217;t execute this command:</p>
<p>C:\django_src&gt;python setup.py develop</p>
<p>I really hope someone might show me where did I go wrong&#8230;</p>
<p>Thanks</p>
<p>Regards,</p>
<p>Redza</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Troy</title>
		<link>http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-96231</link>
		<dc:creator>Troy</dc:creator>
		<pubDate>Thu, 06 Sep 2007 01:33:06 +0000</pubDate>
		<guid isPermaLink="false">http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-96231</guid>
		<description>Just a note on the "ImportError: No module named django.core" error. I hit this tonight and figured it was a problem with my environment path. After several failed attempts to fix it I found that the problem was with my windows association for the .py extension. Since my last run of django-admin.py from the command line I had installed Python 2.5 but my django installation was under 2.4. Just a reminder to be careful with where things are running. 

I fixed the problem by right clicking on a .py file and changing the default program back to the 2.4 version of python.</description>
		<content:encoded><![CDATA[<p>Just a note on the &#8220;ImportError: No module named django.core&#8221; error. I hit this tonight and figured it was a problem with my environment path. After several failed attempts to fix it I found that the problem was with my windows association for the .py extension. Since my last run of django-admin.py from the command line I had installed Python 2.5 but my django installation was under 2.4. Just a reminder to be careful with where things are running. </p>
<p>I fixed the problem by right clicking on a .py file and changing the default program back to the 2.4 version of python.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to install and set up Django on Windows</title>
		<link>http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-95735</link>
		<dc:creator>How to install and set up Django on Windows</dc:creator>
		<pubDate>Tue, 04 Sep 2007 06:47:59 +0000</pubDate>
		<guid isPermaLink="false">http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-95735</guid>
		<description>[...] hate to say, there is 10 times better written article than this one on installing Django on Windows here. I will highly advice you to go there and see it. It is just that I was not aware of [...]</description>
		<content:encoded><![CDATA[<p>[...] hate to say, there is 10 times better written article than this one on installing Django on Windows here. I will highly advice you to go there and see it. It is just that I was not aware of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cesar</title>
		<link>http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-80613</link>
		<dc:creator>Cesar</dc:creator>
		<pubDate>Wed, 04 Jul 2007 10:50:50 +0000</pubDate>
		<guid isPermaLink="false">http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-80613</guid>
		<description>It took me a while to figure out how to run and install django. Nevertheless I got it to work. At the moment I am trying to build an app similar to a video tutorial that jacobb comes out on which is the photo app. I was able to get the first part running which is making a photo project and making a photos app. Successfully launched the admin interface and from the admin I built the photos app. Was able to get the uploading part but when I go back to the admin photo interface I have a problem I cant view the photo thumbnails in the admin site. I have three fields which are the image field, title, and the time. Under the image field all i see is text that points to the name of the img. Is there a tutorial for setting up an image database using django. Im looking to build a simple sort of like a news posting similar to Jacobbs app in a google video tutorial. Can somebody help me. Been looking for documentation all over but cant seem to get anything done...thanks</description>
		<content:encoded><![CDATA[<p>It took me a while to figure out how to run and install django. Nevertheless I got it to work. At the moment I am trying to build an app similar to a video tutorial that jacobb comes out on which is the photo app. I was able to get the first part running which is making a photo project and making a photos app. Successfully launched the admin interface and from the admin I built the photos app. Was able to get the uploading part but when I go back to the admin photo interface I have a problem I cant view the photo thumbnails in the admin site. I have three fields which are the image field, title, and the time. Under the image field all i see is text that points to the name of the img. Is there a tutorial for setting up an image database using django. Im looking to build a simple sort of like a news posting similar to Jacobbs app in a google video tutorial. Can somebody help me. Been looking for documentation all over but cant seem to get anything done&#8230;thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sita</title>
		<link>http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-74867</link>
		<dc:creator>Sita</dc:creator>
		<pubDate>Thu, 21 Jun 2007 21:22:49 +0000</pubDate>
		<guid isPermaLink="false">http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/#comment-74867</guid>
		<description>Hi
I am following your tutorial and am not successful

window Xp
apache 2.2 running 
mysql 4.1

downloaded and installed:

1.
C:\dev\python25   also path set to %python25%\Lib\site-packages
not sure if path set up was necessary

2. 
mod_python-3.3.1.win32-py2.5-Apache2.2 
installed mod-python at my C:\dev\python25  directory

apache config the http file with
LoadModule python_module modules/mod_python.so
apache would not start !

also, During installation of mod_python,
it couldn't recognise my apache server error:
Traceback (most recent call last):
  File "", line 115, in 
  File "C:\dev\Python25\lib\shutil.py", line 91, in copy2
    copyfile(src, dst)
  File "C:\dev\Python25\lib\shutil.py", line 47, in copyfile
    fdst = open(dst, 'wb')
IOError: [Errno 2] No such file or directory: 'C:/Program Files/Apache Software Foundation/Apache2.2/bin\\modules\\mod_python.so'
*** run_installscript: internal error 0xFFFFFFFF ***


3. 
svn-python-1.4.4.win32-py2.5
also installed at my C:\dev\python25 directory

4. 
subversion-1.4.4
also installed at my C:\dev\python25 directory

I can get to recognise the
SVN command at my dos window to install django,

What steps am I missing?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi<br />
I am following your tutorial and am not successful</p>
<p>window Xp<br />
apache 2.2 running<br />
mysql 4.1</p>
<p>downloaded and installed:</p>
<p>1.<br />
C:\dev\python25   also path set to %python25%\Lib\site-packages<br />
not sure if path set up was necessary</p>
<p>2.<br />
mod_python-3.3.1.win32-py2.5-Apache2.2<br />
installed mod-python at my C:\dev\python25  directory</p>
<p>apache config the http file with<br />
LoadModule python_module modules/mod_python.so<br />
apache would not start !</p>
<p>also, During installation of mod_python,<br />
it couldn&#8217;t recognise my apache server error:<br />
Traceback (most recent call last):<br />
  File &#8220;&#8221;, line 115, in<br />
  File &#8220;C:\dev\Python25\lib\shutil.py&#8221;, line 91, in copy2<br />
    copyfile(src, dst)<br />
  File &#8220;C:\dev\Python25\lib\shutil.py&#8221;, line 47, in copyfile<br />
    fdst = open(dst, &#8216;wb&#8217;)<br />
IOError: [Errno 2] No such file or directory: &#8216;C:/Program Files/Apache Software Foundation/Apache2.2/bin\\modules\\mod_python.so&#8217;<br />
*** run_installscript: internal error 0xFFFFFFFF ***</p>
<p>3.<br />
svn-python-1.4.4.win32-py2.5<br />
also installed at my C:\dev\python25 directory</p>
<p>4.<br />
subversion-1.4.4<br />
also installed at my C:\dev\python25 directory</p>
<p>I can get to recognise the<br />
SVN command at my dos window to install django,</p>
<p>What steps am I missing?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
