Re: [BangPypers] Configuring web2py to run on apache with Centos5.8

2012-07-20 Thread Kenneth Gonsalves
On Fri, 2012-07-20 at 20:43 +0800, Senthil wrote: > I tried it over IE, Firefox and Chrome. All had the same result. cd to /, do ls -al and paste the output here -- regards Kenneth Gonsalves ___ BangPypers mailing list BangPypers@python.org http://mail

Re: [BangPypers] Configuring web2py to run on apache with Centos5.8

2012-07-20 Thread Senthil
Gora, After making those changes, am still facing the same issue. thanks. Senthilkumaran Sundaramurthi. From: Gora Mohanty To: Bangalore Python Users Group - India Sent: Friday, 20 July 2012 6:33 PM Subject: Re: [BangPypers] Configuring web2py to run on apa

Re: [BangPypers] Configuring web2py to run on apache with Centos5.8

2012-07-20 Thread Senthil
Hey Gora, Thanks for this piece of advice. Will try these out and will let you know. Senthilkumaran Sundaramurthi. From: Gora Mohanty To: Bangalore Python Users Group - India Sent: Friday, 20 July 2012 6:33 PM Subject: Re: [BangPypers] Configuring web2py to

Re: [BangPypers] Configuring web2py to run on apache with Centos5.8

2012-07-20 Thread Gora Mohanty
Hi, While I am far from being an expert in setting up Apache, there seem to be several things wrong with your Apache config. 1. Your ServerName is wrong unless you have aliased it locally, or are hosting on example.com :-) 2. Your WSGIScriptAlias is at /wpy , but in some cases you are acce

Re: [BangPypers] Configuring web2py to run on apache with Centos5.8

2012-07-20 Thread Senthil
Kenneth, I tried it over IE, Firefox and Chrome. All had the same result. This is the last line of error i got when i typed in http://server/ [Fri Jul 20 15:37:51 2012] [error] [client 10.16.14.254] (13)Permission denied: access to / denied [Fri Jul 20 15:37:51 2012] [error] [client 10.16.14.254

Re: [BangPypers] Configuring web2py to run on apache with Centos5.8

2012-07-20 Thread Kenneth Gonsalves
On Fri, 2012-07-20 at 20:09 +0800, Senthil wrote: > I have changed the permissions to 755 and have disabled the selinux > already :( sad Still no luck... are you by any chance using firefox - I find that very often firefox cache is the culprit - even clearing the cache does not help. Sometimes it

Re: [BangPypers] Configuring web2py to run on apache with Centos5.8

2012-07-20 Thread Senthil
Hi Kenneth, I have changed the permissions to 755 and have disabled the selinux already Still no luck... Thanks. Senthilkumaran Sundaramurthi. From: Kenneth Gonsalves To: Senthil Cc: Bangalore Python Users Group - India Sent: Friday, 20 July 2012 4:14

Re: [BangPypers] missing dependency while installing virtualenvwrapper on ubuntu-12.04

2012-07-20 Thread Kenneth Gonsalves
On Fri, 2012-07-20 at 15:25 +0530, kracethekingmaker wrote: > "Talk is cheap, show me the code" -- Linus Torvalds this quote taken out of context has caused enough trouble in the open source community, please read the whole thread to understand the context. Start here: https://lkml.org/lkml/2000/

Re: [BangPypers] Configuring web2py to run on apache with Centos5.8

2012-07-20 Thread Kenneth Gonsalves
On Fri, 2012-07-20 at 17:18 +0800, Senthil wrote: > But i have already set that. The only difference is i have given all > permissions to all, meaning > > chmod -R 777 /path_to_static/ there *are* easier ways to commit suicide! Disable selinux and see if it helps. -- regards Kenneth Gonsalves

Re: [BangPypers] missing dependency while installing virtualenvwrapper on ubuntu-12.04

2012-07-20 Thread kracethekingmaker
On 07/20/2012 03:21 PM, vid wrote: On Fri, Jul 20, 2012 at 3:04 PM, kracethekingmaker wrote: I had similar issue when I upgraded, Update virtualenvwrapper, and try to create new venv it works but older ones fail. I think it breaks because lucid and precise are packaged for different python ve

Re: [BangPypers] missing dependency while installing virtualenvwrapper on ubuntu-12.04

2012-07-20 Thread Noufal Ibrahim
vid writes: > On Fri, Jul 20, 2012 at 2:48 PM, Noufal Ibrahim > wrote: >> >> Looks like the package metadata is getting messed up because of a non Ubuntu >> pip >> (/usr/local/bin) and an Ubuntu Python. > > Yup, back then (10.04 lts, which is what I stick to for dev stuff) I > had installed vi

Re: [BangPypers] missing dependency while installing virtualenvwrapper on ubuntu-12.04

2012-07-20 Thread vid
On Fri, Jul 20, 2012 at 3:04 PM, kracethekingmaker wrote: > I had similar issue when I upgraded, Update virtualenvwrapper, and try to > create new venv it works but older ones fail. I think it breaks because lucid and precise are packaged for different python versions. I am not sure how to tweak

Re: [BangPypers] missing dependency while installing virtualenvwrapper on ubuntu-12.04

2012-07-20 Thread vid
On Fri, Jul 20, 2012 at 2:48 PM, Noufal Ibrahim wrote: > > Looks like the package metadata is getting messed up because of a non Ubuntu > pip > (/usr/local/bin) and an Ubuntu Python. Yup, back then (10.04 lts, which is what I stick to for dev stuff) I had installed virtualenvwrapper using pip, w

Re: [BangPypers] missing dependency while installing virtualenvwrapper on ubuntu-12.04

2012-07-20 Thread kracethekingmaker
I had similar issue when I upgraded, Update virtualenvwrapper, and try to create new venv it works but older ones fail. This bug is reported in launchpad. I tweeted about this in beginning of april but I couldn't get hold of it now. vid writes: An upgrade to ubuntu 12.04 gives this error:

Re: [BangPypers] missing dependency while installing virtualenvwrapper on ubuntu-12.04

2012-07-20 Thread Noufal Ibrahim
vid writes: > An upgrade to ubuntu 12.04 gives this error: > > $ sudo pip install virtualenvwrapper > Traceback (most recent call last): > File "/usr/local/bin/pip", line 5, in > from pkg_resources import load_entry_point > File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line

Re: [BangPypers] Configuring web2py to run on apache with Centos5.8

2012-07-20 Thread Senthil
But i have already set that. The only difference is i have given all permissions to all, meaning chmod -R 777 /path_to_static/ Thanks. Senthilkumaran Sundaramurthi. From: Kenneth Gonsalves To: Senthil ; Bangalore Python Users Group - India Sent: Friday, 2

[BangPypers] missing dependency while installing virtualenvwrapper on ubuntu-12.04

2012-07-20 Thread vid
An upgrade to ubuntu 12.04 gives this error: $ sudo pip install virtualenvwrapper Traceback (most recent call last): File "/usr/local/bin/pip", line 5, in from pkg_resources import load_entry_point File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2711, in parse_requirem