On Sep 19, 9:18 am, KillaBee <[EMAIL PROTECTED]>
wrote:
> On Sep 18, 8:34 pm, Malcolm Tredinnick <[EMAIL PROTECTED]>
> wrote:
>
> > On Thu, 2008-09-18 at 15:13 -0700, Carol wrote:
> > > As far as I can see, django-admin.py doesn't have a subcommand called
> > > init.
>
> > It did in 0.90, We're talking about something release in mid-November,
> > 2005: things have changed a little since then. :-)
>
> > Regards,
> > Malcolm
>
> I am using an old .90 program that has been a pain to recode to 1.0.
> I s there a guide on django's website I ca look at?
> I used the same settings as I did before, in 1.0 that worked. There
> is not a manage.py but there is a management.py with a init. When I
> did python management.py and any command nothing happened, so I am
> thinking that the settings might be wrong, or the location was not in
> python.
>
> MANAGERS = ADMINS
>
> DATABASE_ENGINE = 'mysql'
> DATABASE_NAME = 'timesheets'
> DATABASE_USER = 'bryant'
> DATABASE_PASSWORD = '********'
> DATABASE_HOST = '10.0.0.20'
> DATABASE_PORT = '3306'
>
> Does Django .90 automaticlly put projects in python?
I went to the Django admin.py file and looked to see the commands, and
found my notes that said that I did a sqlall it showed sql statements
that would add db tables from my models, but it does not. My
installed_apps looks ok.
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'intraweb.apps.timesheets',
'django.contrib.admin',
)
In django-admin.py it has a init, so I ran django-admin.py init and it
still gives me this long error:
Traceback (most recent call last):
File "/usr/lib/python2.5/site-packages/Django-0.90-py2.5.egg/django/
core/servers/basehttp.py", line 272, in run
self.result = application(self.environ, self.start_response)
File "/usr/lib/python2.5/site-packages/Django-0.90-py2.5.egg/django/
core/servers/basehttp.py", line 615, in __call__
return self.application(environ, start_response)
File "/usr/lib/python2.5/site-packages/Django-0.90-py2.5.egg/django/
core/handlers/wsgi.py", line 160, in __call__
response = middleware_method(request, response)
File "/usr/lib/python2.5/site-packages/Django-0.90-py2.5.egg/django/
middleware/sessions.py", line 71, in process_response
session_key = request.session.session_key or
sessions.get_new_session_key()
File "/usr/lib/python2.5/site-packages/Django-0.90-py2.5.egg/django/
models/core.py", line 110, in _module_get_new_session_key
get_object(session_key__exact=session_key)
File "/usr/lib/python2.5/site-packages/Django-0.90-py2.5.egg/django/
utils/functional.py", line 3, in _curried
return args[0](*(args[1:]+moreargs), **dict(kwargs.items() +
morekwargs.items()))
File "/usr/lib/python2.5/site-packages/Django-0.90-py2.5.egg/django/
core/meta/__init__.py", line 1138, in function_get_object
obj_list = function_get_list(opts, klass, **kwargs)
File "/usr/lib/python2.5/site-packages/Django-0.90-py2.5.egg/django/
core/meta/__init__.py", line 1178, in function_get_list
return list(function_get_iterator(opts, klass, **kwargs))
File "/usr/lib/python2.5/site-packages/Django-0.90-py2.5.egg/django/
core/meta/__init__.py", line 1159, in function_get_iterator
cursor = db.db.cursor()
File "/usr/lib/python2.5/site-packages/Django-0.90-py2.5.egg/django/
core/db/backends/mysql.py", line 67, in cursor
self.connection = Database.connect(**kwargs)
File "/var/lib/python-support/python2.5/MySQLdb/__init__.py", line
74, in Connect
return Connection(*args, **kwargs)
File "/var/lib/python-support/python2.5/MySQLdb/connections.py",
line 170, in __init__
super(Connection, self).__init__(*args, **kwargs2)
TypeError: an integer is required
I see *args, **kwargs2 , so I am thinking it is a db problem with the
username and password, but I can log in with I. Do I need a number in
my user name on .90?
--~--~---------~--~----~------------~-------~--~----~
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 PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---