It isn't clear to me also. Initially I was surprised because the site
app doesn't have any dependency on django's user system. Even if it
does, django uses unicode which caters for those characters in your
name.
Well.....at least we are sure the problem wsnt from the user name. But
something definetely went wrong. Don't worry about it though

On 9/11/11, pasztilla <paszti...@gmail.com> wrote:
> Hi Babatunde,
>
> 1. sorry for the delayed answer - but  I was in the last three weeks
> far from any possibility to use the Internet (and Django as well)...
> 2. I have tried to reproduce the phenomenon and with the 'Pászkán
> Attila' as user it worked !  Why? - still it isn't clear.
>
> PA
>
> On Aug 26, 12:20 am, Babatunde Akinyanmi <tundeba...@gmail.com> wrote:
>> Cool. I'm really interested in finding out what went wrong. If you are
>> also, try to recreate the problem by using you former username and see
>> if the problem persists. If it does, its a bug that the community
>> could consider fixing. That error was thrown by the Site app so I'm
>> still wondering how a change in user name was able to solve it
>>
>> On 8/25/11, pasztilla <paszti...@gmail.com> wrote:
>>
>>
>>
>> > Hi Babatunde,
>>
>> > Hi Babatunde,
>>
>> > SITE_ID == 1
>>
>> > then I did what you've suggested:(see the result)
>>
>> > Microsoft Windows [verziószám: 6.1.7601]
>>
>> > Copyright (c) 2009 Microsoft Corporation.
>> > Minden jog fenntartva.
>>
>> > C:\Users\Pászkán Attila>
>>
>> > D:\>cd Atilla\Programoz\Django\Gyakorlaas\mysite
>>
>> > D:\Atilla\Programoz\Django\Gyakorlaas\mysite>python manage.py shell
>>
>> > Python 2.7.1 (r271:86832, Feb  7 2011, 11:30:38)[MSC v.1500 32 bit
>> > (Intel)] on win32
>>
>> > Type "help", "copyright", "credits" or "license" for more information.
>> > (InteractiveConsole)
>>
>> >>>> from django.contrib.sites.models import Site
>>
>> >>>> Site.objects.get(id=1)
>>
>> > Traceback (most recent call last):
>>
>> >   File "<console>", line 1, in <module>
>>
>> >   File "D:\Python27\lib\site-packages\django\db\models\manager.py",
>> > line 132, in get
>>
>> >     return self.get_query_set().get(*args, **kwargs)
>>
>> >   File "D:\Python27\lib\site-packages\django\db\models\query.py", line
>> > 349, in get
>>
>> >     % self.model._meta.object_name)
>>
>> > DoesNotExist: Site matching query does not exist.
>>
>> > !!!! +++++ !!!!
>>
>> > Meanwhile came an idea that this error could have slyly,
>> > somehow undercover, something to do with my User Name (under Windows)
>> > which contains some unusual characters (two á-s, see above) ...
>> > I've set up a new user (without unusual characters)
>> > and repeated the whole procedure (building up an application
>> > according to the tutorial) and it worked fine!!! :-)
>>
>> > So, seemingly the problem has been resolved! :-)
>> > (It would be interesting to find out why and how
>> > has influenced that unusual user name the functioning
>> > of my admin-site...but it is maybee to much effort to investigate)
>>
>> > Anyway,  thanks for your efforts and support!
>>
>> > PA
>>
>> > On aug. 25, 19:28, Babatunde Akinyanmi <tundeba...@gmail.com> wrote:
>> >> Hi paszkan,
>> >> First I want you to go to your settings file and tell me what value is
>> >> specified for SITE_ID. You will need that value for the next step.
>>
>> >> In your terminal where you would have typed "python manage.py
>> >> runserver" type "python manage.py shell"
>>
>> >> Doing that would load django's inbuilt shell.
>>
>> >> Next type:
>> >> "from django.contrib.sites.models import Site"
>> >> If there's no error type this is where you would need the SITE_ID
>> >> setting value. Assuming SITE_ID value is 1 then type:
>> >> "Site.objects.get(id=1)"
>>
>> >> Do this and give feed back
>>
>> >> On 8/25/11, Pászkán Attila <paszti...@gmail.com> wrote:
>>
>> >> > Can you give more details?
>>
>> >> > 2011/8/25 Babatunde Akinyanmi <tundeba...@gmail.com>
>>
>> >> >> The error you stated normally happens when there are problems with
>> >> >> the
>> >> >> django_site table created when you start a project.
>>
>> >> >> On 8/25/11, Babatunde Akinyanmi <tundeba...@gmail.com> wrote:
>> >> >> > Please say exactly what you did. It will be easier to help that
>> >> >> > way
>>
>> >> >> > On 8/25/11, raj <nano.ri...@gmail.com> wrote:
>> >> >> >> In ur urls.py,
>> >> >> >> Did u import admin, make it discoverable, and also uncomment the
>> >> >> >> /
>> >> >> >> admin/ url?
>> >> >> >> Also, make sure that you syncdb by running python manage.py
>> >> >> >> syncdb.
>> >> >> >> Lemme know if that helps :)
>> >> >> >> On Aug 25, 9:29 am, pasztilla <paszti...@gmail.com> wrote:
>> >> >> >>> Hi there,
>> >> >> >>> I'm just trying to accomodate myself with Django - and so I
>> >> >> >>> tried
>> >> >> >>> to
>> >> >> >>> go through the Django Tutorial from the Django official site.
>> >> >> >>> There
>> >> >> >>> went everything ok with part 1,  but at the very beginning of
>> >> >> >>> the
>> >> >> >>> part
>> >> >> >>> 2 I've met a
>> >> >> >>> problem(https://docs.djangoproject.com/en/1.3/intro/
>> >> >> >>> tutorial02). In spite of that I've perform all settings/changes
>> >> >> >>> described in the 'Activate the admin site' section going to the
>> >> >> >>> next
>> >> >> >>> section 'Start the development server' (ie.
>> >> >> >>> 127.0.0.1:8000/admin/)
>> >> >> >>> led
>> >> >> >>> merely to an error message:
>>
>> >> >> >>> "DoesNotExist at /admin/
>> >> >> >>> Site matching query does not exist.
>> >> >> >>> Request Method:
>> >> >> >>> GET
>> >> >> >>> Request URL:http://127.0.0.1:8000/admin/
>> >> >> >>> Django Version:
>> >> >> >>> 1.3
>>
>> >> >> >>> Exception Type:
>> >> >> >>> DoesNotExist
>>
>> >> >> >>> Exception Value:
>> >> >> >>> Site matching query does not exist.
>>
>> >> >> >>> Exception Location:
>>
>> >> >> >>> D:\Python27\lib\site-packages\django\db\models\query.py in get,
>> >> >> >>> line
>> >> >> >>> 349
>>
>> >> >> >>> Python Executable:
>> >> >> >>> D:\Python27\python.exe
>>
>> >> >> >>> Python Version:
>> >> >> >>> 2.7.1"
>>
>> >> >> >>> [...]
>> >> >> >>> and something more:
>>
>> >> >> >>> "Settings
>> >> >> >>> Using settings module mysite.settings
>>
>> >> >> >>> Setting
>> >> >> >>> Value
>>
>> >> >> >>> USE_L10N
>> >> >> >>> True
>>
>> >> >> >>> USE_THOUSAND_SEPARATOR
>> >> >> >>> False
>>
>> >> >> >>> LANGUAGE_CODE
>> >> >> >>> 'en-us'
>>
>> >> >> >>> ROOT_URLCONF
>> >> >> >>> 'mysite.urls'
>>
>> >> >> >>> MANAGERS
>> >> >> >>> ()
>>
>> >> >> >>> DEFAULT_CHARSET
>> >> >> >>> 'utf-8'
>>
>> >> >> >>> STATIC_ROOT
>> >> >> >>> ''
>>
>> >> >> >>> TEST_DATABASE_CHARSET
>> >> >> >>> None
>>
>> >> >> >>> MESSAGE_STORAGE
>> >> >> >>> 'django.contrib.messages.storage.user_messages.LegacyFallbackStorage'
>>
>> >> >> >>> DATABASE_HOST
>> >> >> >>> ''
>>
>> >> >> >>> IGNORABLE_404_STARTS
>> >> >> >>> ('/cgi-bin/', '/_vti_bin', '/_vti_inf')
>>
>> >> >> >>> SEND_BROKEN_LINK_EMAILS
>> >> >> >>> False
>>
>> >> >> >>> URL_VALIDATOR_USER_AGENT
>> >> >> >>> 'Django/1.3 (http://www.djangoproject.com)'
>>
>> >> >> >>> STATICFILES_FINDERS
>> >> >> >>> ('django.contrib.staticfiles.finders.FileSystemFinder',
>> >> >> >>>  'django.contrib.staticfiles.finders.AppDirectoriesFinder')
>>
>> >> >> >>> SESSION_COOKIE_DOMAIN
>> >> >> >>> None
>>
>> >> >> >>> SESSION_COOKIE_NAME
>> >> >> >>> 'sessionid'
>>
>> >> >> >>> COMMENTS_MODERATORS_GROUP
>> >> >> >>> None
>>
>> >> >> >>> TIME_INPUT_FORMATS
>> >> >> >>> ('%H:%M:%S', '%H:%M')
>>
>> >> >> >>> DATABASES
>> >> >> >>> {'default': {'ENGINE': 'django.db.backends.sqlite3',
>> >> >> >>>              'HOST': '',
>> >> >> >>>              'NAME': 'D:/.../mysite/sqlite3.db',
>> >> >> >>>              'OPTIONS': {},
>> >> >> >>>              'PASSWORD': '********************',
>> >> >> >>>              'PORT': '',
>> >> >> >>>              'TEST_CHARSET': None,
>> >> >> >>>              'TEST_COLLATION': None,
>> >> >> >>>              'TEST_MIRROR': None,
>> >> >> >>>              'TEST_NAME': None,
>> >> >> >>>              'TIME_ZONE': 'Europe/Budapest',
>> >> >> >>>              'USER': ''}}
>>
>> >> >> >>> TEST_DATABASE_NAME
>> >> >> >>> None
>>
>> >> >> >>> FILE_UPLOAD_PERMISSIONS
>> >> >> >>> None
>>
>> >> >> >>> FILE_UPLOAD_HANDLERS
>> >> >> >>> ('django.core.files.uploadhandler.MemoryFileUploadHandler',
>> >> >> >>>  'django.core.files.uploadhandler.TemporaryFileUploadHandler')
>>
>> >> >> >>> DEFAULT_CONTENT_TYPE
>> >> >> >>> 'text/html'
>>
>> >> >> >>> APPEND_SLASH
>> >> >> >>> True
>>
>> >> >> >>> FIRST_DAY_OF_WEEK
>> >> >> >>> 0
>>
>> >> >> >>> DATABASE_ROUTERS
>> >> >> >>> []
>>
>> >> >> >>> YEAR_MONTH_FORMAT
>> >> >> >>> 'F Y'
>>
>> >> >> >>> STATICFILES_STORAGE
>> >> >> >>> 'django.contrib.staticfiles.storage.StaticFilesStorage'
>>
>> >> >> >>> CACHES
>> >> >> >>> {'default': {'BACKEND':
>> >> >> >>> 'django.core.cache.backends.locmem.LocMemCache',
>> >> >> >>>              'LOCATION': ''}}
>>
>> >> >> >>> SERVER_EMAIL
>> >> >> >>> 'root@localhost'
>>
>> >> >> >>> SESSION_COOKIE_PATH
>> >> >> >>> '/'
>>
>> >> >> >>> IGNORABLE_404_ENDS
>> >> >> >>> ('mail.pl', 'mailform.pl', 'mail.cgi', 'mailform.cgi',
>> >> >> >>> 'favicon.ico',
>> >> >> >>> '.php')
>>
>> >> >> >>> MIDDLEWARE_CLASSES
>> >> >> >>> ('django.middleware.common.CommonMiddleware',
>> >> >> >>>  'django.contrib.sessions.middleware.SessionMiddleware',
>> >> >> >>>  'django.middleware.csrf.CsrfViewMiddleware',
>> >> >> >>>  'django.contrib.auth.middleware.AuthenticationMiddleware',
>> >> >> >>>  'django.contrib.messages.middleware.MessageMiddleware')
>>
>> >> >> >>> USE_I18N
>> >> >> >>> True
>>
>> >> >> >>> THOUSAND_SEPARATOR
>> >> >> >>> ','
>>
>> >> >> >>> SECRET_KEY
>> >> >> >>> '********************'
>>
>> >> >> >>> LANGUAGE_COOKIE_NAME
>> >> >> >>> 'django_language'
>>
>> >> >> >>> FILE_UPLOAD_TEMP_DIR
>> >> >> >>> None
>>
>> >> >> >>> TRANSACTIONS_MANAGED
>> >> >> >>> False
>>
>> >> >> >>> LOGGING_CONFIG
>> >> >> >>> 'django.utils.log.dictConfig'
>>
>> >> >> >>> TEMPLATE_LOADERS
>> >> >> >>> ('django.template.loaders.filesystem.Loader',
>> >> >> >>>  'django.template.loaders.app_directories.Loader')
>>
>> >> >> >>> TEMPLATE_DEBUG
>> >> >> >>> True
>>
>> >> >> >>> AUTHENTICATION_BACKENDS
>> >> >> >>> ('django.contrib.auth.backends.ModelBackend',)
>>
>> >> >> >>> TEST_DATABASE_COLLATION
>> >> >> >>> None
>>
>> >> >> >>> FORCE_SCRIPT_NAME
>> >> >> >>> None
>>
>> >> >> >>> CACHE_BACKEND
>> >> >> >>> 'locmem://'
>>
>> >> >> >>> SESSION_COOKIE_SECURE
>> >> >> >>> False
>>
>> >> >> >>> CSRF_COOKIE_DOMAIN
>> >> >> >>> None
>>
>> >> >> >>> FILE_CHARSET
>> >> >> >>> 'utf-8'
>>
>> >> >> >>> DEBUG
>> >> >> >>> True
>>
>> >> >> >>> SESSION_FILE_PATH
>> >> >> >>> None
>>
>> >> >> >>> DEFAULT_FILE_STORAGE
>> >> >> >>> 'django.core.files.storage.FileSystemStorage'
>>
>> >> >> >>> INSTALLED_APPS
>>
>> >> >> >>> ['django.contrib.auth',
>> >> >> >>>  'django.contrib.contenttypes',
>> >> >> >>>  'django.contrib.sessions',
>> >> >> >>>  'django.contrib.sites',
>> >> >> >>>  'django.contrib.messages',
>> >> >> >>>  'django.contrib.staticfiles',
>> >> >> >>>  'polls',
>> >> >> >>>  'django.contrib.admin']
>>
>> >> >> >>> LANGUAGES
>> >> >> >>> (('ar', 'Arabic'),
>> >> >> >>>  ('az', 'Azerbaijani'),
>> >> >> >>>  ('bg', 'Bulgarian'),
>> >> >> >>>  ('bn', 'Bengali'),
>> >> >> >>>  ('bs', 'Bosnian'),
>> >> >> >>>  ('ca', 'Catalan'),
>> >> >> >>>  ('cs', 'Czech'),
>> >> >> >>>  ('cy', 'Welsh'),
>> >> >> >>>  ('da', 'Danish'),
>> >> >> >>>  ('de', 'German'),
>> >> >> >>>  ('el', 'Greek'),
>> >> >> >>>  ('en',
>>
>> ...
>>
>> read more »
>
> --
> 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
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
Sent from my mobile device

-- 
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 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to