Install advice?

Benjamin Gilbert bgilbert at cs.cmu.edu
Mon Jan 13 16:51:47 EST 2014


On 01/13/2014 03:43 PM, Mark Ungrin wrote:
> when I go to /slidetest/deepzoom.wsgi, (directly or via an alias) I get
> "Internal Server Error..." and the generic "contact the server
> administrator" message
>
> the code is this file is:
>>
>> import os, sys
>> from deepzoom_server import app as application
>> application.config.update({
>>     'DEEPZOOM_SLIDE': '/var/www/slidetest/openslide_testdata/CMU-1.svs',
>> })
>>
>>
> ...and now I'm kind of stuck. Any suggestions on what to try next?

If the server error is coming from Apache, there should be more 
information in the Apache error log.  If it's coming from deepzoom.wsgi, 
you can enable debugging:

application.config.update({
     'DEEPZOOM_SLIDE': '/var/www/slidetest/openslide_testdata/CMU-1.svs',
     'DEBUG': True,
})

which should replace the generic "server error" page with a debug traceback.

--Benjamin Gilbert



More information about the openslide-users mailing list