it/itf
2011-09-28 22:18:29 +05:30
..
api init no longer returns page 2011-04-11 03:34:55 +05:30
app er, ups 2011-09-10 08:33:22 +05:30
bestpractices js for no_has_list 2011-09-28 16:57:19 +05:30
boxes request context for inner page 2011-08-11 16:28:39 +05:30
erang bad, bad.. 2011-09-10 07:43:14 +05:30
erang_organised comments notify email addresses 2011-07-24 12:02:20 +05:30
festival js for no_has_list 2011-09-28 16:57:19 +05:30
frontpage request context for inner page 2011-08-11 16:28:39 +05:30
insidepages search foo 2011-09-28 22:18:29 +05:30
itfcore added search for left column, changed template a bit, etc. etc. 2011-08-25 17:18:49 +05:30
newsfeed added newsfeed and quotes 2011-03-06 18:23:47 +05:30
profiles added profiles 2011-03-06 18:23:57 +05:30
quotes added newsfeed and quotes 2011-03-06 18:23:47 +05:30
scriptbank buttons, testing, etc 2011-01-04 11:57:10 +05:30
static search foo 2011-09-28 22:18:29 +05:30
templates search foo 2011-09-28 22:18:29 +05:30
user added user 2011-03-06 18:21:28 +05:30
__init__.py added stuff to tree 2010-03-03 19:58:00 +05:30
aldensNotes.txt added stuff to tree 2010-03-03 19:58:00 +05:30
dropandcreatedb.py added stuff to tree 2010-03-03 19:58:00 +05:30
manage.py added stuff to tree 2010-03-03 19:58:00 +05:30
meetingdata.json added stuff to tree 2010-03-03 19:58:00 +05:30
monitor.py added stuff to tree 2010-03-03 19:58:00 +05:30
README.txt added stuff to tree 2010-03-03 19:58:00 +05:30
settings.py bad, bad.. 2011-09-10 07:43:14 +05:30
TODO added stuff to tree 2010-03-03 19:58:00 +05:30
urls.py added search for left column, changed template a bit, etc. etc. 2011-08-25 17:18:49 +05:30

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

db name = 'theatre' - change if different.

Install Solango:
  svn checkout http://django-solr-search.googlecode.com/svn/trunk/ django-solr-search
  cd django-solr-search
  sudo python setup.py install

  You will also need to install Solr, follow instructions here:
    http://www.screeley.com/djangosolr/install.html#install

Install Django-Multilingual:
  svn checkout http://django-multilingual.googlecode.com/svn/trunk/ django-multilingual
  cd django-multilingual
  sudo python setup.py install

Install Djangologging for debugging (svn checkout http://django-logging.googlecode.com/svn/trunk/ django-logging-read-only):
  svn checkout http://django-logging.googlecode.com/svn/trunk/ django-logging-read-only djangologging
  sudo mv djangologging/ /var/lib/python-support/python2.6/

For Django-Extensions and Graphing Tool:
  sudo apt-get install graphviz graphviz-dev
  sudo easy_install pygraphviz
  Download and install django_extensions: http://code.google.com/p/django-command-extensions/downloads/list
  Add django_extensions to your INSTALLED_APPS in settings.py
  Command to generate PNG visualization of your models: ./manage.py graph_models -a -g -o my_project_visualized.png  
  



 mysqld --verbose --help | grep character-set

Youll probably see:

character-set-server              latin1

You want this to be uft8. To modify it, edit your my.conf file ( /etc/mysql/my.conf on ubuntu ), adding the following lines to the appropriate sections:

[client]
…
default-character-set = utf8

[mysqld]
…
character-set-server=utf8
collation-server=utf8_unicode_ci
init_connect=set collation_connection = utf8_unicode_ci;

Now restart mysql:


sudo /etc/init.d/mysql restart

And alter your existing tables to use the utf8 encoding:


mysql your_db_name

alter table your_table_name convert to character set utf8;

And that should do it.