Re: ImportError: No module named mysite.settings

2007-05-15 Thread Mark Phillips
On May 14, 2007, at 7:41 AM, ilDave wrote: > Check the permissions of the directory where your app lives, it has to > be readable by the webserver. Good suggestion. I think it is root:wheel 755 but I will check. - Mark --~--~-~--~~~---~--~~ You received this

Re: ImportError: No module named mysite.settings

2007-05-14 Thread ilDave
Check the permissions of the directory where your app lives, it has to be readable by the webserver. On May 14, 4:14 pm, Mark Phillips <[EMAIL PROTECTED]> wrote: > On May 14, 2007, at 2:13 AM, Steven Armstrong wrote: > > > > > ... > > PythonPath "['/usr/local'] + sys.path" > >

Re: ImportError: No module named mysite.settings

2007-05-14 Thread Mark Phillips
On May 14, 2007, at 2:13 AM, Steven Armstrong wrote: > > ... > PythonPath "['/usr/local'] + sys.path" > ... > This worked. I also tried using "/usr/local/mysite" which did eliminate the problem finding mysite.settings but raised another one: no module named mysite.urls.

Re: ImportError: No module named mysite.settings

2007-05-14 Thread Malcolm Tredinnick
On Mon, 2007-05-14 at 02:07 -0700, Mark Phillips wrote: > Decided to try a clean slate. Set up Django on SME Server 7.1, which > is based on Centos 4. > Compiled and installed mod_python > Amended httpd.conf as follows: > > LoadModule python_module modules/mod_python.so > > and later on in the

Re: ImportError: No module named mysite.settings

2007-05-14 Thread Steven Armstrong
Mark Phillips wrote on 05/14/07 11:07: > Decided to try a clean slate. Set up Django on SME Server 7.1, which > is based on Centos 4. > Compiled and installed mod_python > Amended httpd.conf as follows: > > LoadModule python_module modules/mod_python.so > > and later on in the file... > >

ImportError: No module named mysite.settings

2007-05-14 Thread Mark Phillips
Decided to try a clean slate. Set up Django on SME Server 7.1, which is based on Centos 4. Compiled and installed mod_python Amended httpd.conf as follows: LoadModule python_module modules/mod_python.so and later on in the file... SetHandler python-program PythonPath "['/usr/local/m