Hi Luis, You are right that the url should be localhost/ScribeUI/static. In your config.py file, this ip = "0.0.0.0" should be the domain you access the app with, in your case, it should be ip = "localhost" After changing this the easiest way to see your changes instantly will be to restart apache, because otherwise mod_wsgi will not necessarily acknowledge your changes immediately. Thank you, Jessica
On Mon, Aug 19, 2013 at 9:52 AM, Luís de Sousa <[email protected]> wrote: > 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 _______________________________________________ mapserver-users mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/mapserver-users
