Re: Model that only needs 1 data row

2008-12-01 Thread CLIFFORD ILKAY
edProduct, self).save() def __str__(self): return self.product.name+' - '+self.product.product_numberx -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 smime.p7s Description: S/MIME Cryptographic Signature

Re: Logic for stylesheets

2008-12-10 Thread CLIFFORD ILKAY
your base page template. {% block base_css %} {% if content %} {% else %} {% endif %} {% endblock %} -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 smime.p7s Description: S/MIME Cryptographic Signature

Re: Django sub-sites and email

2009-01-16 Thread CLIFFORD ILKAY
ou to host their applications with you, provided you don't undercharge, you'll have plenty of room to afford a dedicated server. Feel free ontact me off-list if you need help with this. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 smime.p7s Description: S/MIME Cryptographic Signature

Re: Forwarding emails through django

2009-01-16 Thread CLIFFORD ILKAY
for any database that is supported by both Postfix and Django. I'm sure it would be possible with LDAP, too. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 smime.p7s Description: S/MIME Cryptographic Signature

Re: comparisons with java framework

2009-02-11 Thread CLIFFORD ILKAY
easier, show your better way by contributing code. If enough people see the merits of your way, they'll adopt it and you'll have done a great service. There is no reason to harangue Russ or anyone else about this. You have the power to change things. Use it constructively. -- Regards, Cli

Re: Faster Database?

2009-02-27 Thread CLIFFORD ILKAY
o be faster than MySQL. The beauty of Django is that unless you've written custom SQL, you're a syncdb away from seeing for yourself. Either way, in case you haven't changed them, the default configurations for both databases are for low-resource machines and definitely aren't bui

Re: Django development workflow

2009-02-28 Thread CLIFFORD ILKAY
actually more useful in development than a web server when you're prototyping and debugging. QA and production should be as close to being identically-configured as practical, same version of Python, same web server, same database, etc. and shouldn't use the built-in development server. --

Re: Django development workflow

2009-03-01 Thread CLIFFORD ILKAY
Gour wrote: >>>>>> "Clifford" == CLIFFORD ILKAY writes: > Clifford> To keep it simple, we use PostgreSQL in development, QA, and > Clifford> production and on those projects where we're forced to use > Clifford> MySQL due to client requiremen

Re: getting started...with django

2009-03-04 Thread CLIFFORD ILKAY
the steps exactly and by the end of the tutorial, the pieces will fall into place. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 smime.p7s Description: S/MIME Cryptographic Signature

Re: Accessing the development server from another machine.

2009-03-04 Thread CLIFFORD ILKAY
network is even an option with some virtualization schemes so you must ensure that OS X and the Windows VM can see one another on the network first. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 smime.p7s De

Re: Accessing the development server from another machine.

2009-03-04 Thread CLIFFORD ILKAY
or some other external? > And if it does know, why would it care? The dev server is only meant for development use so the default is to have it listen only to requests from localhost, not from any other host. You have to explicitly specify which address(es) you want the dev server to listen o

Re: Accessing the development server from another machine.

2009-03-04 Thread CLIFFORD ILKAY
To which machine is 192.168.1.117 bound? -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 smime.p7s Description: S/MIME Cryptographic Signature

Re: Accessing the development server from another machine.

2009-03-04 Thread CLIFFORD ILKAY
when you run manage.py runserver 0.0.0.0:8000 look like? -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 smime.p7s Description: S/MIME Cryptographic Signature

Re: Has anyone used the django database as a backend for openldap?

2009-03-05 Thread CLIFFORD ILKAY
have read about it, Penrose <http://penrose.safehaus.org/penrose/> seems like it would be a good way of proxying user information in a database back-end and presenting it as an LDAP directory. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.c

Re: Email interface to django app

2009-08-04 Thread CLIFFORD ILKAY
;http://trac-hacks.org/wiki/MailToTracPlugin> both have ways of doing this. You may be able to incorporate them into your code, or at least borrow ideas. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 --~--~---

Re: Django in Vista

2009-08-15 Thread CLIFFORD ILKAY
gi umask=000 pidfile=$PIDFILE socket=$SOCKET method=$METHOD --pythonpath=$PYTHONPATH (Watch the line wrapping above. Everything from /usr/bin to PYTHONPATH below it is on one line.) (*) The above is for deployment via fcgi using the nginx web se

Re: mod_wsgi question

2009-08-15 Thread CLIFFORD ILKAY
es#WSGIPythonHome> -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" g

Re: Does 1and1 Hosting provide Django prerequisites? [was: installing a development environment on a 1and1.com shared hosting.]

