Re: Intermittent "Can't initialize character set latin1 errors" after centos 6 install

2015-03-31 Thread zignorp
We've also gotten "can't initialize utf8" errors in the same intermittent time period. OperationalError: (2019, "Can't initialize character set utf8 (path: /usr/share/mysql/charsets/)") -- You received this message because you are subscribed to the Google Groups "Django users" group. To un

Intermittent "Can't initialize character set latin1 errors" after centos 6 install

2015-03-31 Thread zignorp
Hello, We have an application that doesn't have much user interaction, mostly list displays that has been stable for quite some time. We haven't changed it since moving to django 1.6.5 but centos was just upgraded from 5 to 6 on the server we need to work on. After this we started noticing interm

Re: lost admin on upgrade to django 1.3

2011-07-30 Thread zignorp
Thanks all, the last install worked fine last night, fixed deprecations and once I relocate tinymce I'll be good to go, W -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/

Re: lost admin on upgrade to django 1.3

2011-07-29 Thread zignorp
Actually I'm not using virtualenv, I just installed the new version on my mac tar xzvf Django-1.3.tar.gz cd Django-1.3 sudo python setup.py install and it overwrote the older version in python/2.6/site-packages/django (I have 1.1 running on my notebook, that's how I checked where the damn adm

Re: lost admin on upgrade to django 1.3

2011-07-29 Thread zignorp
No, I haven't. I think it has to do with the way the admin templates are loaded. I do notice that in my django 1.1 install there is an existing templates directory in site-packages/django/contrib/admin but in my 1.3 install there is no templates directory. So I think that's the problem, I'm try

lost admin on upgrade to django 1.3

2011-07-29 Thread zignorp
Hello, I just upgraded to 1.3 and thought all was well until I tried to access LOCALHOST/admin/ Can anyone tell me why I'm getting this exception Exception Type: TemplateDoesNotExist Exception Value: admin/login.html ? Was working fine in the older version. -- You received this message beca

Re: Path issue with tinymce and MEDIA_ROOT

2009-08-22 Thread zignorp
is not breaking the admin, it's just displaying as a regular textarea, so I can still work on what I'm working on while I get this sorted out. Maybe there's a clue there. It's very likely that there's something elementary that I'm overlooking! So my directory st

Re: django-tinymce not appearing in admin

2009-08-20 Thread zignorp
Thanks so much, Kenneth, Wendy On Aug 19, 9:22 pm, Kenneth Gonsalves wrote: > On Thursday 20 Aug 2009 9:42:33 am zignorp wrote: > > > Can you post the example of Setting the Media nested class with the > > TinyMCE media? > > I'm in exactly the same place, > >

Path issue with tinymce and MEDIA_ROOT

2009-08-20 Thread zignorp
Hello, I am working on the development server. I am still trying to wrap my head around MEDIA_ROOT, MEDIA_URL, and get an idea of best practices. I'm trying to implement tinymce in the admin, and I'm having a path issue. I put tinymce in my project folder (django-tinymce 1.5) and then put tiny_

Re: django-tinymce not appearing in admin

2009-08-19 Thread zignorp
Hello, Can you post the example of Setting the Media nested class with the TinyMCE media? I'm in exactly the same place, Thanks, Wendy On Aug 14, 3:15 pm, diogobaeder wrote: > Kenneth, > > Setting the Media nested class with the TinyMCE media worked! :-) > > Thanks for the help, and sorry for th

Re: textarea in admin

2009-08-15 Thread zignorp
I just solved the first part, I was using charField, and I should have been using textField. I'm hoping that the data type in the sqlite db remains the same, there is varchar and text, but I'm thinking it should be varchar. On Aug 15, 12:55 am, zignorp wrote: > I just solved the 2

Re: textarea in admin

2009-08-15 Thread zignorp
ea, though. Thanks, Wendy On Aug 15, 12:39 am, zignorp wrote: > Hello, > I'm reading all about using tinymce in django's admin to replace a > textarea, which is great, but I'm still trying to learn how to get the > admin to display my description field as a textarea.  

textarea in admin

2009-08-15 Thread zignorp
Hello, I'm reading all about using tinymce in django's admin to replace a textarea, which is great, but I'm still trying to learn how to get the admin to display my description field as a textarea. I'm reading the documentation about the ModelAdmin Options, but I'm not quite getting that part. I

Re: adding a model to show up in admin

2009-08-10 Thread zignorp
Thank you so much Malcolm, I knew I was missing something elementary. Thanks for pointing it out. Cheers, Wendy On Aug 10, 8:58 pm, Malcolm Tredinnick wrote: > On Mon, 2009-08-10 at 20:43 -0700, zignorp wrote: > > Hello, > > I just added a model to models.py, > > > c

adding a model to show up in admin

2009-08-10 Thread zignorp
Hello, I just added a model to models.py, class Topic (models.Model): topic = models.CharField(max_length=180, blank=True, null=True) def __unicode__(self): return self.topic I can see it in the model that's calling it: class Film(models.Model): topic = m

Re: Getting Started, tutorial newbie

2009-08-06 Thread zignorp
figured it out, but I'm not sure I can articulate what I did. I had to start the shell first, then import my model. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send e

Getting Started, tutorial newbie

2009-08-06 Thread zignorp
Hello, I'm going through the tutorial when I have time. A few weeks back, I created the polls app, was able to retrieve data and use the admin interface and everything was beautiful. Now I'm trying to catch up where I left off and am having problems. When I do the runserver command, it tells me

Re: poll tutorial admin question

2009-06-09 Thread zignorp
Thanks so much for explaining, Russ. I am going to print this out so I can fully wrap my head around it. Home > App > Model > Instance I'm new to the concept of models, this is a big help. Wendy On Jun 9, 6:59 am, Russell Keith-Magee wrote: > On Tue, Jun 9, 2009 at 8:34

poll tutorial admin question

2009-06-08 Thread zignorp
Hello, I'm getting going with the tutorial, it's so exciting to see the admin panel, but I've got a problem with the breadcrumbs. So I'm working from this page: http://docs.djangoproject.com/en/dev/intro/tutorial02/#intro-tutorial02 and when I select my poll to change, it says: Home › Polls › Poll

Getting started on mac

2009-06-03 Thread zignorp
Hello, I've just installed the development version in leopard on the mac, and when I did this step: "On Unix-like systems, create a symbolic link to the file django-trunk/ django/bin/django-admin.py in a directory on your system path, such as /usr/local/bin. For example: ln -s `pwd`/django-trunk

Re: Getting started on mac

2009-06-03 Thread zignorp
Thanks Alex! That's just what I wanted to know, could I switch easily. I would rather put off some of that configuration time! W On Jun 3, 3:14 pm, Alex Gaynor wrote: > On Wed, Jun 3, 2009 at 5:12 PM, zignorp wrote: > > > I just fixed this and it's working swimmingl

Re: Getting started on mac

2009-06-03 Thread zignorp
king right with django, or just trying my first project using sql light. I am using mysql in a MAMP install already. Any thoughts on this would be appreciated. Thanks, Wendy On Jun 3, 2:35 pm, zignorp wrote: > Hello, > I've just installed the development version in leopard on the mac,