1

I found the problem when I run django from apache. When I run my program in debug mode ( manage.py runserver in cmd ) , everything is work. But when I run with apache, It show error:

ImportError at /systeminformation/ DLL load failed:
The specified module could not be found.

The error is occur when I import win32file. I use django 1.5.2 with apache 2.2 and run with mod_wsgi.

Anyone can solve this problem?

thank you very much

Ashwini Chaudhary
  • 244,495
  • 58
  • 464
  • 504
Kumkao
  • 37
  • 1
  • 2
  • couple of document recommande to use linux for apache instead of windows. the thing you can do is to reuse the windows installation CD if you can find the DLL and copy it to the windows install folder. – drabo2005 Sep 14 '13 at 08:09

1 Answers1

0

It looks like you are probably missing some DLL. Run win32file through dependency walker, and see what's missing. Kudos to Ignacio for this app link.

Community
  • 1
  • 1
Forrest
  • 1,370
  • 9
  • 20