2009-04-21 Thread CLIFFORD ILKAY
OS, or if you prefer something more bleeding edge, Fedora or a non-LTS Ubuntu on which you can run whatever you want, such as nginx with fcgi or Apache with mod_wsgi. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 smime.p7s Description: S/MIME Cryptographic Signature

Re: What is available IN Django compared to other frameworks?

2009-06-08 Thread CLIFFORD ILKAY
n to Drupal, which is neither lean nor simple. Both have very active and helpful communities. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 smime.p7s Description: S/MIME Cryptographic Signature

Re: What is available IN Django compared to other frameworks?

2009-06-08 Thread CLIFFORD ILKAY
good despite PHP, not because of it. Drupal should get high marks for "out of box" experience. One isn't left looking at a bare, unstyled home page as they would be with Django. To get from that bare, unstyled home page isn't nearly as much work as people think and is cer

Re: Replicating Google Groups in Django

2009-10-23 Thread CLIFFORD ILKAY
27;s feasible for a PHP-based application, it's certainly feasible for you to do it in Django. As for how all emails can be seen via a web interface, one option is to have Django subscribe to the lists in question and use an IMAP client library to access the mailbox for that subscr

Re: Replicating Google Groups in Django

2009-10-23 Thread CLIFFORD ILKAY
dates/deletes into a database. I wanted to know how Lamson handled virtual domains and virtual mailboxes so I clicked on the "Deploying Lamson Level 2" link <http://lamsonproject.org/docs/deploying_lamson_level_2.html> only to see "Coming soon..." on that page. That o

Re: Replicating Google Groups in Django

2009-10-24 Thread CLIFFORD ILKAY
s whereas Mailman is quite monolithic, which makes for a challenging integration. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 --~--~-~--~~~---~--~~ You received this message becaus

Re: Making the case for Django (vs. Drupal)

2009-11-16 Thread CLIFFORD ILKAY
re may be more spelling > mistakes in the Drupal letter, but that is because it is a letter and > django is an alphabet... A long and complex report written by someone who has good communications skills and who knows English fluently is likely to have fewer spelling mistakes and grammatical

Re: why wordpress

2010-04-15 Thread CLIFFORD ILKAY
r a Django equivalent? Plenty of choices here: <http://blog.montylounge.com/2010/02/10/eleven-django-blog-engines-you-should-know/>. I used django-article on a recent project and found it easy to incorporate. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <

Re: why wordpress

2010-04-15 Thread CLIFFORD ILKAY
ge organization maintains Wordpress, I wouldn't want to be responsible for maintaining an installation of Wordpress without being paid well for support because you will be on a constant upgrade treadmill. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <

Re: Spammer named 'Ashley J. Sands' who harvested everyone's email from djangopeople.net

2010-05-15 Thread CLIFFORD ILKAY
t. If you're going to work for free, do it for an open source project or a charity. Hang around on IRC and help people. Blog, answer questions on this list, build sites, and have fun. The work will follow. Once again I must say that I am sorry, Ashley Don't be so hard on yourself. It&#x

Re: Server on diffferent machine

2010-05-16 Thread CLIFFORD ILKAY
t across the SSH tunnel to port 3306 of your-mysql-server.com. If you're running MySQL on localhost and it's configured to listen on 3306, just pick some other port above 1024 that isn't used, e.g. , in which case, you'd do: ssh -L 9999:localhost:3306 your-mysql-serve

Re: Server on diffferent machine

2010-05-16 Thread CLIFFORD ILKAY
. However, when I try to ping the IP, it fails. Strange. Not really. Some sysadmins configure their servers to not reply to pings. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because y

Re: drupal and django being friends

2010-07-02 Thread CLIFFORD ILKAY
ace of your Django app or Drupal will just intercept the request and show a 404 page. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subscribed to the Google Groups "D

Re: Is Django right for what I am trying to do

2010-07-08 Thread CLIFFORD ILKAY
amework ties all this together. For the purpose of the tutorial and for writing apps, you really don't need to know the details of how it does that but of course if you want to, you can. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com&

Re: Is Django right for what I am trying to do

2010-07-08 Thread CLIFFORD ILKAY
On 07/08/2010 06:07 PM, Bradley Hintze wrote: Thanks, that helps but I wish Django had more tutorial than one. There is no shortage of Django tutorials and screencasts. Just Google for them. Showmedo.com, Vimeo, Blip.tv, and YouTube all have Django resources. -- Regards, Clifford Ilkay

Re: Major Tech Start up – NYC –Python Devel oper - Django/ Python Java/J2ee

