web-server

2006-07-03 Thread Luigi Pantano
how to use django like web-sever on linux? i have tried: python manage.py runserver localhost:80 but give an error on the selected port. if run for example: python manage.py runserver myIP:8080 the django site is not visible to other machine in the lan/web, why? --~--~-~--~~-

web server question

2014-09-22 Thread Paraskevi vogot
Hello everyone, I am beginner, I installed Python2.7 and Django and now I am in process off installing a database. I am about to install MySQL but I find it a little bit hard to install a web server (Appache) so I would like to ask if it would fine if I used XAMPP. Thank you -- You received

Re: web-server

2006-07-03 Thread Frankie Robertson
*Skipped why this is a really bad idea* This: python manage.py runserver 0.0.0.0:80 should do it, however if port 80 on that machine is open to the Internet then prepare to be horribly cracked/inefficient. On 03/07/06, Luigi Pantano <[EMAIL PROTECTED]> wrote: > > how to use django like web-sever

Re: web-server

2006-07-03 Thread Don Arbow
On Jul 3, 2006, at 2:56 PM, Luigi Pantano wrote: > > how to use django like web-sever on linux? > > i have tried: > > python manage.py runserver localhost:80 > > but give an error on the selected port. > > if run for example: > python manage.py runserver myIP:8080 > > the django site is not visibl

Django + Cherokee Web Server

2009-11-26 Thread hcarvalhoalves
I'm able to configure Cherokee to run my Django project correctly, using the included wizard. The problem is, if an exception is thrown, Cherokee just shows a "Unhandled Exception" page. I figured out that if I run fcgi with debug=true, then I get a stacktrace from Flup, but I wanted the default Dj

Re: web server question

2014-09-22 Thread Kamal Kaur
On Tue, Sep 23, 2014 at 5:39 AM, Paraskevi vogot wrote: > I find it a little bit hard to install a web server (Appache) s/Appache/Apache -- Kamaljeet Kaur -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from t

Re: web server question

2014-09-22 Thread Lachlan Musicman
Kamal, That should work fine, although you will still need to install Python if you are on a Windows platform. cheers L. On 23 September 2014 11:22, Kamal Kaur wrote: > On Tue, Sep 23, 2014 at 5:39 AM, Paraskevi vogot wrote: >> I find it a little bit hard to install a web server

Re: web server question

2014-09-22 Thread Kamal Kaur
On Tue, Sep 23, 2014 at 7:04 AM, Lachlan Musicman wrote: > That should work fine, o.O I just pointed out the wrong spellings. > although you will still need to install Python > if you are on a Windows platform. Exactly! -- Kamaljeet Kaur kamalkaur188.wordpress.com -- You received this mess

django embedded web server

2006-10-10 Thread Picio
Hello, I saw in the official docs that It's not a good practice to use the django embedded web server in any production envionment. I have a little Intranet with 4 workstation and a home made server (based on an old pc). There are no reason to think about security in this LAN because It'

Django with Cherokee web server

