Re: Looking for IDE + FTP

2011-02-11 Thread jose antunes
Try Komodo Edit 5 It suports ftp/sftp, it's free and supports python Great editor just no design view. On Fri, Feb 11, 2011 at 9:55 PM, Jon J wrote: > As for a suggestion with an editor, I've been using gedit + extensions > for my whole career. It's fast, lightweight, and supports some great > s

Re: new Django-Python can't get to sqlite

2010-08-14 Thread jose antunes
I have recently had the same issue. The problem was a python sqlite3 library missing, by the name "_sqlite3.so". If that is missing it wont work. It can be found if present in the python directory, under the lib_dynload/ directory. Like this for exemple: /usr/lib/python26/lib_dynload/_sqlite3.so O

Re: error loading sqlite3 module

2010-07-29 Thread jose antunes
thanks very much, Installing the libraries did it. 2010/7/29 Alexandre González > You need to install the python sqlite libraries. > > On Thu, Jul 29, 2010 at 15:27, jose antunes wrote: > >> Can anyone please help figuring out why I get t

error loading sqlite3 module

2010-07-29 Thread jose antunes
Can anyone please help figuring out why I get the following error: django.core.exceptions.ImproperlyConfigured: Error loading sqlite3 module: No module named _sqlite3 Using MySql works fine. But not with sqlite3, Sqlite is installed, and both python/sqlite3 and django/db/backends/sqlite3 exist. i

Re: CSS admin panel when deploy django application on Apache2

2009-06-23 Thread jose antunes
usually that problem is resolved by creating a .htaccess file in the directory were the css resides with AddType /text/css .css because otherwise the server transfers the css as text/html. In the case of django the problem may be also because the css file for the admin panel is outside of the serv