On 12 October 2012 04:25, Waseem Akram <[email protected]> wrote: > I want a tutorial in Mod_WSGI from scratch which uses MySQL and > authentication storing username and password . > If possible post some links where we can get samples of mod_wsgi with books
You should start with getting a WSGI hello world script going. http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide http://code.google.com/p/modwsgi/wiki/WhereToGetHelp?tm=6#Conference_Presentations There is lots of documentation, so start reading at: http://code.google.com/p/modwsgi/wiki/WhereToGetHelp?tm=6#Conference_Presentations As for the rest of what you want it is unclear what it is you want plus your particular use case is likely to be different to anything else that someone else has wanted so you are unlikely to find a step by step set of instructions so you can avoid needing to read the full documentation. If you are wanting to harness HTTP basic authentication of Apache itself, you can read: http://code.google.com/p/modwsgi/wiki/AccessControlMechanisms If you are talking about forms based login/session mechanisms, then go investigate a web framework that provides such a thing and use that framework to create your application. Graham -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
