Hi Jessica, you'll find below the contents of the files you ask plus the Apache config.
Here's an example of an address ScirbeUI is trying to access that doesn't exist: http://localhost/static/css/reset.css I believe it should be: http://localhost/ScribeUI/static/css/reset.css But I can't see where this particular path could be configured. Thanks for helping, Luís #------------------------------------------------------------------------------ # config.py #Replace 0.0.0.0 with your server's ip or hostname #Examples: "127.0.0.1", "my.host.com" ip = "0.0.0.0" #------------------------------------------------------------------------------ # runserver.wsgi from runserver.py import app as application import sys #Replace <scribeui_path> with the path to the root of your scribeui installation #Example: /opt/ScribeUI/application/runserver.py sys.path.insert(0,'/opt/ScribeUI/application/runserver.py') WSGIScriptAlias /ScribeUI /opt/ScribeUI/application/runserver.py #------------------------------------------------------------------------------ # ScribeUI.conf #ScribeUI WSGIScriptAlias /ScribeUI /opt/ScribeUI/application/runserver.py AddType text/html .py <Directory /opt/ScribeUI/application/templates> Order deny,allow Allow from all </Directory> Alias /ScribeUI/download/ "/opt/ScribeUI/application/www/" <Directory "/opt/ScribeUI/application/www/"> AllowOverride None Options Indexes FollowSymLinks Multiviews Order allow,deny Allow from all </Directory> -- View this message in context: http://osgeo-org.1560.x6.nabble.com/ScribeUI-Possible-segmentation-fault-on-Ubuntu-12-04-tp5072423p5073155.html Sent from the Mapserver - User mailing list archive at Nabble.com. _______________________________________________ mapserver-users mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/mapserver-users
