0
votes
1answer
9 views

error while linking mysql and django

i am using aptana for creating a website using django. I have installed mysql but not able to link the database when i run this command *Python2.7 manage.py runserver* i get a message that Python2.7 ...
0
votes
0answers
20 views

Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock

While accessing Phpmyadmin through browser and command : its showing error "Can't connect to local MySQL server through socket "/var/run/mysqld/mysqld.sock'"... I used this commnad mysql -u root ...
0
votes
0answers
17 views

logging standard python exceptions with django

In one of my views, I handle a general python exception. This exception does not crash the site, or result in a 500. I would like to log this exception with django so that I can inspect it. What is ...
0
votes
1answer
16 views

Can't make nestednamespaces what are the best practices for django urls

I can't create nested namespaces like they are presented in https://docs.djangoproject.com/en/1.4/topics/http/urls/ every time I go more than 1 level I lose all the other namespaces has anyone been ...
0
votes
1answer
12 views

How do I publish a django web app to Google App Engine from Visual Studio 2012

I am trying to set up a django application in Visual Studio 2012 that will publish to Google App Engine. I have a simple hello World Application set up in Visual Studio using pytools that I can run ...
0
votes
1answer
14 views

django blog zinnia - NoReverseMatch at /blog/

My current project uses django blog zinnia and when I open /blog it gives the following error: Reverse for 'zinnia_entry_add' with arguments '()' and keyword arguments '{}' not found. I tried ...
0
votes
0answers
21 views

How to monkey patch south handled models from plugin?

I'm making a django site with plugins. Each plugin is a simple django app depending on a main one (or even other plugins). While dependency between applications/plugins are clear to me, it should be ...
0
votes
0answers
31 views

Disadvantages of creating a Django based trading front-end? [closed]

After struggling with MQL4/MetaTrader for some time, I'm thinking of creating my own FX "trading platform" in python. Since I work with very basic indicators (Moving Average, MACD etc.), I could use ...
-1
votes
0answers
25 views

How to create new instance for existing project?

I am new to google app engine.I am try to deploy the django CRUD application in google app engine.Is it necessary to create an instance for django CRUD application ?. I have enabled the billing for ...
0
votes
1answer
18 views

stale content types while syncdb in Django

While I'm trying to syncdb for my django project, I'm seeing following complains: The following content types are stale and need to be deleted: reviews | Any objects related to these content types ...
0
votes
1answer
24 views

How to upload the django-1.5 application in google app engine?

I have uploaded the my sample CRUD application in google app engine. But it riased error as shown below, Traceback (most recent call last): File ...
0
votes
1answer
22 views

How Do You Pass New URLs to a Scrapy Crawler

I would like to keep a scrapy crawler constantly running inside a celery task worker probably using something like this. Or as suggested in the docs The idea would be to use the crawler for querying ...
0
votes
2answers
41 views

uWSGI error: "Error opening file for reading: Permission denied'

I am experiencing the exact same error described here: uWSGI Server log…permission denied to read file...which file? uWSGI keeps throwing me "Error opening file for reading: Permission denied" in ...
0
votes
0answers
16 views

Django & Heroku: Import error on installed app only when DEBUG=False & on heroku

I recently installed django-notification-1, see code here if necessary. When I run my app on my local development server with DEBUG=True or DEBUG=False everything works fine. On heroku with ...
1
vote
1answer
25 views

File downloaded always blank in Python, Django

I am using the following view in Django to create a file and make the browser download it def aux_pizarra(request): myfile = StringIO.StringIO() myfile.write("hello") ...
1
vote
1answer
13 views

load multi-line fixture field from django

In the fixture (in yaml), I set a multi-line field: fields: code: > print(1) print(2) print(3) Then I tried to read it by print(code) however it ...
0
votes
0answers
20 views

Django Tastypie: including relationship with the same model

