<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <font size="-1">in the apache error.log I see:<br>
      <br>
      <blockquote type="cite">[Mon Jan 13 15:34:31.730505 2014] [:error]
        [pid 16019] [remote 136.159.176.124:51402] mod_wsgi (pid=16019):
        Target WSGI script '/var/www/slidetest/deepzoom.wsgi' cannot be
        loaded as Python module.<br>
        [Mon Jan 13 15:34:31.730560 2014] [:error] [pid 16019] [remote
        136.159.176.124:51402] mod_wsgi (pid=16019): Exception occurred
        processing WSGI script '/var/www/slidetest/deepzoom.wsgi'.<br>
        [Mon Jan 13 15:34:31.730608 2014] [:error] [pid 16019] [remote
        136.159.176.124:51402] Traceback (most recent call last):<br>
        [Mon Jan 13 15:34:31.730653 2014] [:error] [pid 16019] [remote
        136.159.176.124:51402]&nbsp;&nbsp; File
        "/var/www/slidetest/deepzoom.wsgi", line 2, in &lt;module&gt;<br>
        [Mon Jan 13 15:34:31.730716 2014] [:error] [pid 16019] [remote
        136.159.176.124:51402]&nbsp;&nbsp;&nbsp;&nbsp; from deepzoom_server import app as
        application<br>
        [Mon Jan 13 15:34:31.730758 2014] [:error] [pid 16019] [remote
        136.159.176.124:51402] ImportError: No module named
        deepzoom_server<br>
      </blockquote>
      <br>
      I assume I need to specify a path somewhere?<br>
      <br>
      thanks<br>
      <br>
      Mark<br>
      <br>
    </font>
    <div class="moz-cite-prefix">On 1/13/2014 2:51 PM, Benjamin Gilbert
      wrote:<br>
    </div>
    <blockquote cite="mid:52D45FF3.6050009@cs.cmu.edu" type="cite">
      <pre wrap="">On 01/13/2014 03:43 PM, Mark Ungrin wrote:
</pre>
      <blockquote type="cite">
        <pre wrap="">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:
</pre>
        <blockquote type="cite">
          <pre wrap="">
import os, sys
from deepzoom_server import app as application
application.config.update({
    'DEEPZOOM_SLIDE': '/var/www/slidetest/openslide_testdata/CMU-1.svs',
})


</pre>
        </blockquote>
        <pre wrap="">...and now I'm kind of stuck. Any suggestions on what to try next?
</pre>
      </blockquote>
      <pre wrap="">
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

_______________________________________________
openslide-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:openslide-users@lists.andrew.cmu.edu">openslide-users@lists.andrew.cmu.edu</a>
<a class="moz-txt-link-freetext" href="https://lists.andrew.cmu.edu/mailman/listinfo/openslide-users">https://lists.andrew.cmu.edu/mailman/listinfo/openslide-users</a>

</pre>
    </blockquote>
    <br>
    <pre class="moz-signature" cols="72">-- 
Dr. Mark Ungrin, Ph.D.
Assistant Professor
Department of Comparative Biology &amp; Experimental Medicine
HMRB 320, 3330 Hospital Drive NW
Calgary, AB  T2N 4N1
University of Calgary, Faculty of Veterinary Medicine

Email: <a class="moz-txt-link-abbreviated" href="mailto:mark.ungrin@ucalgary.ca">mark.ungrin@ucalgary.ca</a>
<a class="moz-txt-link-freetext" href="http://www.ucalgary.ca/ungrinlab">http://www.ucalgary.ca/ungrinlab</a>

office: 403.210.6203
cell: 403.561.6817
lab: 403.210.6545
fax:    403.210.8821

The information contained in this e-mail is only for the use of the individual or entity to whom it is intended. Its contents (including any attachments) are confidential and may contain privileged information. If you are not an intended recipient you must not use, disclose, disseminate, copy or print its contents. If you receive this e-mail in error, please notify the sender by e-mail and delete and destroy the message and all copies.</pre>
  </body>
</html>