First time here? Check out the FAQ!

andrewv's profile - activity

2013-05-23 21:37:41 -0500 received badge Popular Question (source)
2012-07-17 10:18:05 -0500 received badge Famous Question (source)
2012-06-18 09:12:12 -0500 received badge Famous Question (source)
2011-06-06 03:31:48 -0500 received badge Notable Question (source)
2011-02-28 03:04:42 -0500 received badge Popular Question (source)
2010-10-31 21:32:48 -0500 received badge Student (source)
2010-10-26 16:00:46 -0500 commented answer Can askbot use sendmail instead of SMTP
Thanks, that got it to work.
2010-10-26 15:19:31 -0500 commented answer Can askbot use sendmail instead of SMTP
from django.core.mail.backends.base import BaseEmailBackend is new to 1.2. Also after switching to 1.2 I get the following error: ImproperlyConfigured: Error importing middleware askbot.middleware.view_log: "No module named coffin.template" Any ideas?
2010-10-26 15:06:13 -0500 commented answer Can askbot use sendmail instead of SMTP
That snippet requires Django 1.2 or did you mean it should work fine as long as I switch to django 1.2?
2010-10-26 14:43:00 -0500 asked a question Can askbot use sendmail instead of SMTP

I am setting up an askbot instance and would like to know if its possible to set up askbot with either Django 1.2.x or use an email backend other than SMTP?

2010-10-25 21:12:08 -0500 commented answer Why do I ImportError: cannot import name signals?
I did follow instructions this is what is in my python path: /usr/lib/python2.4/site-packages/askbot-0.6.17-py2.4.egg /usr/lib/python2.4/site-packages/django_robots-0.8.0-py2.4.egg /usr/lib/python2.4/site-packages/django_threaded_multihost-1.4_0-py2.4.egg /usr/lib/python2.4/site-packages/django_keyedcache-1.4_1-py2.4.egg /usr/lib/python2.4/site-packages/Django-1.1.2-py2.4.egg But I cannot import
2010-10-25 21:00:11 -0500 commented answer Why do I ImportError: cannot import name signals?
I did that, but now the problem is that the installation of askbot through the github version added it to the site-packages and added it to python path, but python still can't import it. Do you have any ideas what might cause this? I am a bit new to hardcare Python.
2010-10-25 20:25:35 -0500 commented answer Why do I ImportError: cannot import name signals?
oops didn't mean for this to be an answer
2010-10-25 20:25:13 -0500 answered a question Why do I ImportError: cannot import name signals?

I am trying from the github version, now I am getting the following error:

Traceback (most recent call last): File "/usr/bin/startforum", line 7, in ? sys.exit( File "/usr/lib/python2.4/site-packages/setuptools-0.6c11-py2.4.egg/pkg_resources.py", line 318, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File "/usr/lib/python2.4/site-packages/setuptools-0.6c11-py2.4.egg/pkg_resources.py", line 2221, in load_entry_point return ep.load() File "/usr/lib/python2.4/site-packages/setuptools-0.6c11-py2.4.egg/pkg_resources.py", line 1954, in load entry = __import__(self.module_name, globals(),globals(), ['__name__']) ImportError: No module named askbot.deployment

2010-10-25 20:16:14 -0500 commented answer Why do I ImportError: cannot import name signals?
I can't use postgresql, but I can try the version in github, I was previously using the stable release. python 2.6 might not be an option either since I have limited access to the machine.
2010-10-25 19:41:14 -0500 asked a question Why do I ImportError: cannot import name signals?

I am trying to install askbot, but when I run the command python manage.py syncdb, I get the following error.

Traceback (most recent call last): File "manage.py", line 11, in ? execute_manager(settings) File "/usr/lib/python2.4/site-packages/Django-1.1.2-py2.4.egg/django/core/management/__init__.py", line 362, in execute_manager utility.execute() File "/usr/lib/python2.4/site-packages/Django-1.1.2-py2.4.egg/django/core/management/__init__.py", line 303, in execute self.fetch_command(subcommand).run_from_argv(self.argv) File "/usr/lib/python2.4/site-packages/Django-1.1.2-py2.4.egg/django/core/management/base.py", line 195, in run_from_argv self.execute(args, *options.__dict__) File "/usr/lib/python2.4/site-packages/Django-1.1.2-py2.4.egg/django/core/management/base.py", line 221, in execute self.validate() File "/usr/lib/python2.4/site-packages/Django-1.1.2-py2.4.egg/django/core/management/base.py", line 249, in validate num_errors = get_validation_errors(s, app) File "/usr/lib/python2.4/site-packages/Django-1.1.2-py2.4.egg/django/core/management/validation.py", line 28, in get_validation_errors for (app_name, error) in get_app_errors().items(): File "/usr/lib/python2.4/site-packages/Django-1.1.2-py2.4.egg/django/db/models/loading.py", line 145, in get_app_errors self._populate() File "/usr/lib/python2.4/site-packages/Django-1.1.2-py2.4.egg/django/db/models/loading.py", line 63, in _populate self.load_app(app_name) File "/usr/lib/python2.4/site-packages/Django-1.1.2-py2.4.egg/django/db/models/loading.py", line 77, in load_app models = import_module('.models', app_name) File "/usr/lib/python2.4/site-packages/Django-1.1.2-py2.4.egg/django/utils/importlib.py", line 35, in import_module __import__(name) File "/usr/lib/python2.4/site-packages/askbot-0.6.17-py2.4.egg/askbot/models/__init__.py", line 28, in ? from askbot.models import signals ImportError: cannot import name signals