I am really stuck with this issue. Here is a simplified version of a model: # models.py class CustomComment(models.Model): comment = models.CharField(max_length=500) parent_comment = ...
0
votes
2answers
35 views

django select app(s) for syncdb

First of all: please don't ask me: "Why would you need this?". Now the question itself: I have several applications installed in INSTALLED_APPS. Database is now empty and I want to synchronise only ...
1
vote
1answer
46 views

Django “Table already exists” on testing

I've tried to solve the following issue: I'm running python manage.py test to test my application. After creating a new test_app database, I'm getting DatabaseError: (1050, "Table 'auth_group' ...
0
votes
0answers
32 views

Reverse for 'django.contrib.auth.views.password_reset_confirm' with arguments '()' and keyword arguments

I follow this code for django reset password: http://drumcoder.co.uk/blog/2010/apr/09/django-reset-password/ I use from Django1.5 and change {{ protocol }}://{{ domain }}{% url ...
1
vote
1answer
33 views

Slugify string in Django

I have developed a form, where the user adds his/her first name and last name. For the username (a unique property), I've devised the following method: FirstName: harrY LastName: PottEr --> ...
0
votes
0answers
19 views

Cannot Get Haystack Tutorial Working

I have completed the tutorial for Haystack w/ Whoosh and re-read it about 6 times in the past few hours and cannot seem to figure out what my issue is. Basically, everything seemed to installed ...
0
votes
1answer
11 views

adding clocking support to heroku with python django

The article here - https://devcenter.heroku.com/articles/clock-processes-python teaches how to run background jobs in heroku. I have my clock.py file, in the same directory where Procfile is. ...
0
votes
1answer
18 views

Django forget password

I follow this code: http://drumcoder.co.uk/blog/2010/apr/09/django-reset-password/ but when I run I have this error: File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py" in ...
0
votes
0answers
13 views

Django-tables2 - dynamically adding columns to table - not adding attrs to table tag in html

In my Django project I need to have tables which columns are dynamic and depend on what is in the database. So I found a solution in here and it works but with a little problem. Here's the class with ...
-1
votes
1answer
23 views

Querying a ManyToMany Field in a Django model

So I have these two models: class Player(models.Model): playerName = models.CharField(max_length= 50) playerTeam = models.CharField(max_length=20) class Role(models.Model): roleName = ...
1
vote
0answers
22 views

Logging Apache instance name in Django logger

We use the Django logging module for our Django app, which runs on a couple of Apache instances on a server; each instance is a different setup, like production/staging/development/testing. How do I ...
0
votes
0answers
24 views

Find related objects and display relation

I am using django-follow to allow users to "follow" objects (for this example lets call these objects film actors) I am pulling back a list of film actors using actors_user_is_following = ...
-3
votes
0answers
24 views

Creating custom permissions [closed]

How will i hide the "Log" option for any users other than Admin? =========================== default_panel = 'Log' def get_default_panel(self, request): is_admin = ...
0
votes
0answers
38 views

Restart Gunicorn_django via Fabric

I'm building a Django application and I decided to investigate Fabric for automating deployment. I've got it mostly working, but it fails at the last step, and I can't seem to puzzle out why. I'm ...
0
votes
0answers
40 views

Does not exist. No exception supplied error

I have the following class based view. class AllPluginsView(ListView): queryset = get_models(get_app('plugins')) template_name="console/plugins/plugins.html" context_object_name = ...
0
votes
2answers
31 views

Django count matches query with contains

I want to show in order (as a ranking), users who have more in common with the user logged in. I have this code: me = User.objects.get(pk=sesion) keywords = me.likes result = [] for keyword in ...
0
votes
0answers
22 views

Error accessing dashboard or admin interface in Google App Engine

I am unable to access dashboard/admin interface of Google app engine on local development environment which could be access using localhost:8000/_ah/admin/. It throws following error: Traceback ...
0
votes
0answers
26 views

Worker dying after receiving 1000s of tasks at a time in Django Celery

