Re: setting up openlayers proxy.cgi

2012-10-16 Thread Sibi Prabakaran
Would you tell the steps you followed to make that work? Thanks in advance. Regards, Sibi On Tuesday, November 15, 2011 12:14:53 PM UTC+5:30, Daryl wrote: > > Thanks for that Brett. > I ended up finding what I was after, django-httpproxy. > https://bitbucket.org/bkroeze/django-http-proxy > I

Re: setting up openlayers proxy.cgi

2011-11-14 Thread Daryl
Thanks for that Brett. I ended up finding what I was after, django-httpproxy. https://bitbucket.org/bkroeze/django-http-proxy I can now make remote uri calls from javascripts on my Local Django. Cheers. On Nov 15, 4:22 am, Brett Epps wrote: > Django itself won't run a CGI script for you.  You'll

Re: setting up openlayers proxy.cgi

2011-11-14 Thread Brett Epps
Django itself won't run a CGI script for you. You'll need to run it with another web server like Apache or nginx. (Usually the default installation of Apache has a cgi-bin directory where you can place CGI scripts.) You can run one of these servers at the same time as running manage.py run serve

setting up openlayers proxy.cgi

2011-11-13 Thread Daryl
I need to know how to setup a proxy.cgi script on my Local Django Development setup and can't seem to find the right information to do it. The closest i've gotten to running any cgi script is when it just displays the source code on the webpage...which isn't exactly 'running' is it? Is it ok to ru