Hi I am getting following following message on trying to load my web page deployed through apache
"Truncated or oversized response headers received from daemon process"
and in apache log
[info] mod_wsgi (pid=16368): Initializing Python.
[info] mod_wsgi (pid=16368): Process 'esapp' has died, deregister and restart it.
[info] mod_wsgi (pid=16368): Process 'esapp' terminated by signal 1
[info] mod_wsgi (pid=16368): Process 'esapp' has been deregistered and will no longer be monitored.
I am using ctypes of module to load cpp library in setting file of django project like this
VELEC_API_LIB = ctypes.cdll.LoadLibrary('/var/www/eswebsite/libvelec.so')
If I stop loading my cpp .so library and restart apache it runs fine and I am able to load web pages. But when I try to load my .so library the above mentioned error comes every time.
I want to load my .so library as it is part of my project on c-side.
any help will be appreciated??