Re: mod_wsgi can't find app to import..but I added path to wsgi file?!

2010-05-28 Thread Graham Dumpleton
In '/home/seb/MAIN/seoconquer', can you do: ls -las ls -las mvc and post the output. If you are concerned about revealing details send it to my email direct. Graham On May 29, 7:19 am, Chris Seberino wrote: > On May 27, 6:56 pm, Graham Dumpleton

Re: mod_wsgi can't find app to import..but I added path to wsgi file?!

2010-05-28 Thread Chris Seberino
On May 27, 6:56 pm, Graham Dumpleton wrote: > You also need to add '/home/seb/MAIN/seoconquer'. Read: > >  http://blog.dscpl.com.au/2010/03/improved-wsgi-script-for-use-with.html I tried both versions of the wsgi script on your blog. And I still get this same

Re: mod_wsgi can't find app to import..but I added path to wsgi file?!

2010-05-27 Thread Graham Dumpleton
On May 28, 8:35 am, Chris Seberino wrote: > On May 27, 10:51 am, Nuno Maltez wrote: > > > > ImportError: No module named mvc > > > What's the "mvc" module? Python can't seem to find it. Is it in your > > python path? > > My project is called

Re: mod_wsgi can't find app to import..but I added path to wsgi file?!

2010-05-27 Thread Chris Seberino
On May 27, 10:51 am, Nuno Maltez wrote: > > ImportError: No module named mvc > > What's the "mvc" module? Python can't seem to find it. Is it in your > python path? My project is called seoconquer. My app is called mvc. My absolute directory path to mvc is

Re: mod_wsgi can't find app to import..but I added path to wsgi file?!

2010-05-27 Thread Nuno Maltez
> ImportError: No module named mvc What's the "mvc" module? Python can't seem to find it. Is it in your python path? Nuno On Thu, May 27, 2010 at 4:20 PM, Chris Seberino wrote: > > I fixed the path issue that was causing the spinning but now I'm back > to getting import

Re: mod_wsgi can't find app to import..but I added path to wsgi file?!

2010-05-27 Thread backdoc
Check your apache logs. On Thu, May 27, 2010 at 10:06 AM, Chris Seberino wrote: > On May 25, 9:03 pm, Kenneth Gonsalves wrote: > > you need to add the path to the *parent* directory of your project, and > your > > project should have __init__.py in every

Re: mod_wsgi can't find app to import..but I added path to wsgi file?!

2010-05-27 Thread Chris Seberino
I fixed the path issue that was causing the spinning but now I'm back to getting import errors even with __init__.py in my apache directory. Here is the exact error from Apache's error.log. ... [Thu May 27 10:18:18 2010] [error] [client 99.159.221.130] _default =

Re: mod_wsgi can't find app to import..but I added path to wsgi file?!

2010-05-27 Thread Chris Seberino
On May 25, 9:03 pm, Kenneth Gonsalves wrote: > you need to add the path to the *parent* directory of your project, and your > project should have __init__.py in every folder where there are python files Thanks. I added __init__.py to an apache directory I created in my

Re: mod_wsgi can't find app to import..but I added path to wsgi file?!

2010-05-25 Thread Graham Dumpleton
On May 26, 12:03 pm, Kenneth Gonsalves wrote: > On Wednesday 26 May 2010 03:52:16 Chris Seberino wrote: > > > I tried adding paths to sys.path in the wsgi file. > > you need to add the path to the *parent* directory of your project, and your > project should have __init__.py

Re: mod_wsgi can't find app to import..but I added path to wsgi file?!

2010-05-25 Thread Kenneth Gonsalves
On Wednesday 26 May 2010 03:52:16 Chris Seberino wrote: > I tried adding paths to sys.path in the wsgi file. > you need to add the path to the *parent* directory of your project, and your project should have __init__.py in every folder where there are python files -- Regards Kenneth Gonsalves

mod_wsgi can't find app to import..but I added path to wsgi file?!

2010-05-25 Thread Chris Seberino
I can successfully run a toy WSGI app with my Apache/mod_wsgi set up. When I try to run my Django app with mod_wsgi it can't ever find the modules to load and Apache's error.log gives ImportError's. I tried adding paths to sys.path in the wsgi file. Not what else to try. cs -- You received