I am running my django Application in local mode, and my database server is 
in a remote server with cpanel. Configurations in settings.py are:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql', 
        'NAME': 'tim_farmaapp',                      
        'USER': 'tim_farmaapp',
        'PASSWORD': 'mypass_123_',
        'HOST': 'stevie.heliohost.org',                     
        'PORT': '3306',                      
    }}

But when i make syncdb i get this error:

OperationalError: (1045, "Access denied for user 'tim_farmaapp'@'31.44.78.126' 
(using password: YES)")

How can i fix this issue/error ? Thanks to all !

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/f9f74486-e480-4e6c-a362-5a7b68b77202%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to