> 127.0.0.1:4931 - - [02/Mar/2008 09:32:19] "HTTP/1.1 GET /gwt" - > 200 OK > 127.0.0.1:4931 - - [02/Mar/2008 09:32:19] "HTTP/1.1 GET / > appcss.css" - 404 Not Found > 127.0.0.1:4931 - - [02/Mar/2008 09:32:19] "HTTP/1.1 GET / > com.mycompany.project.app.nocache.js" - 404 Not Found > > So it seams that the CSS and JS files are not found ( its the reason > for not working) > How can i fix this ?
where is this location: "com.mycompany.project.app.nocache.js"? if you want the static content (js, css, imges, etc.) to be served by webpy these files should all be located under /static at the root of your webpy application (where your code.py located). you can however use external resources e.g. <script src="http://code.jquery.com/jquery-latest.pack.js"></ script> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
