On Tue, Sep 9, 2008 at 10:55 AM, QuanNH <[EMAIL PROTECTED]> wrote: > > hi, i'm new in pylons :D > my problem: > i create new project and start server: > > $ paster serve --reload development.ini > Starting subprocess with file monitor > Starting server in PID 4060. > serving on 0.0.0.0:5000 view at http://127.0.0.1:5000 > > but i can't access http://127.0.0.1:5000 --> Could not connect to > remote server :| > > ( i use Dreamlinux) > > please help me. Thanks!
You can use a command-line tool like wget or curl to double check: wget -O - http://127.0.0.1:5000 The "-O -" makes it output the file to standard output. If that doesn't work either, I don't know. The first thing to come to mind would be a problem with your computer's routing or firewall settings. Does running it without "--reload" help? -- Mike Orr <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" 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/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