I am running a script that generates nearly 10000 objects. On save of each object, a Celery task will be called, so in just 1-3 min, Celery is receiving 1000s of tasks and its worker is dying (with ...
0
votes
0answers
26 views

how to get the userinfo using mod_auth_cas from session?

I use mod_auth_cas as the cas client,and here is my conf file in http.conf of apache: CASDebug On CASValidateServer Off CASCookiePath /var/cache/apache2/mod_auth_cas/ CASLoginURL ...
0
votes
1answer
23 views

Get scrollTop, scrollLeft etc. from element with selenium

In a Python/Django test for an element, that is scrolled via scrollTop, I want to get the value of scrollTop. In JavaScript I get this value via element.scrollTop In Python I tried the following: ...
0
votes
1answer
18 views

How to do a background check on entry into the m2m communication in the query?

There are models: class MyObject (models.Model): name = models.CharField () class Day (models.Model): day = models.IntegerField () class Month (models.Model): month = ...
0
votes
1answer
18 views

How to filter Haystack SearchQuerySets by related models

How do you filter/join a Haystack SearchQuerySet by related model fields? I have a query like: sqs = SearchQuerySet().models(models.Person) and this returns the same results that the equivalent ...
0
votes
4answers
70 views

Python doesn't interpret UTF8 correctly

I know similar questions have been asked a million times, but despite reading through many of them I can't find a solution that applies to my situation. I have a django application, in which I've ...
0
votes
1answer
22 views

Django 1.5 : OperationalError in windows when running “python manage.py syncdb” using postgresql-psycopg2

This is my settings.py file in my Django project. OS : Windows, hosting : localhost DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': ...
0
votes
0answers
12 views

Posting to Facebook App page wall as the App Page in python

I am trying make a post on my apps page wall as if it is coming from the app page (not another user) After researching I seem to find no solution that actually works! I have tried to follow the ...
0
votes
1answer
24 views

How to order a reverse foreign key in django

I have the following for loop I create in my template: {% for task in item.task_set.all %} <li class="task"> {{ task }} </li> {% endfor %} Is there a ...
0
votes
1answer
35 views

What is the Python equivalent to Django File object?

I need to modify the HTTP header of a file within Python, and I know this is possible using the Django 'File' object (https://docs.djangoproject.com/en/dev/topics/files/) as documented in the example ...
0
votes
0answers
14 views

IOError: failed to write data - Python Server

Any idea why the following error occurs when uploading image to server?! [Tue May 21 23:44:01 2013] [error] [client 41.236.182.133] mod_wsgi (pid=9639): Exception occurred processing WSGI script ...
1
vote
1answer
26 views

Complex compound order_by django query

I have the following two models for the title of Movies and TV: Title - id - title - show_name (FK, Nullable) TVShow - id - title Here are some example data entries: ...
1
vote
2answers
59 views

How can I retrieve data from multiple tables

I need to retrieve data from multiple tables, with a dynamically built filter that might or might not use data from any of the tables. So say I have this: class Solution(models.Model): name = ...
0
votes
1answer
12 views

Form-based Kerberos authentication in Django

I have got an Django application that uses the RemoteUserBackend in combination with Apache and mod_auth_kerb to authenticate against Kerberos. However, this has some drawbacks: There is no proper ...
2
votes
2answers
36 views

Longest 200 byte string - database validation max_length

So, working to a specification which dictates a byte length for a given variable (200 bytes) provided by end users/apps. Using a python string, what is the maximum character length of a string, which ...
0
votes
1answer
31 views

django settings.py value error

I am setting up a django project(for the first time). I tried to configure, but despite its showing some value error. Here is the settings.py settings.py DEBUG = True TEMPLATE_DEBUG = DEBUG ...
0
votes
0answers
31 views

Unable to open file object created in Django

I'm developing an application that runs on an Apache server with Django framework. My current script works fine when it runs on the local desktop (without Django). The script downloads all the images ...

1 2 3 4 5 418