2010-07-11 Thread CLIFFORD ILKAY
ppropriately. Those who seem to feel the need to verbally lynch people for posting job offers here need to look within themselves to understand why they react in such a negative fashion. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.

Re: about some ideas for our very largest project

2010-07-21 Thread CLIFFORD ILKAY
full power of Python available to you and as such, you can build virtually any type of application you want, web, embedded, GUI, server, system, web service, etc. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You rec

Re: Different Django instances running on the same server

2010-08-12 Thread CLIFFORD ILKAY
ython. virtualenvwrapper.project is also quite worthwhile. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, se

Re: mod_wsgi+Apache+Postregsql on Windows

2010-08-14 Thread CLIFFORD ILKAY
cient for development. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, se

Re: Proto-newbie needs Django for running an app, not for dev work

2010-09-17 Thread CLIFFORD ILKAY
It's best that you use a Django-friendly hosting provider. The Django wiki has lots of them and you're always welcome to contact me off-list, too. We host Django apps we build and for other developers so we can get going quickly. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge S

Re: question about involve "vncserver" command with django

2010-11-09 Thread CLIFFORD ILKAY
will be next to nothing. It's faster and more secure than VNC, too. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subscribed to the Google Groups "Django user

Re: Django based issue tracker

2010-11-10 Thread CLIFFORD ILKAY
present cycles of two weeks into which we put tasks in the queue (tickets). We use the "owner" of the ticket for "ball in court" handling. Coupled with a custom ticket report, all project participants have a very convenient and quick overview of project status. -- Regards,

Re: django to php

2010-11-30 Thread CLIFFORD ILKAY
gards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com

Re: Django performance on Amazon EC2

2010-01-12 Thread CLIFFORD ILKAY
rantee you that your bottleneck isn't Django. It's possible to get thousands of requests per second with a properly configured Django web application where there is aggressive caching, well-tuned queries, etc. Benchmark locally on a machine where you have greater control over the hardware

Re: Scope of an app

2010-02-18 Thread CLIFFORD ILKAY
CRM application? Apps are usually broken down by functional requirements so once you give some thought to that, it will become clearer. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message

Re: "ImportError: No module named django" with MacPorts

2010-03-03 Thread CLIFFORD ILKAY
n probably unravel the mystery from there. You'll find virtualenv and virtualenvwrapper are invaluable for such things. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are sub

Re: send_mass_mail()

2010-03-10 Thread CLIFFORD ILKAY
ve a mature body of code to handle bounces, unsubscribes (if you wish), etc. Mailman is written in Python so it's easy to incorporate with your code at a lower level, if you need that. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://din

Re: send_mass_mail()

2010-03-10 Thread CLIFFORD ILKAY
On 03/10/2010 06:22 PM, onoxo wrote: hi! I know about Mailman but i have to send unique mail to each user, kind of confirmation with system generated url. <http://wiki.list.org/display/DOC/So+what+is+this+VERP+stuff> -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON

Re: Django ORM

2010-03-23 Thread CLIFFORD ILKAY
database engine and take responsibility for maintaining referential integrity, go ahead and use raw SQL, though you might have to work at it if you have a real database. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -

Re: Django ORM

2010-03-23 Thread CLIFFORD ILKAY
! What are these unnecessary queries you speak of? Can you show the SQL that is actually being sent to your back-end, which I'm guessing is MySQL? -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received t

Re: Newbie Issue: Creating a new django project

2010-04-05 Thread CLIFFORD ILKAY
ere a way to change this? I am on views and UrlConfs chapter and there has been no mention on changing the module configuration. Why are you specifying postgresql for the database_engine when you have psycopg2 installed? It should be postgresql_psycopg2, as the comment clearly indicates. -- R

Re: CMS based Website using Django

2010-04-09 Thread CLIFFORD ILKAY
tro or via easy_install. Then: pip install django-mptt You should Google for using pip with virtualenv. While you're at it, read up on (and use) virtualenvwrapper. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410

Re: OS X Server upgrade (10.6.3) can't load psycopg2 from apache2/modpython

2010-04-14 Thread CLIFFORD ILKAY
ywhere! <http://www.saltycrane.com/blog/2009/05/notes-using-pip-and-virtualenv-django/> virtualenvwrapper is also quite useful. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subs

Django Presentation at PyGTA Meeting on Feb. 20

2007-02-19 Thread Clifford Ilkay
s quite feasible. If you plan to attend, please let me know so that I can let David at LinuxCaffe know how many people to expect. -- Regards, Clifford Ilkay Dinamis Corporation 3266 Yonge Street, Suite 1419 Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 --~--~-

django-compressor throwing a 500 when DEBUG = False

