Is Django more popular than Pylons?

2009-01-18 Thread walterbyrd
And if so, why? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To unsubscribe from this group, send email to

Re: Having some trouble getting started with Pylons

2008-01-28 Thread walterbyrd
Now I'm having new troubles. I keep getting this error: ValueError: bad marshal data I have no idea what this means. I am trying to follow the tutorial. As I understand it, I am supposed to add this line to routing.py. map.connect('', controller='hello', action='index') I am not sure exactly

Re: Having some trouble getting started with Pylons

2008-01-28 Thread walterbyrd
On Jan 28, 8:00 am, Cliff Wells [EMAIL PROTECTED] wrote: On Mon, 2008-01-28 at 06:38 -0800, walterbyrd wrote: Now I'm having new troubles. I keep getting this error: ValueError: bad marshal data I have no idea what this means. It means you have corrupt .pyc files. If you're on *nix

Re: Having some trouble getting started with Pylons

2008-01-27 Thread walterbyrd
On Jan 26, 7:25 pm, Mike Orr [EMAIL PROTECTED] wrote: In production.ini (development.ini for now): host = 12 7.0.0.1 port = 8080 Here is what I have: /var/www/helloworld# ls *.ini development.ini test.ini /var/www/helloworld# wget http://127.0.0.1:8080 --09:54:01--

Re: Having some trouble getting started with Pylons

2008-01-26 Thread walterbyrd
On Jan 26, 12:03 am, Cliff Wells [EMAIL PROTECTED] wrote: 3) run links (in the VPS) and try to connect to 127.0.0.1:5000 I edited development.ini, and set the host back to it's default of 0.0.0.0. I tried connecting with 127.0.0.1:5000, but I got the same connection refused error. If I run

Re: Having some trouble getting started with Pylons

2008-01-26 Thread walterbyrd
On Jan 26, 1:21 pm, Cliff Wells [EMAIL PROTECTED] wrote: On Sat, 2008-01-26 at 05:16 -0800,walterbyrdwrote: If you are already running Lighty, why not just have it proxy to the Pylons app? Avoiding this is just making your life more difficult. I don't know how. I am brand new to pylons,

Re: Having some trouble getting started with Pylons

2008-01-25 Thread walterbyrd
On Jan 22, 8:17 pm, Cliff Wells [EMAIL PROTECTED] wrote: On Tue, 2008-01-22 at 11:38 -0800, Mike Orr wrote: It looks like he doesn't have ctypes for some reason (probably Python 2.4). I have tried going on to the next step, displaying hello world with 127.0.0.1:5000 in the URL. Since I

Having some trouble getting started with Pylons

2008-01-22 Thread walterbyrd
I have been trying to follow the install instructions here. http://wiki.pylonshq.com/display/pylonsdocs/Home Everything was going okay until I tried this: wb:/var/www/helloworld# paster serve --reload development.ini Starting subprocess with file monitor Starting server in PID 3751.

Re: Pylons Model approach vs simple sql?

2008-01-22 Thread walterbyrd
On Jan 22, 2:33 am, Dmitry Lipovoi [EMAIL PROTECTED] wrote: orm is abstraction over database query language. you can make queries in oo-terms. so your business logic stays clear and you dont care about object persistence. also with orm you can change backend (from MySQL to Postgre for ex.)

Re: Having some trouble getting started with Pylons

2008-01-22 Thread walterbyrd
On Jan 22, 12:40 pm, Mike Orr [EMAIL PROTECTED] wrote: I meant to ask, which operating system and virtual server product is your ISP using? How do they provide Python? I'm sorry, I should have mentioned that. The OS is Debian Etch. I installed Python with a standard apt-get. I am using

Re: Trying to install on dreamhost - need help

2007-11-25 Thread walterbyrd
On Nov 25, 11:21 am, Philip Jenvey [EMAIL PROTECTED] wrote: This means you're using the system-wide python instead of your virtual-python version. Reread the paragraph prior to the ez_setup.py line: Thank you. The problem was: dreamhost puts each domain in a directory of the same name, but

Trying to install on dreamhost - need help

2007-11-24 Thread walterbyrd
I am using the tutorial found here: http://blog.micampe.it/articles/tag/dreamhost It work until I try to run: python2.4 bin/ez_setup.py That causes this error: [Errno 13] Permission denied: '/usr/lib/python2.4/site-packages/test- easy-install-12226.write-test' Tried this: $ ls -ld

Does anybody use hcoop.net for hosting pylons?

2007-09-19 Thread walterbyrd
If so, are you happy with it? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To unsubscribe from this group, send email to

Rate dreamhost for Pylons

2007-09-16 Thread walterbyrd
Does anybody use dreamhost for pylons hosting? If so, are you happy with it? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to

Re: Pylons datagrid? And when will TG merge?

2007-08-24 Thread walterbyrd
On Aug 24, 4:23 am, Cliff Wells [EMAIL PROTECTED] wrote: I'd recommend looking at ExtJS. I'm unaware of any other open source JS But doesn't that only handle the front end stuff? What about the back- end logic? --~--~-~--~~~---~--~~ You received this

Pylons datagrid? And when will TG merge?

2007-08-23 Thread walterbyrd
Does Pylons have a datagrid component? Data laid out in a table, and click the column header to sort by that column. I am looking for something with basic CRUD, and a sort filter. Also something that can handle related data. Also, any idea when pylons merge with turbo-gears will be completed? I

Re: Are my Python/Pylons concerns justified?

2007-08-11 Thread walterbyrd
On Aug 9, 4:35 am, Marcin Kasperski [EMAIL PROTECTED] wrote: A lot of answers already, so just two points: a) There are plenty of cheap VPS hosting options (you get I guess it depends on what you call cheap. I can get php5 hosting for $10/year (http://dollar-hosting.net/).

Re: Trying to understand about Paste and web-server requirements

2007-07-25 Thread walterbyrd
On Jul 25, 2:59 pm, Cliff Wells [EMAIL PROTECTED] wrote: It doesn't. Paste provides an HTTP server. You can let it serve directly, or, more likely, put it behind another HTTP server that can proxy (I personally recommend Nginx, but lots of people use Apache/mod_proxy or Lighttpd). But,

Trying to understand about Paste and web-server requirements

2007-07-24 Thread walterbyrd
I've never used Pylons at all. I've just started reading about it. I'm trying to understand how Pylons uses Paste. Is Paste just a web- server to use for development? Or, is paste meant to be a replacement for apache? If paste is meant to be a replacement for apache, with that work with shared