unsubscribe?

2008-06-08 Thread circularfunc
how do i unsubscribe? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTE

Re: why so slow?

2008-06-03 Thread circularfunc
now i see, ty very much. django seems awesome though now that it is working for me. On 4 Juni, 00:57, "Colin Bean" <[EMAIL PROTECTED]> wrote: > On Tue, Jun 3, 2008 at 2:00 PM, <[EMAIL PROTECTED]> wrote: > > > im running part 2 of the tutorial right now and im inside the admin. > > when connectin

django + google appengine?

2008-06-03 Thread circularfunc
i, once i have learned more about django, will build a prety big application and want to host it somewhere for free. google appengine seems like a good place to start, then i dont have to get my own servers and stuff. is this easy integrateable? or doesnt google appengine and django work togethe

why so slow?

2008-06-03 Thread circularfunc
im running part 2 of the tutorial right now and im inside the admin. when connecting to localhost it is s slow, why? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, sen

Re: Tutorial, def __unicode__ not working

2008-06-03 Thread circularfunc
problem was i ahd to restart the shell, didnt work just reimporting. On 3 Juni, 22:18, Sebastian Bauer <[EMAIL PROTECTED]> wrote: > try: > def __str__(self): > return self.question > > [EMAIL PROTECTED] pisze: > > >http://www.djangoproject.com/documentation/tutorial01/ > > > added these: > >

Re: Tutorial, def __unicode__ not working

2008-06-03 Thread circularfunc
Adjango\utils Adjango\utils\termcolors.py Adjango\utils\_decimal.py Adjango\utils\__init__.py Adjango\utils\autoreload.py Adjango\utils\dates.py Adjango\utils\stopwords.py Adjango\utils\html.py Adjango\utils\safestring.py Adjango\utils\translation Adjang

Tutorial, def __unicode__ not working

2008-06-03 Thread circularfunc
http://www.djangoproject.com/documentation/tutorial01/ added these: class Poll(models.Model): # ... def __unicode__(self): return self.question class Choice(models.Model): # ... def __unicode__(self): return self.choice using the latest django-version fetched by

why do i have to add this to Apache?

2008-06-03 Thread circularfunc
why is this necessary? do i have to do this for every project? testproject.settings implies i do. http://thinkhole.org/wp/django-on-windows/ Step 6. Configure Apache for Django Now that everything is installed and we know that Django is working properly, it’s time to get it working with Apache

Apache monitor is not working

2008-06-03 Thread circularfunc
ive had the apache server up and running before but the apache srvice monitor isnt working like it should(i think). i am using windows vista and the 2.2server. it is the tollbar in the bottom right of thw window and i can bring it up. however pressing start deosnt do anything. i can start by la

"no relations found"?

2008-06-03 Thread circularfunc
"If you’re interested, run the command-line client for your database and type \dt (PostgreSQL), SHOW TABLES; (MySQL), or .schema (SQLite) to display the tables Django created." i write \dt and get "no relations found". what does this mean? i create a database(even three) before. --~--~-~-

Re: syncdb: invalid literal for int with base 10: '1,'

2008-06-02 Thread circularfunc
could not create i get when i reinstall 2.0. however there is a map psycopg2. but i should have psycopg? because it says no module psycopg. but i mean i have that this is going in circles, when i change to DATABASE_ENGINE = 'postgresql_psycopg2' it works. but i get > ValueError: invalid lite

Re: syncdb: invalid literal for int with base 10: '1,'

2008-06-02 Thread circularfunc
i have downloaded that already. is it 2.0 i should have or 1.1? On 2 Juni, 23:17, neuro_damage <[EMAIL PROTECTED]> wrote: > http://www.stickpeople.com/projects/python/win-psycopg/. > > Go there download the appropriate package for your system. Then you > should have the module. > > On Jun 2, 4:

Re: syncdb: invalid literal for int with base 10: '1,'

2008-06-02 Thread circularfunc
C:\Python25\Lib\site-packages\django\bin\webapps>manage.py syncdb Traceback (most recent call last): File "C:\Python25\Lib\site-packages\django\bin\webapps\manage.py", line 11, in execute_manager(settings) File "C:\Python25\lib\site-packages\django\core\management.py", line 1672, in exec

Re: syncdb: invalid literal for int with base 10: '1,'

2008-06-02 Thread circularfunc
can i copy text from the windows command prompt? when just using postgresql i get: error loading psycopg module no module named psycopg im not using the subversion download but the latest official version. On 2 Juni, 23:06, neuro_damage <[EMAIL PROTECTED]> wrote: > can you post all the outp

syncdb: invalid literal for int with base 10: '1,'

2008-06-02 Thread circularfunc
when running syncdb i get: postgres_version = [int(val) for val in cursor.fetchone()[0].split() [1].split('.')] invalid literal for int() with base 10: '1,' --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django us

problem with tutorial(polls)app, database problem

2008-06-02 Thread circularfunc
self.connection ) Database.connect(conn_string, **self.options) psycopg2.OperationalError: missing "=" after "owner" in connection info string did this to create the database: CREATE USER django_user PASSWORD 'passwd'; CREATE DATABASE django owner=django_user; --~--~-~--~~-

Re: psql to postgres, IA prompt, how to create database?

2008-06-02 Thread circularfunc
and how do i access or change password etc for this database later? is there a turorial somewhere? On 2 Juni, 18:34, "Tom Pope" <[EMAIL PROTECTED]> wrote: > hi > > CREATE USER django_user PASSWORD 'passwd'; > > CREATE DATABASE django owner=django_user; > > i hope this helps > > On 6/2/08, [EMAIL

psql to postgres, IA prompt, how to create database?

2008-06-02 Thread circularfunc
i started the psql to postgres interactive prompt and there supposedly is a command CREATE DATABASE but just writing that doesnt help. i need to create a database. doing the django tutorial: http://www.djangoproject.com/documentation/tutorial01/ --~--~-~--~~~---~--~--

Re: How to change Apache port? do I need to?

2008-06-02 Thread circularfunc
this is what i cant do: "Assuming there were no errors in any of the steps up to this point, you should now be able to browse to localhost/testproject and be greeted with this page:" Not Found The requested URL /testproject was not found on this server. i can however see that these works: http

Re: How to change Apache port? do I need to?

2008-06-02 Thread circularfunc
also, i have a problem with the apache GUI on windows. it doesnt allow me to stop or restart the server i have to do that from the command prompt. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group.

Re: How to change Apache port? do I need to?

2008-06-02 Thread circularfunc
so this: "Note that if you choose to run Apache on port 8000, it will conflict with the default port for the Django development/test server. Not cool. " is not a problem as it is? On 2 Juni, 16:59, "Thierry Schork" <[EMAIL PROTECTED]> wrote: > put exactly what you want. > 80 is the default HTTP

Re: How to change Apache port? do I need to?

2008-06-02 Thread circularfunc
in httpf.conf : #Listen 12.34.56.78:80 Listen 80 #ServerName thedude-PC.Belkin:80 what should i ahve here 80 or 00 or something else? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post

How to change Apache port? do I need to?

2008-06-02 Thread circularfunc
should i use 8080 or 8000 for apache? i got all the way down to the end of the tutorial(see below) but when i run testproject it is not at localhost/testproject but at localhost/ 8000 so i need to change port for apache? how do i change the port? http://thinkhole.org/wp/django-on-windows/ "Y