dave's not here wrote: > I'm trying to help out a friend in a bind whose programmer is no > longer reachable, and have a few newbie questions. I've just started > working with both python and django, and am working my way thru the > python and django tutorials; my background is with perl and php.
I also come from perl and PHP and now prefer to not work with anything
but python. Good luck!
> Is there an equavalent to php's phpinfo() -- I'm trying to figure out
> which version of django is running on the server.
[EMAIL PROTECTED] djr_home]$ python
Python 2.4.3 (#1, Mar 14 2007, 18:51:08)
[GCC 4.1.1 20070105 (Red Hat 4.1.1-52)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> django.VERSION
(0, 97, 'pre')
> The previous developer seems to have set things up so django
> intercepts all urls. Is there any way to get django to not process
> files in a dir (i'm trying to install phpMyAdmin to look at the DB)?
In apache's config file I use the following inside my virtualhost block:
Alias /phpmyadmin/ /home/httpd/phpMyAdmin/
<Location /phpmyadmin/>
SetHandler none
</Location>
Change path to suit.
Regards
Darryl
signature.asc
Description: OpenPGP digital signature

