Re: WSGIScriptAlias without access to apache config?

2009-07-07 Thread Durand
Hmm, that is a shame. I guess I'll try to get it working at my end and then ask them to add the wsgi file so their virtual host. Thanks for your help. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users"

Re: WSGIScriptAlias without access to apache config?

2009-07-06 Thread Durand
gt; > On Tuesday 07 July 2009 05:10:38 Durand wrote: >> Thanks for replying! >> The host I'm using (vlexo.com) is really good and very friendly, so I can >> theoretically ask for an admin to help but I'd rather figure it out myself. >> I actually asked for wsgi to

Re: WSGIScriptAlias without access to apache config?

2009-07-06 Thread Durand
00, Graham Dumpleton wrote: > > > > On Jul 7, 8:17 am, Durand wrote: >> Hi, >> >> I'm wondering whether I can use django in a shared hosting environment >> where I don't have access to the main apache configuration. > > For cheap, large scale c

WSGIScriptAlias without access to apache config?

2009-07-06 Thread Durand
Hi, I'm wondering whether I can use django in a shared hosting environment where I don't have access to the main apache configuration. I've read that it is not possible to use a .htaccess but are there any other methods? Is there a way I can just get wsgi to load django into memory without WSGISc

Re: Django turns?

2009-04-22 Thread Sergio Durand
Hi, Visit swingtime project: http://code.google.com/p/django-swingtime/ Maybe it's what you are looking for... -- Sergio Durand Juanjo Conti escreveu: > Hi! > > I wonder know if there is a Django app suitable to handle turns as the > ones given by a doctor to his paci

Re: Running django on a web hosting account

2009-04-07 Thread Sergio Durand
atik escreveu: > Is there any free hosting site that provide django support? > I know 2 django free hostings: - Google App Engine[1] - you will need adapt somethings in your code. - Always Data[2] - they offer django free host with database and ssh support but it's in french and you will have

Re: Creating a Symbolic Link using Windows

2009-03-06 Thread Sergio Durand
d "***NOT actual severhost info" Look into your settings.py files more specifically on database settings. Tip: use sqlite3 for learning django. It's very simple database easy to configure. Sergio Durand --~--~-~--~~~---~--~~ You received this mes

Re: Creating a Symbolic Link using Windows

2009-03-03 Thread Sergio Durand
snaggz03 escreveu: > Thanks, Sergio. I have now confirmed that dajngo-admin.py is located > in C:\Python2.6\Scripts . So the symlink wasn not what was keepig my > admin site from working properly or at all. I was following along > with the django tutorial from www.djangoproject.com , modifying i

Re: Creating a Symbolic Link using Windows

2009-03-03 Thread Sergio Durand
Hi, snaggz03 escreveu: > I am attempting to create a database using django on a server which I > did not create so... I was told Python was set up on the server. How > do I determine if djano-admin.py is on my system path? If it is not, > then how do I go about "symlinking to django-admin.py f

Re: How to import DoesNotExist exception ???

2008-12-09 Thread Sérgio Durand
{'poll': p}) but, you can use "get_object_or_404(, )" shortcut and catch a http404 exception... it's more clean =) Sergio Durand Info Cascade escreveu: > I just want to catch the exception thrown when the query returns nothing. > Thanks, that

Re: ' Change History' for audit, compliance

2008-11-11 Thread Sérgio Durand
Hi, You can use AuditTrail[1] (i'm using now) or django-revision[2] (i'm planning use this). []'s Sergio Durand [1] http://code.djangoproject.com/wiki/AuditTrail [2] http://code.google.com/p/django-reversion/ Lincoln_Consulting escreveu: > Hello > > Every moden a

Re: DeprecationWarning: Non-ASCII character in models.py

2008-09-30 Thread Sérgio Durand
Hi Nick, Insert the following code as first line of your models.py (and other .py files) # -*- coding: utf-8 -*- []'s Sergio Durand Nick escreveu: > Hi, > > I've recently noticed that I'm getting the following in my Apache > error log... > > DeprecationWarni

Re: where is my pythonpath

2008-09-18 Thread Sérgio Durand
would be this you are looking for ? python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()" []'s Sergio Durand KillaBee escreveu: > I need to edit my pythonpath, but where it? > > > > --~--~-~--~~~

Re: Problems getting manage.py syncdb to work

2008-09-18 Thread Sérgio Durand
hi, try to connect with postgres using psql utility: psql -h localhost -U -W if you don't have success login, the problem could be on postgres config. []'s Sergio Durand airjaw escreveu: > Hi, I'm having a bit of trouble getting past the "manage.py syncdb" >

Re: Audit Trail

2008-08-21 Thread Sérgio Durand
#x27;syncdb'.. or, sqlall , you should see all the sql generated by django. follows my (very) simple example: http://dpaste.com/hold/72943/ Try again with a simple example like that ... if did't work, send the error message... Good luck!!! ;) Sergio Durand erikcw escreveu: > Hi Sergio, &

Audit Trail

2008-08-19 Thread Sérgio Durand
missing **kwargs arguments in some handler functions (because changes made in r8223). Maybe this problem is very simple (in fact i think it is), but i've spent several hours (and learned a lot of things too) to get this working. This was my first code contribution and i'm very g