On Fri, Jun 25, 2010 at 09:40, ilovesss2004 <[email protected]> wrote: > Hi, > Here is code of my routes.py > > routes_in = (('/', '/myapp/default/index'), > ) > > routes_out = (('/myapp/default/index', '/'), > ) > > When I enter 127.0.0.1:8000 in browser, myapp do show but the ajax > function does't work. I must enter 127.0.0.1:8000/myapp/default/index > in browser then the ajax function will act.
Probably you are not calling the correct URLs for JavaScript/CSS/whatever. Try to figure out what URLs your AJAX functions are calling (use print and you'll get it on the shell, for example) to investigate. -- Álvaro Justen - Turicas http://blog.justen.eng.br/ 21 9898-0141