2012-02-01 Thread CLIFFORD ILKAY
s that compressor is supposed to be (and apparently is) combining/compressing are in the directory defined by settings.STATIC_ROOT. In base.html, I have: {% load compress %} {% compress css %} {% endcompress %} What am I missing? -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto

Re: Django Development environment

2012-02-04 Thread CLIFFORD ILKAY
this combination, I'd certainly consider it but I haven't seen one, yet. Note: I like and use vim, too. It's just not even close to what I would call an "IDE". -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +

Re: sending django email via gmail

2012-03-06 Thread CLIFFORD ILKAY
handle multiple simultaneous connections. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this grou

Re: Trouble setting up website with mysql as backend

2012-03-18 Thread CLIFFORD ILKAY
“strict mode,” it means a mode where at least one of STRICT_TRANS_TABLES or STRICT_ALL_TABLES is enabled. ### -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subscribed to

Re: High Traffic

2012-04-16 Thread CLIFFORD ILKAY
ng but Django isn't going to make inefficient code or poor architectural choices, like MyISAM tables, magically better. You need to do some real profiling, not some contrived test that proves that running slow queries is, well... slow. -- Regards, Clifford Ilkay Dinamis 1419-3230 Yonge

Re: Canadian Django Meetings?

2012-04-25 Thread CLIFFORD ILKAY
upcoming meetings, join the mailing list . The next one is May 17. -- Regards, Clifford Ilkay Dinamis 1419-3230 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subscribed to the Google Groups "Django users"

Re: The template tag {% load tz %}

2012-04-30 Thread CLIFFORD ILKAY
which I can do this loading by default in all the templates? Hi Rajat, You can use sed. See: <http://www.grymoire.com/Unix/Sed.html#uh-39>. -- Regards, Clifford Ilkay Dinamis 1419-3230 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received

Re: question about migrating php project

2012-06-07 Thread CLIFFORD ILKAY
;d encourage to take the leap now if you're thinking about doing it anyway. -- Regards, Clifford Ilkay Dinamis 1419-3230 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subscribed to the Google Groups "D

Re: Django hosting on heroku - any experiences?

2012-06-11 Thread CLIFFORD ILKAY
d-is-not-for-you/>. He makes some very good points. -- Regards, Clifford Ilkay Dinamis 1419-3230 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subscribed to the Google Groups "Django users" group.

Re: locating the functionality behind the HTML element

2012-06-28 Thread CLIFFORD ILKAY
ts of information, you'll be able to mentally trace a request as it's handled by urls.py, dispatched to a view function, which in turn feeds a template. You can work forward from the URL or backward from the template. -- Regards, Clifford Ilkay Dinamis 1419-3230 Yonge St. Toronto, ON Canada

Re: Best practices for open sourcing a Django project?

2012-10-14 Thread CLIFFORD ILKAY
ttings.py ## local_settings.py can vary from instance of the application to another and those sensitive things like passwords are never kept under revision control. settings.py is consistent regardless of whether it's a development, testing, or production deployment. If you find yourse

Re: django debugger

2013-11-07 Thread CLIFFORD ILKAY
On 11/07/2013 02:19 PM, Harjot Mann wrote: > Is it possible to view the sql queries working at the backend of > django from browser directly? Django debug toolbar <https://github.com/django-debug-toolbar/django-debug-toolbar> will do that. -- Regards, Clifford Ilkay 647-778-8

Re: Django website migration from live server to localhost

2013-11-09 Thread CLIFFORD ILKAY
-install-pip-on-windows> and <http://docs.python-guide.org/en/latest/starting/install/win/>. -- Regards, Clifford Ilkay 647-778-8696 Dinamis <http://dinamis.com> -- You received this message because you are subscribed to the Google Groups "Django users" group. To un

Re: Django website migration from live server to localhost

2013-11-09 Thread CLIFFORD ILKAY
installed in your virtualenv. That package might not be available to your virtual environment, assuming you're using virtualenv. (If you're not, you should be.) -- Regards, Clifford Ilkay 647-778-8696 Dinamis <http://dinamis.com> -- You received this message because you are s

Re: Mailing list service written in Django?

2010-12-15 Thread CLIFFORD ILKAY
as an eventual replacement for GroupServer, though it's certainly not as feature-complete as GroupServer. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subscri

Re: Django vs Postgres Connection

2010-12-17 Thread CLIFFORD ILKAY
e 127.0.0.1 and 5432 as per the comments in the code above or change listen_address="*" in postgresql.conf and restart PG. The former will make a socket connection. You're trying to make a TCP/IP connection to PostgreSQL as you have it above now and PG is configured by default

Re: Payment Gateways