2009-10-06 Thread hcarvalhoalves
I recently found this web server (http://www.cherokee-project.com/) that claims to be "the fastest web server". I'm not sure that holds true for *CGI, but at least for static content they have some impressive benchmarks. Despite the claimings, it's an interesting alternative

Re: Django + Cherokee Web Server

2009-11-26 Thread Jarek Zgoda
figured out that > if I run fcgi with debug=true, then I get a stacktrace from Flup, but > I wanted the default Django behaviour (showing debug pages when > DEBUG=TRUE on settings.py), similar to Apache or the development > server. This is not the response from web server, nor Django -

Re: Django + Cherokee Web Server

2009-11-27 Thread hcarvalhoalves
he development > > server. > > This is not the response from web server, nor Django - this page is   > served by Flup. This indicates the error at the stage of loading   > Django machinery (eg. some problem with settings.py) and can not be   > passed to Django's error hand

Re: Django + Cherokee Web Server

2009-11-30 Thread Jarek Zgoda
"Unhandled Exception" page. I figured out that >>> if I run fcgi with debug=true, then I get a stacktrace from Flup, >>> but >>> I wanted the default Django behaviour (showing debug pages when >>> DEBUG=TRUE on settings.py), similar to Apache or the de

Re: Django + Cherokee Web Server

2009-11-30 Thread Gary D
go behaviour (showing debug pages when > > > DEBUG=TRUE on settings.py), similar to Apache or the development > > > server. > > > This is not the response from web server, nor Django - this page is   > > served by Flup. This indicates the error at the stage of loa

Django and Tornado web server

2010-03-28 Thread nameless
Hi at all, I need to create a high performance comet chat for my college project. I have found Tornado that is a non-blocking webserver used by FriendFeed for real-time features: http://www.tornadoweb.org/ Maybe this is a stupid question but I am very newbie and I want to know how to use Tornado a

Linux web server + MSSQL database

2007-04-24 Thread [EMAIL PROTECTED]
All, I have Django running on a Linux machine, and I want to connect to a MSSQL database running on a windows machine. Is there any progress on making this possible using pymssql or something else? I have been searching around the documentation and haven't found anything. Thanks for the help.

django built-in web server

2007-08-09 Thread james_027
hi, Can I use the django's built in web server in an intranet enviroment where the maximum users could be not more than 50 users? I am just asking this for the purpose for easy deployment :). I am very newbie, and trying to avoid apache THanks

Re: django embedded web server

2006-10-10 Thread Malcolm Tredinnick
On Tue, 2006-10-10 at 12:01 +0200, Picio wrote: > Hello, > I saw in the official docs that It's not a good practice to use the > django embedded web server in any production envionment. > I have a little Intranet with 4 workstation and a home made server > (based on an old

Re: django embedded web server

2006-10-10 Thread Picio
006-10-10 at 12:01 +0200, Picio wrote: > > Hello, > > I saw in the official docs that It's not a good practice to use the > > django embedded web server in any production envionment. > > I have a little Intranet with 4 workstation and a home made server > > (based

Re: django embedded web server

2006-10-10 Thread Picio
Hello, I got the point thanks. Which one is more easy to configure between Apache + mod_python + django and Lighttpd +flup + fastcgi + django? The platform will be a pIII 650 with windows2000 sp4, max user no. is 4. Picio --~--~-~--~~~---~--~~ You received this me

Re: django embedded web server

2006-10-10 Thread Joseph Heck
I've been using Apache+Mod_Python+Django on windows without any trouble at all. The biggest "trick" is to set the configuration to enable the mod_python module and pass requests through to the right handler. I don't know if it'll help you, but here's some of the example config pieces I use on my ow

Re: django embedded web server

2006-10-10 Thread Picio
WoW thanks, I'll give it a try. Is lighttpd setup more easy? Picio 2006/10/11, Joseph Heck <[EMAIL PROTECTED]>: > I've been using Apache+Mod_Python+Django on windows without any trouble at > all. The biggest "trick" is to set the configuration to enable the > mod_python module and pass requests t

Re: django embedded web server

2006-10-10 Thread Joseph Heck
just depends on what you're used to. I've not done lighttpd on windows, so I couldn't say. Since I had Apache, there didn't seem much reason to investigate and use Lighttpd+Flup on Windows.I use Lighttpd+Flup+Django on TextDrive, and it runs fine there - but that's a unix system and most of the pie

Re: django embedded web server

2006-10-11 Thread Rob Hudson
base WSGI web server implementation (in django/core/servers/basehttp.py, class ServerHandler) is multi-threaded (or at least it has the variable that suggests so: wsgi_multithread = True). I'm not clear on what would have to change to make this happen. If all of Django would need to be change

Re: django embedded web server

2006-10-11 Thread Russell Keith-Magee
, and the developers of those webservers spend their time trying to make them faster, lighter and more secure. We _could_ spend a lot of effort trying to improve Django's internal webserver, but all we would end up doing is creating YAWS (Yet Another Web Server) - while simultaneously diverti

Re: django embedded web server

2006-10-15 Thread Istvan Albert
Russell Keith-Magee wrote: > > I'm sure it could, but I'm almost certain it wont. The only problem with this is that some kind of sites cannot be tested with the development server. If the site streams back the output and incrementally builds it then it cannot for example read in the css even th

Re: django embedded web server

2006-10-16 Thread Rob Hudson
I'm also of the opinion that Django can only benefit by making the built-in development web server better. If I can develop Django projects without the need to install Apache (or other web server) and use SQLite, that's awesome. For static files I can just use something like this:

Re: django embedded web server

2006-10-18 Thread Steve M
I've been following this and related threads with some interest. I think it would be nice to have a pure python (requiring no setup of, e.g., Apache) webserver included with Django that was more capable than the current Django development server. I recently stumbled across this: http://pythonpast

Re: django embedded web server

2006-10-18 Thread Steven Armstrong
On 10/18/06 19:57, Steve M wrote: > I've been following this and related threads with some interest. I > think it would be nice to have a pure python (requiring no setup of, > e.g., Apache) webserver included with Django that was more capable than > the current Django development server. I recentl

Django built-in web server?

2005-12-21 Thread Michael Hipp
The documentation says "Django comes with its own Web server for development purposes." I'd like to use this for development and experimentation. But I can find nothing about where it lives or how to configure and run it. Any pointers? Thanks, Michael

Re: Django with Cherokee web server

2009-10-06 Thread Graham Dumpleton
On Oct 7, 3:34 pm, hcarvalhoalves wrote: > I recently found this web server (http://www.cherokee-project.com/) > that claims to be "the fastest web server". I'm not sure that holds > true for *CGI, but at least for static content they have some > impressive benchm

Re: Django with Cherokee web server

2009-10-07 Thread hcarvalhoalves
ic content). Instead, I'm looking for advice from someone who already deployed Django with Cherokee. On Oct 7, 2:41 am, Graham Dumpleton wrote: > On Oct 7, 3:34 pm, hcarvalhoalves wrote: > > > > > I recently found this web server (http://www.cherokee-project.com/) > > th

Re: Django with Cherokee web server

2009-10-07 Thread Leonel Nunez
> Thanks for the advice, but I already know how to optimize django apps > (documentation covers this well), so I'm not seeking advice on this. > Neither I'm willing to use Cherokee so I get a magic performance boost > for my app alone (while it is indeed faster than Apache for serving > static con

Re: Django with Cherokee web server

2009-10-07 Thread Oli Warner
On Wed, Oct 7, 2009 at 5:34 AM, hcarvalhoalves wrote: > I wanted to know if someone here on the list is using or used Cherokee > with Django, if there's any performance improvements over Apache + > mod_wsgi/mod_python (specially for concurrent requests), and if there > are any gotchas with Django

Re: Django with Cherokee web server

2009-10-07 Thread Graham Dumpleton
On Oct 8, 9:38 am, Oli Warner wrote: > On Wed, Oct 7, 2009 at 5:34 AM, hcarvalhoalves > wrote: > > > I wanted to know if someone here on the list is using or used Cherokee > > with Django, if there's any performance improvements over Apache + > > mod_wsgi/mod_python (specially for concurrent r

Re: Django with Cherokee web server

2009-10-07 Thread Oli Warner
> > People quite happily run Django on memory starved VPS systems using > Apache/mod_wsgi *with optional nginx front end* for static files. > Apache is woefully slow and inefficient at static serving. A static reverse proxy is not optional for sane people. And I'd rather just admin one server. -

Re: Django with Cherokee web server

2009-10-08 Thread Tom Evans
On Wed, 2009-10-07 at 23:54 +0100, Oli Warner wrote: > People quite happily run Django on memory starved VPS systems > using > Apache/mod_wsgi with optional nginx front end for static > files. > > Apache is woefully slow and inefficient at static serving. A static

Re: Django with Cherokee web server

2009-10-08 Thread Oli Warner
> > FUD. You just think it is slow and inefficient because you have never > configured it correctly. > Analogy time. Gather round, children. You buy a car. The dealer said it can do 0 to 60mph in five seconds and does 80 miles per gallon. You buy it for these reasons but when you receive it and t

Re: Django with Cherokee web server

2009-10-08 Thread Tom Evans
On Thu, 2009-10-08 at 16:23 +0100, Oli Warner wrote: > FUD. You just think it is slow and inefficient because you > have never > configured it correctly. > > Analogy time. Gather round, children. > > You buy a car. The dealer said it can do 0 to 60mph in five seconds > an

Re: Django with Cherokee web server

2009-10-08 Thread Oli Warner
> > To stick with your analogy, it actually *is* like buying a car and being > surprised you don't get 0-60 in 5 seconds and 80 mpg, but only because > you will only drive it in second gear. And then you blame the dealer.. > Sure. Cherokee's an automatic ;p > >From the way you talk about Apache,

Re: Django with Cherokee web server

2009-10-08 Thread Rudy Lattae
Folks, I think we should bring this back to the actual question and not derail the thread and ram it head first into the FUD vs FUD mountain. hcarvalhoalves original question was (and still remains): "I wanted to know if someone here on the list is using or used Cherokee with Django, if there's a

Re: Django with Cherokee web server

2009-10-09 Thread Max Battcher
Rudy Lattae wrote: > * Have you used Cherokee with Django? I swapped a VPS a few months back from Apache + mod_python to lighttpd (FCGI) then to nginx then to Cherokee (SCGI)... I got somewhat frustrated with configuration editing and ugly/useless wiki documentation, so ultimately the deciding

Re: Django and Tornado web server

2010-03-28 Thread Graham Dumpleton
On Mar 29, 7:12 am, nameless wrote: > Hi at all, > I need to create a high performance comet chat for my college project. > I have found Tornado that is a non-blocking webserver used by > FriendFeed for real-time features:http://www.tornadoweb.org/ > > Maybe this is a stupid question but I am ve

Updating files without web server restart

2017-03-13 Thread Thiago Parolin
We have a small webserver that is used by many projects (php) from many users. Now, i am hosting a django project. The problem is: - when user changed some file in his project, the apache continues serving old file until restart the httpd service. - the users don't have sudo access, and i don't

Django + Apache Web server on Windows

2016-04-04 Thread asimkon
I would like to configure Django with Apache web server on Windows using XAMPP or Wamp. I looked over the Web until i came across the following video https://www.youtube.com/watch?v=VOkXG0jL_8U. Do you think i will have problem following all the steps along? From python installation, Django

Re: Linux web server + MSSQL database

2007-04-24 Thread mralokkp
Check out this link http://www.time-travellers.org/shane/howtos/MS-SQL-Express-Python-HOWTO.html You need some tweaks Regards Alok Tiwari On Apr 25, 2:13 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > All, > > I have Django running on a Linux machine, and I want to connect to a > MSSQL

Re: django built-in web server

2007-08-10 Thread james_027
Hi, > > > I am very newbie, > > and trying to avoid apache > > why? > Just in case a problem occur, I think it could be more easy to troubleshoot it without being a apache expert? Or if threre's a patch for the client's program that need to be apply it could be much easier? THanks james --~--

Re: django built-in web server

2007-08-10 Thread Kenneth Gonsalves
On 10-Aug-07, at 12:19 PM, james_027 wrote: > Can I use the django's built in web server in an intranet enviroment > where the maximum users could be not more than 50 users? I am just > asking this for the purpose for easy deployment :). sure > I am very newbie, > and tr

Re: django built-in web server

2007-08-10 Thread Jay Parlar
On 8/10/07, james_027 <[EMAIL PROTECTED]> wrote: > > hi, > > Can I use the django's built in web server in an intranet enviroment > where the maximum users could be not more than 50 users? I am just > asking this for the purpose for easy deployment :). I am very

Re: django built-in web server

2007-08-10 Thread TheMaTrIx
afraid of installing Apache, its not that hard. On Aug 10, 1:25 pm, "Jay Parlar" <[EMAIL PROTECTED]> wrote: > On 8/10/07, james_027 <[EMAIL PROTECTED]> wrote: > > > > > hi, > > > Can I use the django's built in web server in an intranet enviro

Re: django built-in web server

2007-08-10 Thread John Lee
and using > Apache is simple. Just a few lines of config in httpd.conf and you're > done. Avoiding Apache isn't going to make life easier for you. > > > hi, > > > Can I use the django's built in web server in an intranet enviroment > > where the max

Re: django built-in web server

2007-08-10 Thread Justin Johnson
't require any extra URL information for serving media. Django's test server isn't going to cut it for deployment and using Apache is simple. Just a few lines of config in httpd.conf and you're done. Avoiding Apache isn't going to make life easier for you. > hi, &

Re: django built-in web server

2007-08-10 Thread Collin Grady
No, this will not work well at all. Django's dev server is single-threaded, and as such, nobody else could use it while it's serving a request - if even 2 people were browsing around at any speed, you'd start running into delays. Apache is easy. Use it :) --~--~-~--~~~-

Re: django built-in web server

2007-08-10 Thread Kenneth Gonsalves
On 10-Aug-07, at 1:19 PM, james_027 wrote: >> >>> I am very newbie, >>> and trying to avoid apache >> >> why? >> > > Just in case a problem occur, I think it could be more easy to > troubleshoot it without being a apache expert? Or if threre's a patch > for the client's program that need to be a

Re: django built-in web server

2007-08-10 Thread Justin Johnson
is simple. Just a few lines of config in httpd.conf and you're >> done. Avoiding Apache isn't going to make life easier for you. >> >> >>> hi, >>> >>> Can I use the django

Re: Django built-in web server?

2005-12-21 Thread Joseph Kocherhans
On 12/21/05, Michael Hipp <[EMAIL PROTECTED]> wrote: The documentation says "Django comes with its own Web server for developmentpurposes." I'd like to use this for development and experimentation. But I canfind nothing about where it lives or how to configure and run it.

Re: Django built-in web server?

2005-12-21 Thread Michael Hipp
Joseph Kocherhans wrote: On 12/21/05, *Michael Hipp* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: The documentation says "Django comes with its own Web server for development purposes." I'd like to use this for development and experimentat

Re: Updating files without web server restart

2017-03-13 Thread Avraham Serour
you may use uwsgi and tell uwsgi to gracefully reload, it won't even close any eventual tcp sockets, they will wait until the new code is loaded, users will never now you reloaded the application On Mon, Mar 13, 2017 at 3:25 PM, Thiago Parolin wrote: > We have a small webserver that is used by m

Re: Updating files without web server restart

2017-03-13 Thread Antonis Christofides
Are you using mod_wsgi? http://modwsgi.readthedocs.io/en/develop/user-guides/reloading-source-code.html has information on how to have it reload the code. Antonis Christofides +30-2118000592 (work) +30-6979924665 (mobile) On 2017-03-13 15:25, Thiago Parolin wrote: > We have a small webserver that

Re: Updating files without web server restart

2017-03-13 Thread Thiago Parolin
Thanks a lot to all! I will try uwsgi and i will read about mod_wsgi to know who is the best to my needs and will solve my problem. 2017-03-13 10:29 GMT-03:00 Avraham Serour : > you may use uwsgi and tell uwsgi to gracefully reload, it won't even close > any eventual tcp sockets, they will wait

Re: Updating files without web server restart

2017-03-13 Thread Antonis Christofides
Hello, 1) My opinion is that uwsgi is difficult without offering any equivalent advantage. The WSGI server I usually recommend is Gunicorn. I've explained this in Which WSGI server should I use? If you start Gunicorn with th

Re: Django + Apache Web server on Windows

2016-04-05 Thread Avraham Serour
you won't have problems until you try On Mon, Apr 4, 2016 at 8:12 PM, asimkon wrote: > > I would like to configure Django with Apache web server on Windows using > XAMPP or Wamp. I looked over the Web until i came across the following > video https://www.youtube.com/watch?

installing django scripts on a web server

2015-12-18 Thread maringire ringaz
How do i install django-cms(or any other web app) on xampp or runserver using pycharm -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@g

Outside a web server, as a service

2008-06-02 Thread Alexandre Parenteau
Hi, I'm a newbie with Django, and I'm having trouble accessing django database outside the web server. I'm using mod_python+apache+MySQL without any problem. However I need for my project to *also* access the database *outside* of mod_python. I wrote a script service.py which

Use django's models without running web server

2007-05-07 Thread hoamon
Because i can't find related post here, so i post this example. maybe someone else need. Some times, you just want to use the useful models of django without thinking any sql statement. Maybe you want to run a script to know which user's birthday in your database is today, this little job should

interoperability of django with another web server

2019-07-22 Thread CodingManiac
I have created a website using django framework but now i want it operable in other framework too. How can I do that? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an ema

how to deploy Django on the web server?

2009-08-07 Thread justin jools
This has been driving me nuts for a month. I wanted to use a free web server to do development testing and have found : 000webhost.com and heliohost.com which apparently support Python, but what about Django? Do I install that myself? I have read the django book on deployment chapter but find

404 POST using SCGI closes web server connection.

2011-04-02 Thread David Korz
The trac system just rejected my submission as spam so I'm going to keep it short and follow up with more detail if anyone cares. Using SCGI a POST to a url handled by django that doesn't exist causes flup to close the connection between the web server (lighttpd in my case) and dj

Re: installing django scripts on a web server

2015-12-18 Thread Vernon D. Cole
On Friday, December 18, 2015 at 4:55:16 AM UTC-7, maringire ringaz wrote: > > How do i install django-cms(or any other web app) on xampp or runserver > using pycharm > First, I would say that xampp is a non-starter, because it does not have support for Python. [besides that, I prefer nginx and

compiling files when installing to a web server

2008-03-29 Thread andy baxter
hello, I have just installed a demo of an app I'm writing to a web server. There seems to be an intermittent error, and I'm wondering if this is to do with the permissions on the directories - I've tried to set the permissions so it can create .pyc files, but this doesn't

RE: Outside a web server, as a service

2008-06-02 Thread Mat
Alexandre Parenteau Sent: 02 June 2008 08:33 To: django-users@googlegroups.com Subject: Outside a web server, as a service Hi, I'm a newbie with Django, and I'm having trouble accessing django database outside the web server. I'm using mod_python+apache+MySQL without any problem.

Re: Outside a web server, as a service

2008-06-02 Thread Karen Tracey
On Mon, Jun 2, 2008 at 3:33 AM, Alexandre Parenteau <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm a newbie with Django, and I'm having trouble accessing django > database outside the web server. > > I'm using mod_python+apache+MySQL without any problem.

Re: Outside a web server, as a service

2008-06-04 Thread alex
Thanks Karen! alex On Jun 2, 5:18 am, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Mon, Jun 2, 2008 at 3:33 AM, Alexandre Parenteau <[EMAIL PROTECTED]> > wrote: > > > > > > > > > Hi, > > > I'm a newbie with Django, and I&

Re: Use django's models without running web server

2007-05-09 Thread hoamon
After i posted this comment, i found the keyword is "use models outside djagno", not "without web server". so many posts talk about this topic. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: interoperability of django with another web server

2019-07-22 Thread gilwell muhati
Hello @CodingManiac, What do you mean other frameworks, they are a zillion frameworks out there. PHP Frameworks? Java? JavaScript? Perl? etc etc *Regards,Gilwell Muhati | +254 710 739 116 | * *~~“The mind is its own place and in itself can make a heaven of hell, a hell of heaven…”~~John Milton

Re: interoperability of django with another web server

2019-07-23 Thread CodingManiac
Other framework in python On Tue, 23 Jul 2019, 11:09 am gilwell muhati, wrote: > Hello @CodingManiac, > What do you mean other frameworks, they are a zillion frameworks out > there. PHP Frameworks? Java? JavaScript? Perl? etc etc > > > > > *Regards,Gilwell Muhati | +254 710 739 116 | * > *~~“The

Re: interoperability of django with another web server

2019-07-23 Thread Kasper Laudrup
Hi CodingManiac, On 23/07/2019 14.44, CodingManiac wrote: Other framework in python Your question is really not very precise and you it's hard for anyone to tell you "how you can do that", but you can try to keep your "non django specific logic" in separate python modules so you can at leas

Re: interoperability of django with another web server

2019-07-23 Thread vignesh karthik
dont need databse files only App files and setting file On Wed, Jul 24, 2019 at 3:58 AM Kasper Laudrup wrote: > Hi CodingManiac, > > On 23/07/2019 14.44, CodingManiac wrote: > > Other framework in python > > > > Your question is really not very precise and you it's hard for anyone to > tell you

Re: interoperability of django with another web server

2019-07-24 Thread CodingManiac
Thank you for your reply On Wed, 24 Jul 2019, 3:58 am Kasper Laudrup, wrote: > Hi CodingManiac, > > On 23/07/2019 14.44, CodingManiac wrote: > > Other framework in python > > > > Your question is really not very precise and you it's hard for anyone to > tell you "how you can do that", but you ca

How to embed django into a custom web server

2008-12-12 Thread Jim
Hi, I'm experimenting with building a web server with embedded python and I'd like to setup and include Django. The server works by loading a main python script into memory at startup and then script registers a callback routine to handle incoming messages. The script looks some

Re: how to deploy Django on the web server?

2009-08-07 Thread lzantal
On Aug 7, 12:06 pm, justin jools wrote: > This has been driving me nuts for a month. > > I wanted to use a free web server to do development testing and have > found : 000webhost.com and heliohost.com which apparently support > Python, but what about Django? Do I install tha

Re: how to deploy Django on the web server?

2009-08-07 Thread Dan Harris
happy to help you get set up and running. Cheers, Dan On Aug 7, 3:34 pm, lzantal wrote: > On Aug 7, 12:06 pm, justin jools wrote:> This > has been driving me nuts for a month. > > > I wanted to use a free web server to do development testing and have > > found : 000

Re: how to deploy Django on the web server?

2009-08-07 Thread justin jools
7, 12:06 pm, justin jools wrote: > > This has been driving me nuts for a month. > > > > I wanted to use a free web server to do development testing and have > > found : 000webhost.com and heliohost.com which apparently support > > Python, but what about Django? Do I in

Re: how to deploy Django on the web server?

2009-08-07 Thread Vitaly Babiy
12:06 pm, justin jools wrote:> > This has been driving me nuts for a month. > > > > > I wanted to use a free web server to do development testing and have > > > found : 000webhost.com and heliohost.com which apparently support > > > Python, but what about Django?

Re: how to deploy Django on the web server?

2009-08-07 Thread Milan Andric
w can it be so difficult? Django is renowned as an easy > rapid development framework so why is it so difficult to deploy? > > > > On Fri, Aug 7, 2009 at 8:34 PM, lzantal wrote: > > > On Aug 7, 12:06 pm, justin jools wrote: > > > This has been driving me nuts for

Re: how to deploy Django on the web server?

2009-08-07 Thread Peter Herndon
On 08/07/2009 05:25 PM, Milan Andric wrote: > Justin, it's not. Have you seen the deployment docs? > > http://docs.djangoproject.com/en/dev/howto/deployment/#howto-deployment-index > > -- > Milan > > On Aug 7, 1:56 pm, justin jools wrote: > >> thanks for the reply but I have access to a serv

Re: how to deploy Django on the web server?

2009-08-07 Thread Daniel Roseman
On Aug 7, 9:56 pm, justin jools wrote: > thanks for the reply but I have access to a server for free so I wanted to > set it up myself, how can it be so difficult? Django is renowned as an easy > rapid development framework so why is it so difficult to deploy? > You haven't said why you think it'

Re: how to deploy Django on the web server?

2009-08-08 Thread justin jools
antal wrote: > > > > > On Aug 7, 12:06 pm, justin jools wrote: > > > > This has been driving me nuts for a month. > > > > > > I wanted to use a free web server to do development testing and have > > > > found : 000webhost.com and hel

Re: how to deploy Django on the web server?

2009-08-08 Thread Eric Abrahamsen
> > > > > > > On Fri, Aug 7, 2009 at 8:34 PM, lzantal wrote: > > > > > On Aug 7, 12:06 pm, justin jools > wrote: > > > > This has been driving me nuts for a month. > > > > > > I wanted to use a free web server to do development

Re: how to deploy Django on the web server?

2009-08-08 Thread justin jools
ok well thanks for your reply: first I have free access and they have told me python is installed but it's not working as I ran a hello world test script which doesbt execute. That is the first of my problems. My second problem is installing Django... and third configuring the django scripts to

Re: how to deploy Django on the web server?

2009-08-08 Thread Larrik Jaerico
I'll bet a lot of the mailing list will faint when they see this, but I've gotten it to work pretty easily by just dropping the django directory directly into my project directory. On Aug 8, 8:24 am, justin jools wrote: > ok well thanks for your reply: > > first I have free access and they have

Re: how to deploy Django on the web server?

2009-08-08 Thread Eric Abrahamsen
On Aug 8, 2009, at 8:24 PM, justin jools wrote: > ok well thanks for your reply: > > first I have free access and they have told me python is installed > but it's not working as I ran a hello world test script which doesbt > execute. That is the first of my problems. > > My second problem is

Re: how to deploy Django on the web server?

2009-08-09 Thread justin jools
o thanks for that :) as soon as my administrator finally sorts out Python script executing for me - omg! ,I'll try that On Sat, Aug 8, 2009 at 6:43 PM, Larrik Jaerico wrote: > > I'll bet a lot of the mailing list will faint when they see this, but > I've gotten it to work pretty easily by just d

Re: how to deploy Django on the web server?

2009-08-11 Thread derek
On Aug 9, 7:49 pm, justin jools wrote: > o thanks for that :) > as soon as my administrator finally sorts out Python script executing for me > - omg! ,I'll try that Not sure if this is off-topic or not, but I see Google is also offering free Django deployment on their App Engine: http://code.goo

