itf/itf
2015-08-02 13:48:09 +05:30
..
allauth email invites 0.8 2012-12-14 13:30:13 +01:00
app fix adding added by to inline relations, get entity image from gallery where available 2015-08-01 15:41:02 +05:30
bestpractices fix info_dict param issues 2013-06-17 13:58:09 -07:00
emailer fix erang 2014-04-21 15:44:48 +05:30
events fix image thumbs on event people / groups, add some categories 2015-08-02 13:48:09 +05:30
festival fix bibliography info_dict issue 2014-04-21 15:37:30 +05:30
frontpage forgot to add utils.py 2014-01-22 13:44:53 +05:30
imagestore add imagestore code / model modification / form 2012-08-31 15:57:50 +05:30
insidepages hide invalid tabs, set default ordering for models 2015-08-01 16:35:33 +05:30
itfcore ugh 2013-09-23 20:57:20 +05:30
itfprofiles make some fields in production non-required 2015-08-02 13:10:59 +05:30
mediagallery complete front-end view for media galleries 2013-01-03 22:27:42 +05:30
migrations oops, syntax 2014-10-18 18:31:14 +05:30
newsfeed resolved conflicts 2011-10-08 03:03:05 -04:00
offersneeds exclude user field from form 2012-08-09 04:39:07 +05:30
padmavideos padma videos list 2012-06-20 22:39:59 +05:30
pages search stuff 2012-03-28 01:58:28 +05:30
profiles resolved conflicts 2011-10-08 03:03:05 -04:00
quotes resolved conflicts 2011-10-08 03:03:05 -04:00
scriptbank remove added by on script form, fix script template if license not provided, make email field for person non-unique 2015-08-01 16:03:04 +05:30
static fix form width on login / register forms 2014-11-15 14:37:29 -08:00
templates fix image thumbs on event people / groups, add some categories 2015-08-02 13:48:09 +05:30
tmp box_titles, erang images, etc 2012-02-14 12:35:20 +05:30
__init__.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
monitor.py added stuff to tree 2010-03-03 19:58:00 +05:30
README.txt resolved conflicts 2011-10-08 03:03:05 -04:00
search_sites.py resolved conflicts 2011-10-08 03:03:05 -04:00
settings.py settings changes to work with django 1.4 2014-10-19 00:58:05 +05:30
TODO resolved conflicts 2011-10-08 03:03:05 -04:00
urls.py uncomment comments urls since they are needed for comments on entities 2015-08-01 14:28:35 +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.