modules

  1. H

    how to from cli display ALL modules installed?

    hello, from cli/console/putty how we can get the FULL LIST of modules in LiteSpeedWebServer ??
  2. K

    problem importing python module into wsgi file

    This returns a 500 error (doesn't work): from pyadd.lib import addme def application(environ, start_response): q = environ['QUERY_STRING'] num1 = int(q[(q.index('=') + 1)]) num2 = int(q[(q.index('=',6) + 1)]) sum = str(addme(num1, num2)) start_response('200 OK'...
Top