2011-03-07 Thread CLIFFORD ILKAY
ll get you discounts. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dja

Re: Payment Gateways

2011-03-08 Thread CLIFFORD ILKAY
'd have to go through a PCI compliance audit. By the way, we've been through it multiple times. For the most part, it's perfunctory. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You receiv

Re: Django app and Amazon AWS (beginner)

2011-03-09 Thread CLIFFORD ILKAY
ou would rather have someone else get this setup for you so that you can concentrate on your development. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com> +1 416-410-3326 -- You received this message because you are subscribed to the Go

Re: .Net Developer Job Opening - Valencia, CA

2011-04-01 Thread CLIFFORD ILKAY
, Telecom,Government and other industries. [snip] Thanks *Vignesh *Sr Talent Acquisation Consultant "Acquisation"... Did you mean accusation? Inquisition? Acquisition? :) -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M4N 3P6 <http://dinamis.com>

Re: Changing website version written in python+django

2014-08-01 Thread CLIFFORD ILKAY
.1.9 in the test environment before we can upgrade Mezzanine in production, too. If we weren't using virtualenv, that would have been an ordeal. -- Regards, Clifford Ilkay 647-778-8696 Dinamis <http://dinamis.com> -- You received this message because you are subscribed to the Google Gr

Re: custom query app

2014-11-13 Thread Clifford Ilkay
y. > > Does any precedent for this exist? Hi John, What you're looking for is called "faceted search" or "faceted navigation". Django Haystack <http://django-haystack.readthedocs.org/en/latest/> is one implementation of this. -- Regards, Clifford Ilkay -- You

How mature is Microsoft SQL Server support by the ORM?

2013-11-21 Thread CLIFFORD ILKAY
tps://pypi.python.org/pypi/django-sqlserver>. The latest version of SQL Server it supports is 2008r2, which would be a problem given that some sites are already running newer versions. How mature is this? Are there any limitations or show-stoppers that you're aware of? -- Regards, Clifford Ilkay 6

Re: How mature is Microsoft SQL Server support by the ORM?

2013-11-22 Thread CLIFFORD ILKAY
t and have to repair the data. Hi Fred, Is that because you had a legacy database with Windows-1252 characters in them? In other words, is this because of the data or because of django-pyodbc? -- Regards, Clifford Ilkay 647-778-8696 Dinamis <http://dinamis.com> -- You received this mess

Re: How mature is Microsoft SQL Server support by the ORM?

2013-11-22 Thread CLIFFORD ILKAY
On 11/22/2013 05:47 AM, Anssi Kääriäinen wrote: > Check out https://bitbucket.org/Manfre/django-mssql/overview - my > understanding is that it is well maintained and supports also 2012. Thank you Anssi. -- Regards, Clifford Ilkay 647-778-8696 Dinamis <http://dinamis.com> --

Re: virtualenv on Windows

2014-02-03 Thread CLIFFORD ILKAY
ted project given that the Fedora/Red Hat installer is called Anaconda and is written in Python. -- Regards, Clifford Ilkay 647-778-8696 Dinamis <http://dinamis.com> -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscr

Re: django and amazon web services

2014-03-01 Thread CLIFFORD ILKAY
had two network interfaces, one for the public Internet and another for the internal network in the VPC, so the NFS cluster was not exposed to the Internet. -- Regards, Clifford Ilkay 647-778-8696 Dinamis <http://dinamis.com> -- You received this message because you are subscribed to the

Re: Django TCP Socket Communication

2016-06-16 Thread CLIFFORD ILKAY
You can read more about Django Channels in a blog post <https://blog.heroku.com/archives/2016/3/17/in_deep_with_django_channels_the_future_of_real_time_apps_in_django> by Jacob Kaplan-Moss. My understanding is that Channels will be integrated in Django core at some point. -- Regards, Cli

Re: Migrate django project to eclipse/pydev ide

2015-12-22 Thread Clifford Ilkay
nv, all you have to do is go to the project properties, select "PyDev - Interpreter/Grammar", "Click here to configure an interpreter not listed." and add the Python binary for your venv. -- Regards, Clifford Ilkay +1 647-778-8696 -- You received this message because

Re: Migrate django project to eclipse/pydev ide

2015-12-30 Thread CLIFFORD ILKAY
On 30/12/15 02:00 PM, Gary Roach wrote: On 12/22/2015 04:53 PM, Clifford Ilkay wrote: On 22/12/15 07:05 PM, Andrew Farrell wrote: Could you also tell us: 1) Why you need to switch to Eclipse specifically rather than PyCharm <https://www.jetbrains.com/pycharm/>, SublimeText