First time here? Check out the FAQ!

coldsystem's profile - activity

2023-07-14 20:58:01 -0500 received badge Popular Question (source)
2023-07-14 20:58:01 -0500 received badge Famous Question (source)
2023-07-14 20:58:01 -0500 received badge Notable Question (source)
2020-08-27 11:03:50 -0500 received badge Famous Question (source)
2020-08-27 11:03:50 -0500 received badge Notable Question (source)
2020-08-27 11:03:50 -0500 received badge Popular Question (source)
2016-08-08 06:53:44 -0500 received badge Notable Question (source)
2015-08-24 15:38:24 -0500 received badge Notable Question (source)
2015-08-24 15:38:24 -0500 received badge Popular Question (source)
2015-06-16 04:53:16 -0500 received badge Notable Question (source)
2015-03-04 06:35:24 -0500 received badge Popular Question (source)
2015-02-08 16:42:37 -0500 received badge Notable Question (source)
2014-12-05 08:52:09 -0500 received badge Famous Question (source)
2014-10-02 01:30:47 -0500 received badge Notable Question (source)
2014-08-27 13:03:07 -0500 received badge Famous Question (source)
2014-01-16 09:34:39 -0500 asked a question css examples

have someome any CSS examples so that i can submit it from admin settings ?

Example : change the color of all questions to Red of Blue

2014-01-14 03:58:22 -0500 received badge Popular Question (source)
2014-01-08 02:27:37 -0500 asked a question 30 days trial period of Askbot

We are in the hosting. after changing the url site from example.com to our site ask.unixmen.com (Sorry to post the site name)

we have now many issues like :

1-we are unable to insert html codes (Server internal Error)

2-Site matching query does not exist.

3-bad config of robots.txt

4-logo cannot be displayed

we sent an email yesterday to support and we still have no answer

Please give a look to these issues

2013-12-07 12:24:15 -0500 received badge Popular Question (source)
2013-07-25 00:50:47 -0500 received badge Popular Question (source)
2013-05-31 00:17:54 -0500 received badge Famous Question (source)
2013-04-04 15:25:51 -0500 received badge Famous Question (source)
2013-04-04 02:12:32 -0500 received badge Famous Question (source)
2013-03-17 18:56:33 -0500 asked a question no such column: askbot_thread.deleted

After migration to 0.7.48, all links are not working

i got every time this issue:

Django Version:     1.4.5
Exception Type:     DatabaseError
Exception Value:    

no such column: askbot_thread.deleted

Exception Location:     /usr/lib/python2.6/site-packages/Django-1.4.5-py2.6.egg/django/db/backends/sqlite3/base.py in execute, line 344
Python Executable:  /usr/bin/python

Running SQlite database on Centos Linux

Please help to fix this issue

2013-03-05 08:26:28 -0500 asked a question pip install fails with "Connection timed out"

i was trying to download and install the last devel master zip

Installing askbot-setup script to /usr/bin

Installed /usr/lib/python2.6/site-packages/askbot-0.7.48-py2.6.egg

Processing dependencies for askbot==0.7.48
Searching for django-celery==3.0.11
Reading http://pypi.python.org/simple/django-celery/
Reading http://celeryproject.org
Download error: [Errno 110] Connection timed out -- Some packages may not be found!
Reading http://celeryproject.org
Download error: [Errno 110] Connection timed out -- Some packages may not be found!
Reading http://celeryproject.org
Download error: [Errno 110] Connection timed out -- Some packages may not be found!
Reading http://celeryproject.org
Download error: [Errno 110] Connection timed out -- Some packages may not be found!
Reading http://celeryproject.org
Download error: [Errno 110] Connection timed out -- Some packages may not be found!
Reading http://celeryproject.org
Download error: [Errno 110] Connection timed out -- Some packages may not be found!
Reading http://celeryproject.org
Download error: [Errno 110] Connection timed out -- Some packages may not be found!
Reading http://celeryproject.org
2013-02-28 17:15:17 -0500 answered a question robots.txt the nightmare config