Session ID generated each time web server is restarted

2009-05-15 Thread Spk
with pending COMMIT/ROLLBACK" even though there is nothing to commit in the case of a GET. It seems that everytime I restart the web server, I get a new session ID which is why it thinks that there is data to be commited. The browser still has the cookie for the previous session ID, and it is

Re: compiling files when installing to a web server

2008-03-29 Thread andy baxter
andy baxter wrote: > hello, > > I have just installed a demo of an app I'm writing to a web server. > There seems to be an intermittent error, and I'm wondering if this is to > do with the permissions on the directories - I've tried to set the > permissions

Re: compiling files when installing to a web server

2008-03-29 Thread andy baxter
andy baxter wrote: > andy baxter wrote: > >> hello, >> >> I have just installed a demo of an app I'm writing to a web server. >> There seems to be an intermittent error, and I'm wondering if this is to >> do with the permissions on the director

Re: compiling files when installing to a web server

2008-03-29 Thread Michael Wieher
andy baxter wrote: > > > >> hello, > >> > >> I have just installed a demo of an app I'm writing to a web server. > >> There seems to be an intermittent error, and I'm wondering if this is > to > >> do with the permissions on the director

Re: compiling files when installing to a web server

2008-03-29 Thread andy baxter
Michael Wieher wrote: > Well, if you could describe the error in detail, hopefully with > copy/paste, traceback etc. it would be easier to determine if it was > due to memory issues or misconfiguration... > What was happening is every now and again mod_python (not django) would generate an erro

Re: compiling files when installing to a web server

2008-03-29 Thread Michael Wieher
I had an intermittent error when using just apache/mod_python, but haven't had it happen since i started w/django On Sat, Mar 29, 2008 at 1:18 PM, andy baxter < [EMAIL PROTECTED]> wrote: > > Michael Wieher wrote: > > Well, if you could describe the error in detail, hopefully with > > copy/paste,

  1   2   3   >