pyisapie

Error LNK1104: cannot open file 'python27.lib' PyISAPIe

∥☆過路亽.° 提交于 2020-01-04 03:19:14
问题 Am trying to compile a 64bit version of PyISAPIe using VS2010. Am not used to C/C++ programming but managed to configure some settings for VS2010. Everything went well until it got to the linking stage where it gave the above mentioned error. I checked all the Library path settings and they looked fine. Below is my command line for building the DLL: /OUT:"x64\Release\PyISAPIe.dll" /INCREMENTAL:NO /NOLOGO /LIBPATH:"C:\pyisapie\Python\x64\Python27\libs" /LIBPATH:"C:\pyisapie\Python\x64\Python26

Error “sqlserver_ado isn't an available database backend” (PyISAPIe on IIS)

廉价感情. 提交于 2019-12-10 18:57:48
问题 I'm having problems connecting my Django project to SQL Server 2008 when using IIS to serve Django and django-mssql to handle transactions. I am using IIS 7 and 64 bit ActivePython 2.7. Here is my list of installed packages: Django==1.4.5 distribute==0.6.19 django-mssql==1.2 pypm==1.3.4 pythonselect==1.3 pywin32==214 virtualenv==1.6.1 wsgiref==0.1.2 And here is the last bit of the stack trace: File "C:\Python27\lib\site-packages\django\db\__init__.py", line 40, in backend = load_backend

IIS Not Linking to Django with PyISAPIe

倖福魔咒の 提交于 2019-12-09 19:07:09
问题 I'm trying to run a site with Django on an IIS-based server. I followed all the instructions on the main site (http://code.djangoproject.com/wiki/DjangoOnWindowsWithIISAndSQLServer), and double checked it with a very good article (http://www.messwithsilverlight.com/2009/11/django-on-windows-server-2003-and-iis6/). I successfully got as far as setting up IIS to read .py files. Following the main instructions, I can get the server to render Info.py. However, I can't seem to get IIS and Django

Large POST data is corrupted when using Django/PyISAPIe/IIS

旧巷老猫 提交于 2019-12-08 03:04:20
问题 I'm running into a problem with large POST data (>16384 bytes) when using Django 1.2.3, PyISAPIe v1.1.0-rc4, and IIS 7.5. For example, when submitting approx. 60kB of form data using POST, the following happens: The first 16kB block of POST data are correct The next 16kB block is a repeat of the first block The next 16kB is another repeat of the first block The rest (<16kB) is correct again The interesting part is that when using content-type="multipart/form-data" , it works fine. Using this

Large POST data is corrupted when using Django/PyISAPIe/IIS

人盡茶涼 提交于 2019-12-06 11:13:57
I'm running into a problem with large POST data (>16384 bytes) when using Django 1.2.3, PyISAPIe v1.1.0-rc4, and IIS 7.5. For example, when submitting approx. 60kB of form data using POST, the following happens: The first 16kB block of POST data are correct The next 16kB block is a repeat of the first block The next 16kB is another repeat of the first block The rest (<16kB) is correct again The interesting part is that when using content-type="multipart/form-data" , it works fine. Using this information I tracked down the likely location of the bug to WSGIRequest._get_raw_post_data in django

IIS Not Linking to Django with PyISAPIe

一世执手 提交于 2019-12-04 11:51:46
I'm trying to run a site with Django on an IIS-based server. I followed all the instructions on the main site ( http://code.djangoproject.com/wiki/DjangoOnWindowsWithIISAndSQLServer ), and double checked it with a very good article ( http://www.messwithsilverlight.com/2009/11/django-on-windows-server-2003-and-iis6/ ). I successfully got as far as setting up IIS to read .py files. Following the main instructions, I can get the server to render Info.py. However, I can't seem to get IIS and Django to play nice. If, for instance, my Virtual directory is "abc", then if I go to "localhost/abc/", the