how to downgrade then ? (remove and reninstall?

rm -rf /usr/lib/python2.6/site-packages/django_robots-0.9.1-py2.6.egg*

and reinstall 0.8.0?

any other configuration needed ?

2013-02-28 03:43:00 -0500 answered a question direct to www.site.com and remove /questions

i cant this in My askbot directory

[root@ks3266231 livesite]# ls
askbot        log            settings.py-203022013  static
data.json     manage.py      settings.py-22022013   urls.py
django.wsgi   nohup.out      settings.pyc           urls.pyc
__init__.py   settings.py    settings.py.orig       urls.py-working
__init__.pyc    settings.py-woking     
[root@ks3266231 livesite]#


[root@ks3266231 livesite]# grep  index urls.py
[root@ks3266231 livesite]# grep questions urls.py


[root@ks4000391 liveaskbot0748]# cat urls.py
"""
main url configuration file for the askbot site
"""
from django.conf import settings
from django.conf.urls.defaults import handler404
from django.conf.urls.defaults import handler500
from django.conf.urls.defaults import include
from django.conf.urls.defaults import patterns
from django.conf.urls.defaults import url
from django.conf import settings
from django.contrib import admin

admin.autodiscover()

if getattr(settings, 'ASKBOT_MULTILINGUAL', False) == True:
    from django.conf.urls.i18n import i18n_patterns
    urlpatterns = i18n_patterns('',
        (r'%s' % settings.ASKBOT_URL, include('askbot.urls'))
    )
else:
    urlpatterns = patterns('',
        (r'%s' % settings.ASKBOT_URL, include('askbot.urls'))
    )

urlpatterns += patterns('',
    (r'^admin/', include(admin.site.urls)),
    #(r'^cache/', include('keyedcache.urls')), - broken views disable for now
    (r'^settings/', include('askbot.deps.livesettings.urls')),
    (r'^followit/', include('followit.urls')),
    (r'^tinymce/', include('tinymce.urls')),
    (r'^robots.txt$', include('robots.urls')),
    url( # TODO: replace with django.conf.urls.static ?
        r'^%s(?P<path>.*)$' % settings.MEDIA_URL[1:],
        'django.views.static.serve',
        {'document_root': settings.MEDIA_ROOT.replace('\\','/')},
    ),
)

if 'rosetta' in settings.INSTALLED_APPS:
    urlpatterns += patterns('',
                    url(r'^rosetta/', include('rosetta.urls')),
                )
[root@ks4000391 liveaskbot0748]#

cant find this in the urls.py !!!:(

2013-02-27 15:59:23 -0500 asked a question direct to www.site.com and remove /questions

How to remove alias /questions so that the site will be direct www.site.com and not www.site.com/questions ?

Centos : dedicated server with python Django daemon

Thx

2013-02-21 03:07:38 -0500 answered a question No JSON object could be decoded

The file was exported with this command (python manage.py dumpdata > data.json) but importing is no success

:(

2013-02-20 10:58:20 -0500 asked a question No JSON object could be decoded
python manage.py loaddata  /root/forum/data.json
/usr/lib/python2.6/site-packages/Django-1.4.3-py2.6.egg/django/conf/__init__.py:75: DeprecationWarning: The ADMIN_MEDIA_PREFIX setting has been removed; use STATIC_URL instead.
  "use STATIC_URL instead.", DeprecationWarning)
/usr/lib/python2.6/site-packages/Django-1.4.3-py2.6.egg/django/core/cache/__init__.py:82: DeprecationWarning: settings.CACHE_* is deprecated; use settings.CACHES instead.
  DeprecationWarning
WARNING!!! You are using a 'locmem' (local memory) caching backend,
which is OK for a low volume site running on a single-process server.
For a multi-process configuration it is neccessary to have a production
cache system, such as redis or memcached.

With local memory caching and multi-process setup you might intermittently
see outdated content on your site.

Problem installing fixture '/root/forum/data.json': Traceback (most recent call last):
  File "/usr/lib/python2.6/site-packages/Django-1.4.3-py2.6.egg/django/core/management/commands/loaddata.py", line 190, in handle
    for obj in objects:
  File "/usr/lib/python2.6/site-packages/Django-1.4.3-py2.6.egg/django/core/serializers/json.py", line 47, in Deserializer
    raise DeserializationError(e)
DeserializationError: No JSON object could be decoded

How to Solve this ?

2013-02-19 03:33:03 -0500 received badge Famous Question (source)
2013-02-13 17:15:08 -0500 commented answer Export Import questions

is this the same way . to export questions from askbot 0.7.48 SQlite and import them to the same version askbot 0.7.48 with mysql based .??

2013-02-13 15:33:56 -0500 asked a question Export Import questions

How to export all questions from Askbot 0.7.43 with sqlite3 database and import them to other running askbot 0.7.48 with mysql database. ?

Thx

2013-02-13 15:32:00 -0500 asked a question export import data

How to export all questions from Askbot 0.7.43 with sqlite3 database and import them to other running askbot 0.7.48 with mysql database.

2013-02-13 10:52:13 -0500 answered a question Why do I ImportError: cannot import name signals?

Old Python. try Python > 2.6.0

2013-02-12 10:58:03 -0500 asked a question no such column: askbot_post.language_code
Request URL:    http://iticy.com:443/questions/
Django Version: 1.4.3
Exception Type: DatabaseError
Exception Value:    
no such column: askbot_post.language_code
Exception Location: /usr/lib/python2.6/site-packages/Django-1.4.3-py2.6.egg/django/db/backends/sqlite3/base.py in execute, line 344
Python Executable:  /usr/bin/python
Python Version: 2.6.6

How to fix this in easy steps please ?

2013-02-12 10:20:35 -0500 commented answer KeyError at /questions/

i have one word for you : Thanks. oh my god , my forum comes back

2013-02-12 10:14:12 -0500 commented answer KeyError at /questions/

you mean that i have to edit setting.py ? i see no GENERAL_SKIN_SETTINGS on this file ?

2013-02-12 04:43:56 -0500 answered a question KeyError at /questions/

any one have an answer of this ?

2013-02-07 05:04:23 -0500 received badge Editor (source)
2013-02-07 05:03:50 -0500 asked a question KeyError at /questions/

Upgraded from 07.43 to 0.7.48 manage.py syncdb manage.py migrate askbot 0160

manager runserver ip:port

i have this :

KeyError at /questions/
u'common'
Request Method: GET
Request URL:    http://xxxx.com:443/questions/
Django Version: 1.4.3
Exception Type: KeyError
Exception Value:    
u'common'
Exception Location: /opt/SITE-PROJECT/askbot/skins/loaders.py in get_skin, line 84
Python Executable:  /usr/bin/python
Python Version: 2.6.6

How to solve this?

2013-02-03 18:06:46 -0500 asked a question Could not post, because your karma is insufficient to publish links

i have a small test website. but normal users cannot post. with the above reason.

How to solve this and make posting links unlimited. Please explain in easy way . Thx

2013-02-01 16:57:31 -0500 answered a question manage.py migrate fatal error

Now . downloaded askbot 0.7.48

copied database sqlite backup from 0.7.43

i ran :

python manage.py syncdb

python manage.py migrate askbot 0160

python runserver host:port

Now i have this on the browser page :

DatabaseError at /
    database disk image is malformed
    Request Method: GET
    Request URL:    http://5.39.79.145:8081/
    Django Version: 1.4.3
    Exception Type: DatabaseError
    Exception Value:    
    database disk image is malformed
    Exception Location: /usr/lib/python2.6/site-packages/Django-1.4.3-py2.6.egg/django/db/backends/sqlite3/base.py in execute, line 344
    Python Executable:  /usr/bin/python
    Python Version: 2.6.6
    Python Path:    
    ['/root/forum',
     '/usr/lib/python2.6/site-packages/setuptools-0.6c11-py2.6.egg',
     '/usr/lib/python2.6/site-packages/pip-1.2.1-py2.6.egg',
     '/home/SITE-PROJECT',
     '/usr/lib/python2.6/site-packages/South-0.7.6-py2.6.egg',
     '/usr/lib/python2.6/site-packages/Coffin-0.3.7-py2.6.egg',
     '/usr/lib/python2.6/site-packages/lamson-1.1-py2.6.eg
2013-02-01 11:12:20 -0500 answered a question Adding Facebook login provider

i have no facebook /twitter icons in my register page. how to activate it . from settings, even after activating this option, still not work :

#CSRF_COOKIE_DOMAIN = DOMAIN_NAME

STATIC_ROOT = os.path.join(PROJECT_ROOT, "static")
STATICFILES_DIRS = (
    ('default/media', os.path.join(ASKBOT_ROOT, 'media')),
)

RECAPTCHA_USE_SSL = True

#HAYSTACK_SETTINGS
ENABLE_HAYSTACK_SEARCH = False
HAYSTACK_SITECONF = 'askbot.search.haystack'
#more information
#http://django-haystack.readthedocs.org/en/v1.2.7/settings.html
HAYSTACK_SEARCH_ENGINE = 'simple'

TINYMCE_COMPRESSOR = True
TINYMCE_SPELLCHECKER = False
TINYMCE_JS_ROOT = os.path.join(STATIC_ROOT, 'default/media/js/tinymce/')
TINYMCE_URL = STATIC_URL + 'default/media/js/tinymce/'
TINYMCE_DEFAULT_CONFIG = {
    'plugins': 'askbot_imageuploader,askbot_attachment',
    'convert_urls': False,
    'theme': 'advanced',
    'content_css': STATIC_URL + 'default/media/style/tinymce/content.css',
    'force_br_newlines': True,
    'force_p_newlines': False,
    'forced_root_block': '',
    'mode' : 'textareas',
    'oninit': "function(){ tinyMCE.activeEditor.setContent(askbot['data']['editorContent'] || ''); }",
    'plugins': 'askbot_imageuploader,askbot_attachment',
    'theme_advanced_toolbar_location' : 'top',
    'theme_advanced_toolbar_align': 'left',

How to fix this from setting.py ?

2013-02-01 09:13:44 -0500 received badge Student (source)